mtd: gpmi: add EDO feature for imx6q
[deliverable/linux.git] / drivers / mtd / nand / gpmi-nand / gpmi-nand.h
1 /*
2 * Freescale GPMI NAND Flash Driver
3 *
4 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
5 * Copyright (C) 2008 Embedded Alley Solutions, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17 #ifndef __DRIVERS_MTD_NAND_GPMI_NAND_H
18 #define __DRIVERS_MTD_NAND_GPMI_NAND_H
19
20 #include <linux/mtd/nand.h>
21 #include <linux/platform_device.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/fsl/mxs-dma.h>
24
25 #define GPMI_CLK_MAX 5 /* MX6Q needs five clocks */
26 struct resources {
27 void __iomem *gpmi_regs;
28 void __iomem *bch_regs;
29 unsigned int bch_low_interrupt;
30 unsigned int bch_high_interrupt;
31 unsigned int dma_low_channel;
32 unsigned int dma_high_channel;
33 struct clk *clock[GPMI_CLK_MAX];
34 };
35
36 /**
37 * struct bch_geometry - BCH geometry description.
38 * @gf_len: The length of Galois Field. (e.g., 13 or 14)
39 * @ecc_strength: A number that describes the strength of the ECC
40 * algorithm.
41 * @page_size: The size, in bytes, of a physical page, including
42 * both data and OOB.
43 * @metadata_size: The size, in bytes, of the metadata.
44 * @ecc_chunk_size: The size, in bytes, of a single ECC chunk. Note
45 * the first chunk in the page includes both data and
46 * metadata, so it's a bit larger than this value.
47 * @ecc_chunk_count: The number of ECC chunks in the page,
48 * @payload_size: The size, in bytes, of the payload buffer.
49 * @auxiliary_size: The size, in bytes, of the auxiliary buffer.
50 * @auxiliary_status_offset: The offset into the auxiliary buffer at which
51 * the ECC status appears.
52 * @block_mark_byte_offset: The byte offset in the ECC-based page view at
53 * which the underlying physical block mark appears.
54 * @block_mark_bit_offset: The bit offset into the ECC-based page view at
55 * which the underlying physical block mark appears.
56 */
57 struct bch_geometry {
58 unsigned int gf_len;
59 unsigned int ecc_strength;
60 unsigned int page_size;
61 unsigned int metadata_size;
62 unsigned int ecc_chunk_size;
63 unsigned int ecc_chunk_count;
64 unsigned int payload_size;
65 unsigned int auxiliary_size;
66 unsigned int auxiliary_status_offset;
67 unsigned int block_mark_byte_offset;
68 unsigned int block_mark_bit_offset;
69 };
70
71 /**
72 * struct boot_rom_geometry - Boot ROM geometry description.
73 * @stride_size_in_pages: The size of a boot block stride, in pages.
74 * @search_area_stride_exponent: The logarithm to base 2 of the size of a
75 * search area in boot block strides.
76 */
77 struct boot_rom_geometry {
78 unsigned int stride_size_in_pages;
79 unsigned int search_area_stride_exponent;
80 };
81
82 /* DMA operations types */
83 enum dma_ops_type {
84 DMA_FOR_COMMAND = 1,
85 DMA_FOR_READ_DATA,
86 DMA_FOR_WRITE_DATA,
87 DMA_FOR_READ_ECC_PAGE,
88 DMA_FOR_WRITE_ECC_PAGE
89 };
90
91 /**
92 * struct nand_timing - Fundamental timing attributes for NAND.
93 * @data_setup_in_ns: The data setup time, in nanoseconds. Usually the
94 * maximum of tDS and tWP. A negative value
95 * indicates this characteristic isn't known.
96 * @data_hold_in_ns: The data hold time, in nanoseconds. Usually the
97 * maximum of tDH, tWH and tREH. A negative value
98 * indicates this characteristic isn't known.
99 * @address_setup_in_ns: The address setup time, in nanoseconds. Usually
100 * the maximum of tCLS, tCS and tALS. A negative
101 * value indicates this characteristic isn't known.
102 * @gpmi_sample_delay_in_ns: A GPMI-specific timing parameter. A negative value
103 * indicates this characteristic isn't known.
104 * @tREA_in_ns: tREA, in nanoseconds, from the data sheet. A
105 * negative value indicates this characteristic isn't
106 * known.
107 * @tRLOH_in_ns: tRLOH, in nanoseconds, from the data sheet. A
108 * negative value indicates this characteristic isn't
109 * known.
110 * @tRHOH_in_ns: tRHOH, in nanoseconds, from the data sheet. A
111 * negative value indicates this characteristic isn't
112 * known.
113 */
114 struct nand_timing {
115 int8_t data_setup_in_ns;
116 int8_t data_hold_in_ns;
117 int8_t address_setup_in_ns;
118 int8_t gpmi_sample_delay_in_ns;
119 int8_t tREA_in_ns;
120 int8_t tRLOH_in_ns;
121 int8_t tRHOH_in_ns;
122 };
123
124 struct gpmi_nand_data {
125 /* flags */
126 #define GPMI_ASYNC_EDO_ENABLED (1 << 0)
127 int flags;
128
129 /* System Interface */
130 struct device *dev;
131 struct platform_device *pdev;
132 struct gpmi_nand_platform_data *pdata;
133
134 /* Resources */
135 struct resources resources;
136
137 /* Flash Hardware */
138 struct nand_timing timing;
139 int timing_mode;
140
141 /* BCH */
142 struct bch_geometry bch_geometry;
143 struct completion bch_done;
144
145 /* NAND Boot issue */
146 bool swap_block_mark;
147 struct boot_rom_geometry rom_geometry;
148
149 /* MTD / NAND */
150 struct nand_chip nand;
151 struct mtd_info mtd;
152
153 /* General-use Variables */
154 int current_chip;
155 unsigned int command_length;
156
157 /* passed from upper layer */
158 uint8_t *upper_buf;
159 int upper_len;
160
161 /* for DMA operations */
162 bool direct_dma_map_ok;
163
164 struct scatterlist cmd_sgl;
165 char *cmd_buffer;
166
167 struct scatterlist data_sgl;
168 char *data_buffer_dma;
169
170 void *page_buffer_virt;
171 dma_addr_t page_buffer_phys;
172 unsigned int page_buffer_size;
173
174 void *payload_virt;
175 dma_addr_t payload_phys;
176
177 void *auxiliary_virt;
178 dma_addr_t auxiliary_phys;
179
180 /* DMA channels */
181 #define DMA_CHANS 8
182 struct dma_chan *dma_chans[DMA_CHANS];
183 struct mxs_dma_data dma_data;
184 enum dma_ops_type last_dma_type;
185 enum dma_ops_type dma_type;
186 struct completion dma_done;
187
188 /* private */
189 void *private;
190 };
191
192 /**
193 * struct gpmi_nfc_hardware_timing - GPMI hardware timing parameters.
194 * @data_setup_in_cycles: The data setup time, in cycles.
195 * @data_hold_in_cycles: The data hold time, in cycles.
196 * @address_setup_in_cycles: The address setup time, in cycles.
197 * @device_busy_timeout: The timeout waiting for NAND Ready/Busy,
198 * this value is the number of cycles multiplied
199 * by 4096.
200 * @use_half_periods: Indicates the clock is running slowly, so the
201 * NFC DLL should use half-periods.
202 * @sample_delay_factor: The sample delay factor.
203 * @wrn_dly_sel: The delay on the GPMI write strobe.
204 */
205 struct gpmi_nfc_hardware_timing {
206 /* for HW_GPMI_TIMING0 */
207 uint8_t data_setup_in_cycles;
208 uint8_t data_hold_in_cycles;
209 uint8_t address_setup_in_cycles;
210
211 /* for HW_GPMI_TIMING1 */
212 uint16_t device_busy_timeout;
213 #define GPMI_DEFAULT_BUSY_TIMEOUT 0x500 /* default busy timeout value.*/
214
215 /* for HW_GPMI_CTRL1 */
216 bool use_half_periods;
217 uint8_t sample_delay_factor;
218 uint8_t wrn_dly_sel;
219 };
220
221 /**
222 * struct timing_threshod - Timing threshold
223 * @max_data_setup_cycles: The maximum number of data setup cycles that
224 * can be expressed in the hardware.
225 * @internal_data_setup_in_ns: The time, in ns, that the NFC hardware requires
226 * for data read internal setup. In the Reference
227 * Manual, see the chapter "High-Speed NAND
228 * Timing" for more details.
229 * @max_sample_delay_factor: The maximum sample delay factor that can be
230 * expressed in the hardware.
231 * @max_dll_clock_period_in_ns: The maximum period of the GPMI clock that the
232 * sample delay DLL hardware can possibly work
233 * with (the DLL is unusable with longer periods).
234 * If the full-cycle period is greater than HALF
235 * this value, the DLL must be configured to use
236 * half-periods.
237 * @max_dll_delay_in_ns: The maximum amount of delay, in ns, that the
238 * DLL can implement.
239 * @clock_frequency_in_hz: The clock frequency, in Hz, during the current
240 * I/O transaction. If no I/O transaction is in
241 * progress, this is the clock frequency during
242 * the most recent I/O transaction.
243 */
244 struct timing_threshod {
245 const unsigned int max_chip_count;
246 const unsigned int max_data_setup_cycles;
247 const unsigned int internal_data_setup_in_ns;
248 const unsigned int max_sample_delay_factor;
249 const unsigned int max_dll_clock_period_in_ns;
250 const unsigned int max_dll_delay_in_ns;
251 unsigned long clock_frequency_in_hz;
252
253 };
254
255 /* Common Services */
256 extern int common_nfc_set_geometry(struct gpmi_nand_data *);
257 extern struct dma_chan *get_dma_chan(struct gpmi_nand_data *);
258 extern void prepare_data_dma(struct gpmi_nand_data *,
259 enum dma_data_direction dr);
260 extern int start_dma_without_bch_irq(struct gpmi_nand_data *,
261 struct dma_async_tx_descriptor *);
262 extern int start_dma_with_bch_irq(struct gpmi_nand_data *,
263 struct dma_async_tx_descriptor *);
264
265 /* GPMI-NAND helper function library */
266 extern int gpmi_init(struct gpmi_nand_data *);
267 extern int gpmi_extra_init(struct gpmi_nand_data *);
268 extern void gpmi_clear_bch(struct gpmi_nand_data *);
269 extern void gpmi_dump_info(struct gpmi_nand_data *);
270 extern int bch_set_geometry(struct gpmi_nand_data *);
271 extern int gpmi_is_ready(struct gpmi_nand_data *, unsigned chip);
272 extern int gpmi_send_command(struct gpmi_nand_data *);
273 extern void gpmi_begin(struct gpmi_nand_data *);
274 extern void gpmi_end(struct gpmi_nand_data *);
275 extern int gpmi_read_data(struct gpmi_nand_data *);
276 extern int gpmi_send_data(struct gpmi_nand_data *);
277 extern int gpmi_send_page(struct gpmi_nand_data *,
278 dma_addr_t payload, dma_addr_t auxiliary);
279 extern int gpmi_read_page(struct gpmi_nand_data *,
280 dma_addr_t payload, dma_addr_t auxiliary);
281
282 /* BCH : Status Block Completion Codes */
283 #define STATUS_GOOD 0x00
284 #define STATUS_ERASED 0xff
285 #define STATUS_UNCORRECTABLE 0xfe
286
287 /* Use the platform_id to distinguish different Archs. */
288 #define IS_MX23 0x0
289 #define IS_MX28 0x1
290 #define IS_MX6Q 0x2
291 #define GPMI_IS_MX23(x) ((x)->pdev->id_entry->driver_data == IS_MX23)
292 #define GPMI_IS_MX28(x) ((x)->pdev->id_entry->driver_data == IS_MX28)
293 #define GPMI_IS_MX6Q(x) ((x)->pdev->id_entry->driver_data == IS_MX6Q)
294 #endif
This page took 0.036795 seconds and 6 git commands to generate.