Lines Matching defs:nandsim
301 struct nandsim { struct
302 struct mtd_partition partitions[CONFIG_NANDSIM_MAX_PARTS];
303 unsigned int nbparts;
305 uint busw; /* flash chip bus width (8 or 16) */
306 u_char ids[4]; /* chip's ID bytes */
307 uint32_t options; /* chip's characteristic bits */
308 uint32_t state; /* current chip state */
309 uint32_t nxstate; /* next expected state */
311 uint32_t *op; /* current operation, NULL operations isn't known yet */
312 uint32_t pstates[NS_MAX_PREVSTATES]; /* previous states */
313 uint16_t npstates; /* number of previous states saved */
314 uint16_t stateidx; /* current state index */
317 union ns_mem *pages;
320 struct kmem_cache *nand_pages_slab;
323 union ns_mem buf;
326 struct {
342 } geom;
345 struct {
375 static struct nandsim_operations { argument