Searched defs:nor_interface (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/sys/dev/nor/ |
H A D | nor.h | 102 struct nor_interface { struct 104 int (*scan_media)(device_t self, struct nor_chip *chip); 105 void (*init) (device_t); 106 void (*select) (device_t, bool); /* optional */ 107 void (*read_1) (device_t, flash_off_t, uint8_t *); 108 void (*read_2) (device_t, flash_off_t, uint16_t *); 109 void (*read_4) (device_t, flash_off_t, uint32_t *); 110 void (*read_buf_1) (device_t, flash_off_t, uint8_t *, size_t); 111 void (*read_buf_2) (device_t, flash_off_t, uint16_t *, size_t); 112 void (*read_buf_4) (device_t, flash_off_t, uint32_t *, size_t); [all …]
|