Lines Matching defs:atmel_nand_host
117 struct atmel_nand_host { struct
118 struct nand_chip nand_chip;
119 struct mtd_info mtd;
120 void __iomem *io_base;
121 dma_addr_t io_phys;
122 struct atmel_nand_data board;
123 struct device *dev;
124 void __iomem *ecc;
126 struct completion comp;
127 struct dma_chan *dma_chan;
129 struct atmel_nfc *nfc;
131 struct atmel_nand_caps *caps;
132 bool has_pmecc;
133 u8 pmecc_corr_cap;
134 u16 pmecc_sector_size;
135 bool has_no_lookup_table;
136 u32 pmecc_lookup_table_offset;
137 u32 pmecc_lookup_table_offset_512;
138 u32 pmecc_lookup_table_offset_1024;
140 int pmecc_degree; /* Degree of remainders */
141 int pmecc_cw_len; /* Length of codeword */
165 static void atmel_nand_enable(struct atmel_nand_host *host) in atmel_nand_enable() argument