diff options
Diffstat (limited to 'arch/arm/mach-omap2/gpmc-onenand.c')
-rw-r--r-- | arch/arm/mach-omap2/gpmc-onenand.c | 214 |
1 files changed, 118 insertions, 96 deletions
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index 916716e1da3b..d102183ed9a5 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c | |||
@@ -16,15 +16,25 @@ | |||
16 | #include <linux/mtd/onenand_regs.h> | 16 | #include <linux/mtd/onenand_regs.h> |
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/platform_data/mtd-onenand-omap2.h> | 18 | #include <linux/platform_data/mtd-onenand-omap2.h> |
19 | #include <linux/err.h> | ||
19 | 20 | ||
20 | #include <asm/mach/flash.h> | 21 | #include <asm/mach/flash.h> |
21 | 22 | ||
22 | #include <plat/gpmc.h> | 23 | #include "gpmc.h" |
23 | |||
24 | #include "soc.h" | 24 | #include "soc.h" |
25 | #include "gpmc-onenand.h" | ||
25 | 26 | ||
26 | #define ONENAND_IO_SIZE SZ_128K | 27 | #define ONENAND_IO_SIZE SZ_128K |
27 | 28 | ||
29 | #define ONENAND_FLAG_SYNCREAD (1 << 0) | ||
30 | #define ONENAND_FLAG_SYNCWRITE (1 << 1) | ||
31 | #define ONENAND_FLAG_HF (1 << 2) | ||
32 | #define ONENAND_FLAG_VHF (1 << 3) | ||
33 | |||
34 | static unsigned onenand_flags; | ||
35 | static unsigned latency; | ||
36 | static int fclk_offset; | ||
37 | |||
28 | static struct omap_onenand_platform_data *gpmc_onenand_data; | 38 | static struct omap_onenand_platform_data *gpmc_onenand_data; |
29 | 39 | ||
30 | static struct resource gpmc_onenand_resource = { | 40 | static struct resource gpmc_onenand_resource = { |
@@ -38,11 +48,9 @@ static struct platform_device gpmc_onenand_device = { | |||
38 | .resource = &gpmc_onenand_resource, | 48 | .resource = &gpmc_onenand_resource, |
39 | }; | 49 | }; |
40 | 50 | ||
41 | static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | 51 | static struct gpmc_timings omap2_onenand_calc_async_timings(void) |
42 | { | 52 | { |
43 | struct gpmc_timings t; | 53 | struct gpmc_timings t; |
44 | u32 reg; | ||
45 | int err; | ||
46 | 54 | ||
47 | const int t_cer = 15; | 55 | const int t_cer = 15; |
48 | const int t_avdp = 12; | 56 | const int t_avdp = 12; |
@@ -55,11 +63,6 @@ static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | |||
55 | const int t_wpl = 40; | 63 | const int t_wpl = 40; |
56 | const int t_wph = 30; | 64 | const int t_wph = 30; |
57 | 65 | ||
58 | /* Ensure sync read and sync write are disabled */ | ||
59 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); | ||
60 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; | ||
61 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); | ||
62 | |||
63 | memset(&t, 0, sizeof(t)); | 66 | memset(&t, 0, sizeof(t)); |
64 | t.sync_clk = 0; | 67 | t.sync_clk = 0; |
65 | t.cs_on = 0; | 68 | t.cs_on = 0; |
@@ -86,25 +89,30 @@ static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | |||
86 | t.cs_wr_off = t.we_off + gpmc_round_ns_to_ticks(t_wph); | 89 | t.cs_wr_off = t.we_off + gpmc_round_ns_to_ticks(t_wph); |
87 | t.wr_cycle = t.cs_wr_off + gpmc_round_ns_to_ticks(t_cez); | 90 | t.wr_cycle = t.cs_wr_off + gpmc_round_ns_to_ticks(t_cez); |
88 | 91 | ||
92 | return t; | ||
93 | } | ||
94 | |||
95 | static int gpmc_set_async_mode(int cs, struct gpmc_timings *t) | ||
96 | { | ||
89 | /* Configure GPMC for asynchronous read */ | 97 | /* Configure GPMC for asynchronous read */ |
90 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, | 98 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, |
91 | GPMC_CONFIG1_DEVICESIZE_16 | | 99 | GPMC_CONFIG1_DEVICESIZE_16 | |
92 | GPMC_CONFIG1_MUXADDDATA); | 100 | GPMC_CONFIG1_MUXADDDATA); |
93 | 101 | ||
94 | err = gpmc_cs_set_timings(cs, &t); | 102 | return gpmc_cs_set_timings(cs, t); |
95 | if (err) | 103 | } |
96 | return err; | 104 | |
105 | static void omap2_onenand_set_async_mode(void __iomem *onenand_base) | ||
106 | { | ||
107 | u32 reg; | ||
97 | 108 | ||
98 | /* Ensure sync read and sync write are disabled */ | 109 | /* Ensure sync read and sync write are disabled */ |
99 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); | 110 | reg = readw(onenand_base + ONENAND_REG_SYS_CFG1); |
100 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; | 111 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ & ~ONENAND_SYS_CFG1_SYNC_WRITE; |
101 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); | 112 | writew(reg, onenand_base + ONENAND_REG_SYS_CFG1); |
102 | |||
103 | return 0; | ||
104 | } | 113 | } |
105 | 114 | ||
106 | static void set_onenand_cfg(void __iomem *onenand_base, int latency, | 115 | static void set_onenand_cfg(void __iomem *onenand_base) |
107 | int sync_read, int sync_write, int hf, int vhf) | ||
108 | { | 116 | { |
109 | u32 reg; | 117 | u32 reg; |
110 | 118 | ||
@@ -112,19 +120,19 @@ static void set_onenand_cfg(void __iomem *onenand_base, int latency, | |||
112 | reg &= ~((0x7 << ONENAND_SYS_CFG1_BRL_SHIFT) | (0x7 << 9)); | 120 | reg &= ~((0x7 << ONENAND_SYS_CFG1_BRL_SHIFT) | (0x7 << 9)); |
113 | reg |= (latency << ONENAND_SYS_CFG1_BRL_SHIFT) | | 121 | reg |= (latency << ONENAND_SYS_CFG1_BRL_SHIFT) | |
114 | ONENAND_SYS_CFG1_BL_16; | 122 | ONENAND_SYS_CFG1_BL_16; |
115 | if (sync_read) | 123 | if (onenand_flags & ONENAND_FLAG_SYNCREAD) |
116 | reg |= ONENAND_SYS_CFG1_SYNC_READ; | 124 | reg |= ONENAND_SYS_CFG1_SYNC_READ; |
117 | else | 125 | else |
118 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ; | 126 | reg &= ~ONENAND_SYS_CFG1_SYNC_READ; |
119 | if (sync_write) | 127 | if (onenand_flags & ONENAND_FLAG_SYNCWRITE) |
120 | reg |= ONENAND_SYS_CFG1_SYNC_WRITE; | 128 | reg |= ONENAND_SYS_CFG1_SYNC_WRITE; |
121 | else | 129 | else |
122 | reg &= ~ONENAND_SYS_CFG1_SYNC_WRITE; | 130 | reg &= ~ONENAND_SYS_CFG1_SYNC_WRITE; |
123 | if (hf) | 131 | if (onenand_flags & ONENAND_FLAG_HF) |
124 | reg |= ONENAND_SYS_CFG1_HF; | 132 | reg |= ONENAND_SYS_CFG1_HF; |
125 | else | 133 | else |
126 | reg &= ~ONENAND_SYS_CFG1_HF; | 134 | reg &= ~ONENAND_SYS_CFG1_HF; |
127 | if (vhf) | 135 | if (onenand_flags & ONENAND_FLAG_VHF) |
128 | reg |= ONENAND_SYS_CFG1_VHF; | 136 | reg |= ONENAND_SYS_CFG1_VHF; |
129 | else | 137 | else |
130 | reg &= ~ONENAND_SYS_CFG1_VHF; | 138 | reg &= ~ONENAND_SYS_CFG1_VHF; |
@@ -132,21 +140,10 @@ static void set_onenand_cfg(void __iomem *onenand_base, int latency, | |||
132 | } | 140 | } |
133 | 141 | ||
134 | static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, | 142 | static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, |
135 | void __iomem *onenand_base, bool *clk_dep) | 143 | void __iomem *onenand_base) |
136 | { | 144 | { |
137 | u16 ver = readw(onenand_base + ONENAND_REG_VERSION_ID); | 145 | u16 ver = readw(onenand_base + ONENAND_REG_VERSION_ID); |
138 | int freq = 0; | 146 | int freq; |
139 | |||
140 | if (cfg->get_freq) { | ||
141 | struct onenand_freq_info fi; | ||
142 | |||
143 | fi.maf_id = readw(onenand_base + ONENAND_REG_MANUFACTURER_ID); | ||
144 | fi.dev_id = readw(onenand_base + ONENAND_REG_DEVICE_ID); | ||
145 | fi.ver_id = ver; | ||
146 | freq = cfg->get_freq(&fi, clk_dep); | ||
147 | if (freq) | ||
148 | return freq; | ||
149 | } | ||
150 | 147 | ||
151 | switch ((ver >> 4) & 0xf) { | 148 | switch ((ver >> 4) & 0xf) { |
152 | case 0: | 149 | case 0: |
@@ -172,9 +169,9 @@ static int omap2_onenand_get_freq(struct omap_onenand_platform_data *cfg, | |||
172 | return freq; | 169 | return freq; |
173 | } | 170 | } |
174 | 171 | ||
175 | static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | 172 | static struct gpmc_timings |
176 | void __iomem *onenand_base, | 173 | omap2_onenand_calc_sync_timings(struct omap_onenand_platform_data *cfg, |
177 | int *freq_ptr) | 174 | int freq) |
178 | { | 175 | { |
179 | struct gpmc_timings t; | 176 | struct gpmc_timings t; |
180 | const int t_cer = 15; | 177 | const int t_cer = 15; |
@@ -184,29 +181,15 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
184 | const int t_wpl = 40; | 181 | const int t_wpl = 40; |
185 | const int t_wph = 30; | 182 | const int t_wph = 30; |
186 | int min_gpmc_clk_period, t_ces, t_avds, t_avdh, t_ach, t_aavdh, t_rdyo; | 183 | int min_gpmc_clk_period, t_ces, t_avds, t_avdh, t_ach, t_aavdh, t_rdyo; |
187 | int div, fclk_offset_ns, fclk_offset, gpmc_clk_ns, latency; | ||
188 | int first_time = 0, hf = 0, vhf = 0, sync_read = 0, sync_write = 0; | ||
189 | int err, ticks_cez; | ||
190 | int cs = cfg->cs, freq = *freq_ptr; | ||
191 | u32 reg; | 184 | u32 reg; |
192 | bool clk_dep = false; | 185 | int div, fclk_offset_ns, gpmc_clk_ns; |
186 | int ticks_cez; | ||
187 | int cs = cfg->cs; | ||
193 | 188 | ||
194 | if (cfg->flags & ONENAND_SYNC_READ) { | 189 | if (cfg->flags & ONENAND_SYNC_READ) |
195 | sync_read = 1; | 190 | onenand_flags = ONENAND_FLAG_SYNCREAD; |
196 | } else if (cfg->flags & ONENAND_SYNC_READWRITE) { | 191 | else if (cfg->flags & ONENAND_SYNC_READWRITE) |
197 | sync_read = 1; | 192 | onenand_flags = ONENAND_FLAG_SYNCREAD | ONENAND_FLAG_SYNCWRITE; |
198 | sync_write = 1; | ||
199 | } else | ||
200 | return omap2_onenand_set_async_mode(cs, onenand_base); | ||
201 | |||
202 | if (!freq) { | ||
203 | /* Very first call freq is not known */ | ||
204 | err = omap2_onenand_set_async_mode(cs, onenand_base); | ||
205 | if (err) | ||
206 | return err; | ||
207 | freq = omap2_onenand_get_freq(cfg, onenand_base, &clk_dep); | ||
208 | first_time = 1; | ||
209 | } | ||
210 | 193 | ||
211 | switch (freq) { | 194 | switch (freq) { |
212 | case 104: | 195 | case 104: |
@@ -244,44 +227,31 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
244 | t_ach = 9; | 227 | t_ach = 9; |
245 | t_aavdh = 7; | 228 | t_aavdh = 7; |
246 | t_rdyo = 15; | 229 | t_rdyo = 15; |
247 | sync_write = 0; | 230 | onenand_flags &= ~ONENAND_FLAG_SYNCWRITE; |
248 | break; | 231 | break; |
249 | } | 232 | } |
250 | 233 | ||
251 | div = gpmc_cs_calc_divider(cs, min_gpmc_clk_period); | 234 | div = gpmc_calc_divider(min_gpmc_clk_period); |
252 | gpmc_clk_ns = gpmc_ticks_to_ns(div); | 235 | gpmc_clk_ns = gpmc_ticks_to_ns(div); |
253 | if (gpmc_clk_ns < 15) /* >66Mhz */ | 236 | if (gpmc_clk_ns < 15) /* >66Mhz */ |
254 | hf = 1; | 237 | onenand_flags |= ONENAND_FLAG_HF; |
238 | else | ||
239 | onenand_flags &= ~ONENAND_FLAG_HF; | ||
255 | if (gpmc_clk_ns < 12) /* >83Mhz */ | 240 | if (gpmc_clk_ns < 12) /* >83Mhz */ |
256 | vhf = 1; | 241 | onenand_flags |= ONENAND_FLAG_VHF; |
257 | if (vhf) | 242 | else |
243 | onenand_flags &= ~ONENAND_FLAG_VHF; | ||
244 | if (onenand_flags & ONENAND_FLAG_VHF) | ||
258 | latency = 8; | 245 | latency = 8; |
259 | else if (hf) | 246 | else if (onenand_flags & ONENAND_FLAG_HF) |
260 | latency = 6; | 247 | latency = 6; |
261 | else if (gpmc_clk_ns >= 25) /* 40 MHz*/ | 248 | else if (gpmc_clk_ns >= 25) /* 40 MHz*/ |
262 | latency = 3; | 249 | latency = 3; |
263 | else | 250 | else |
264 | latency = 4; | 251 | latency = 4; |
265 | 252 | ||
266 | if (clk_dep) { | 253 | /* Set synchronous read timings */ |
267 | if (gpmc_clk_ns < 12) { /* >83Mhz */ | 254 | memset(&t, 0, sizeof(t)); |
268 | t_ces = 3; | ||
269 | t_avds = 4; | ||
270 | } else if (gpmc_clk_ns < 15) { /* >66Mhz */ | ||
271 | t_ces = 5; | ||
272 | t_avds = 4; | ||
273 | } else if (gpmc_clk_ns < 25) { /* >40Mhz */ | ||
274 | t_ces = 6; | ||
275 | t_avds = 5; | ||
276 | } else { | ||
277 | t_ces = 7; | ||
278 | t_avds = 7; | ||
279 | } | ||
280 | } | ||
281 | |||
282 | if (first_time) | ||
283 | set_onenand_cfg(onenand_base, latency, | ||
284 | sync_read, sync_write, hf, vhf); | ||
285 | 255 | ||
286 | if (div == 1) { | 256 | if (div == 1) { |
287 | reg = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG2); | 257 | reg = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG2); |
@@ -307,8 +277,6 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
307 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, reg); | 277 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, reg); |
308 | } | 278 | } |
309 | 279 | ||
310 | /* Set synchronous read timings */ | ||
311 | memset(&t, 0, sizeof(t)); | ||
312 | t.sync_clk = min_gpmc_clk_period; | 280 | t.sync_clk = min_gpmc_clk_period; |
313 | t.cs_on = 0; | 281 | t.cs_on = 0; |
314 | t.adv_on = 0; | 282 | t.adv_on = 0; |
@@ -330,7 +298,7 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
330 | ticks_cez); | 298 | ticks_cez); |
331 | 299 | ||
332 | /* Write */ | 300 | /* Write */ |
333 | if (sync_write) { | 301 | if (onenand_flags & ONENAND_FLAG_SYNCWRITE) { |
334 | t.adv_wr_off = t.adv_rd_off; | 302 | t.adv_wr_off = t.adv_rd_off; |
335 | t.we_on = 0; | 303 | t.we_on = 0; |
336 | t.we_off = t.cs_rd_off; | 304 | t.we_off = t.cs_rd_off; |
@@ -355,6 +323,14 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
355 | } | 323 | } |
356 | } | 324 | } |
357 | 325 | ||
326 | return t; | ||
327 | } | ||
328 | |||
329 | static int gpmc_set_sync_mode(int cs, struct gpmc_timings *t) | ||
330 | { | ||
331 | unsigned sync_read = onenand_flags & ONENAND_FLAG_SYNCREAD; | ||
332 | unsigned sync_write = onenand_flags & ONENAND_FLAG_SYNCWRITE; | ||
333 | |||
358 | /* Configure GPMC for synchronous read */ | 334 | /* Configure GPMC for synchronous read */ |
359 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, | 335 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, |
360 | GPMC_CONFIG1_WRAPBURST_SUPP | | 336 | GPMC_CONFIG1_WRAPBURST_SUPP | |
@@ -371,11 +347,45 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
371 | GPMC_CONFIG1_DEVICETYPE_NOR | | 347 | GPMC_CONFIG1_DEVICETYPE_NOR | |
372 | GPMC_CONFIG1_MUXADDDATA); | 348 | GPMC_CONFIG1_MUXADDDATA); |
373 | 349 | ||
374 | err = gpmc_cs_set_timings(cs, &t); | 350 | return gpmc_cs_set_timings(cs, t); |
375 | if (err) | 351 | } |
376 | return err; | 352 | |
353 | static int omap2_onenand_setup_async(void __iomem *onenand_base) | ||
354 | { | ||
355 | struct gpmc_timings t; | ||
356 | int ret; | ||
357 | |||
358 | omap2_onenand_set_async_mode(onenand_base); | ||
377 | 359 | ||
378 | set_onenand_cfg(onenand_base, latency, sync_read, sync_write, hf, vhf); | 360 | t = omap2_onenand_calc_async_timings(); |
361 | |||
362 | ret = gpmc_set_async_mode(gpmc_onenand_data->cs, &t); | ||
363 | if (IS_ERR_VALUE(ret)) | ||
364 | return ret; | ||
365 | |||
366 | omap2_onenand_set_async_mode(onenand_base); | ||
367 | |||
368 | return 0; | ||
369 | } | ||
370 | |||
371 | static int omap2_onenand_setup_sync(void __iomem *onenand_base, int *freq_ptr) | ||
372 | { | ||
373 | int ret, freq = *freq_ptr; | ||
374 | struct gpmc_timings t; | ||
375 | |||
376 | if (!freq) { | ||
377 | /* Very first call freq is not known */ | ||
378 | freq = omap2_onenand_get_freq(gpmc_onenand_data, onenand_base); | ||
379 | set_onenand_cfg(onenand_base); | ||
380 | } | ||
381 | |||
382 | t = omap2_onenand_calc_sync_timings(gpmc_onenand_data, freq); | ||
383 | |||
384 | ret = gpmc_set_sync_mode(gpmc_onenand_data->cs, &t); | ||
385 | if (IS_ERR_VALUE(ret)) | ||
386 | return ret; | ||
387 | |||
388 | set_onenand_cfg(onenand_base); | ||
379 | 389 | ||
380 | *freq_ptr = freq; | 390 | *freq_ptr = freq; |
381 | 391 | ||
@@ -385,15 +395,22 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, | |||
385 | static int gpmc_onenand_setup(void __iomem *onenand_base, int *freq_ptr) | 395 | static int gpmc_onenand_setup(void __iomem *onenand_base, int *freq_ptr) |
386 | { | 396 | { |
387 | struct device *dev = &gpmc_onenand_device.dev; | 397 | struct device *dev = &gpmc_onenand_device.dev; |
398 | unsigned l = ONENAND_SYNC_READ | ONENAND_SYNC_READWRITE; | ||
399 | int ret; | ||
388 | 400 | ||
389 | /* Set sync timings in GPMC */ | 401 | ret = omap2_onenand_setup_async(onenand_base); |
390 | if (omap2_onenand_set_sync_mode(gpmc_onenand_data, onenand_base, | 402 | if (ret) { |
391 | freq_ptr) < 0) { | 403 | dev_err(dev, "unable to set to async mode\n"); |
392 | dev_err(dev, "Unable to set synchronous mode\n"); | 404 | return ret; |
393 | return -EINVAL; | ||
394 | } | 405 | } |
395 | 406 | ||
396 | return 0; | 407 | if (!(gpmc_onenand_data->flags & l)) |
408 | return 0; | ||
409 | |||
410 | ret = omap2_onenand_setup_sync(onenand_base, freq_ptr); | ||
411 | if (ret) | ||
412 | dev_err(dev, "unable to set to sync mode\n"); | ||
413 | return ret; | ||
397 | } | 414 | } |
398 | 415 | ||
399 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | 416 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) |
@@ -411,6 +428,11 @@ void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | |||
411 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; | 428 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; |
412 | } | 429 | } |
413 | 430 | ||
431 | if (cpu_is_omap34xx()) | ||
432 | gpmc_onenand_data->flags |= ONENAND_IN_OMAP34XX; | ||
433 | else | ||
434 | gpmc_onenand_data->flags &= ~ONENAND_IN_OMAP34XX; | ||
435 | |||
414 | err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE, | 436 | err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE, |
415 | (unsigned long *)&gpmc_onenand_resource.start); | 437 | (unsigned long *)&gpmc_onenand_resource.start); |
416 | if (err < 0) { | 438 | if (err < 0) { |