Lines Matching +full:manufacturer +full:- +full:id
4 * Copyright (C) 2005-2007 Samsung Electronics
33 * struct onenand_bufferram - OneNAND BufferRAM Data
41 * struct onenand_chip - OneNAND Private Flash Chip Data
47 * @param device_id [INTERN] device ID
48 * @param verstion_id [INTERN] version ID
131 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index)
132 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1)
133 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1)
134 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1)
135 #define ONENAND_SET_BUFFERRAM0(this) (this->bufferram_index = 0)
136 #define ONENAND_SET_BUFFERRAM1(this) (this->bufferram_index = 1)
138 #define FLEXONENAND(this) (this->device_id & DEVICE_IS_FLEXONENAND)
139 #define ONENAND_IS_MLC(this) (this->technology & ONENAND_TECHNOLOGY_IS_MLC)
141 (this->device_id & ONENAND_DEVICE_IS_DDP)
144 (this->options & ONENAND_HAS_4KB_PAGE)
160 * OneNAND Flash Manufacturer ID Codes
166 * struct nand_manufacturers - NAND Flash Manufacturer ID Structure
167 * @param name: Manufacturer name
168 * @param id: manufacturer ID code of device.
171 int id; member