Lines Matching refs:tset
111 u8 tset;
266 u32 tclr, tar, thiz, thold, twait, tset;
273 tset = (tims->tset & FSMC_TSET_MASK) << FSMC_TSET_SHIFT;
279 writel_relaxed(thiz | thold | twait | tset, host->regs_va + COMM);
280 writel_relaxed(thiz | thold | twait | tset, host->regs_va + ATTRIB);
289 u32 thiz, thold, twait, tset, twait_min;
321 tset = max(sdrt->tCS_min - sdrt->tWP_min,
323 tims->tset = DIV_ROUND_UP(tset / 1000, hclkn) - 1;
324 if (tims->tset == 0)
325 tims->tset = 1;
326 else if (tims->tset > FSMC_TSET_MASK)
327 tims->tset = FSMC_TSET_MASK;
332 * twait >= tCEA - (tset * TCLK) + TOUTDEL + TINDEL
334 twait_min = sdrt->tCEA_max - ((tims->tset + 1) * hclkn * 1000)