Lines Matching full:config2
143 * On i.MX21 the CONFIG2:INT bit cannot be read if interrupts are masked
439 * complete by checking the INT bit of config2 register.
685 uint32_t config2; in mxc_nand_enable_hwecc_v3() local
690 config2 = readl(NFC_V3_CONFIG2); in mxc_nand_enable_hwecc_v3()
693 config2 |= NFC_V3_CONFIG2_ECC_EN; in mxc_nand_enable_hwecc_v3()
695 config2 &= ~NFC_V3_CONFIG2_ECC_EN; in mxc_nand_enable_hwecc_v3()
697 writel(config2, NFC_V3_CONFIG2); in mxc_nand_enable_hwecc_v3()
1267 uint32_t config2, config3; in preset_v3() local
1283 config2 = NFC_V3_CONFIG2_ONE_CYCLE | in preset_v3()
1293 config2 |= NFC_V3_CONFIG2_PS_2048; in preset_v3()
1294 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases); in preset_v3()
1296 config2 |= NFC_V3_CONFIG2_PS_4096; in preset_v3()
1297 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases); in preset_v3()
1299 config2 |= NFC_V3_CONFIG2_PS_512; in preset_v3()
1300 config2 |= NFC_V3_CONFIG2_NUM_ADDR_PHASE1(addr_phases - 1); in preset_v3()
1305 config2 |= NFC_V3_CONFIG2_ECC_EN; in preset_v3()
1307 config2 |= NFC_V3_CONFIG2_PPB( in preset_v3()
1312 config2 |= NFC_V3_CONFIG2_ECC_MODE_8; in preset_v3()
1315 writel(config2, NFC_V3_CONFIG2); in preset_v3()