Lines Matching refs:status
37 unsigned long status; in nor_status() local
40 status = mmio_read_32(base_addr); in nor_status()
41 status |= status >> 16; /* merge status from both flash banks */ in nor_status()
43 return status & 0xFFFF; in nor_status()
54 unsigned long status; in nor_poll_dws() local
58 status = mmio_read_32(base_addr); in nor_poll_dws()
59 if ((status & NOR_CMD_END) == NOR_CMD_END) in nor_poll_dws()
74 unsigned long status; in nor_full_status_check() local
77 status = nor_status(base_addr); in nor_full_status_check()
79 if (status & (NOR_PS | NOR_BLS | NOR_ESS | NOR_PSS)) in nor_full_status_check()
81 if (status & (NOR_VPPS | NOR_ES)) in nor_full_status_check()
101 uint32_t status; in nor_word_program() local
114 status = mmio_read_32(base_addr); in nor_word_program()
116 if (status & (NOR_PS | NOR_BLS)) { in nor_word_program()