Lines Matching defs:status
17 * important when we send commands or read status of the chips.
37 unsigned long status;
40 status = mmio_read_32(base_addr);
41 status |= status >> 16; /* merge status from both flash banks */
43 return status & 0xFFFF;
54 unsigned long status;
58 status = mmio_read_32(base_addr);
59 if ((status & NOR_CMD_END) == NOR_CMD_END)
74 unsigned long status;
76 /* Full status check */
77 status = nor_status(base_addr);
79 if (status & (NOR_PS | NOR_BLS | NOR_ESS | NOR_PSS))
81 if (status & (NOR_VPPS | NOR_ES))
101 uint32_t status;
112 /* Full status check */
114 status = mmio_read_32(base_addr);
116 if (status & (NOR_PS | NOR_BLS)) {