| 127 | } |
| 128 | |
| 129 | static inline uint32_t read_cb(void) |
| 130 | { |
| 131 | uint32_t dword = read32(mei_mmap, MEI_ME_CB_RW); |
| 132 | |
| 133 | if (debug) { |
| 134 | mei_dump(NULL, dword, MEI_ME_CB_RW, "READ"); |
| 135 | } |
| 136 | |
| 137 | return dword; |
| 138 | } |
| 139 | |
| 140 | /* Wait for ME ready bit to be asserted */ |
| 141 | static int mei_wait_for_me_ready(void) |
no test coverage detected