thold_att         234 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	u8 thold_att;
thold_att         308 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	patt |= FMC2_PATT_ATTHOLD(timings->thold_att);
thold_att        1465 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	unsigned long tset_mem, tset_att, thold_mem, thold_att;
thold_att        1559 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	thold_att = max_t(unsigned long, hclkp, sdrt->tALH_min);
thold_att        1560 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	thold_att = max_t(unsigned long, thold_att, sdrt->tCH_min);
thold_att        1561 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	thold_att = max_t(unsigned long, thold_att, sdrt->tCLH_min);
thold_att        1562 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	thold_att = max_t(unsigned long, thold_att, sdrt->tCOH_min);
thold_att        1563 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	thold_att = max_t(unsigned long, thold_att, sdrt->tDH_min);
thold_att        1565 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tWB_max + FMC2_TIO + FMC2_TSYNC - tset_mem))
thold_att        1566 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tWB_max + FMC2_TIO + FMC2_TSYNC - tset_mem;
thold_att        1568 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tADL_min - tset_mem))
thold_att        1569 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tADL_min - tset_mem;
thold_att        1571 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tWH_min - tset_mem))
thold_att        1572 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tWH_min - tset_mem;
thold_att        1574 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tWHR_min - tset_mem))
thold_att        1575 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tWHR_min - tset_mem;
thold_att        1577 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tRC_min - (tset_att + twait)))
thold_att        1578 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tRC_min - (tset_att + twait);
thold_att        1580 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	    (thold_att < sdrt->tWC_min - (tset_att + twait)))
thold_att        1581 drivers/mtd/nand/raw/stm32_fmc2_nand.c 		thold_att = sdrt->tWC_min - (tset_att + twait);
thold_att        1582 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	timing = DIV_ROUND_UP(thold_att, hclkp);
thold_att        1583 drivers/mtd/nand/raw/stm32_fmc2_nand.c 	tims->thold_att = clamp_val(timing, 1, FMC2_PMEM_PATT_TIMING_MASK);