ARM: OMAP2+: Allow NAND transfer mode to be specified in DT
[linux-2.6-block.git] / arch / arm / mach-omap2 / gpmc.c
CommitLineData
4bbbc1ad
JY
1/*
2 * GPMC support functions
3 *
4 * Copyright (C) 2005-2006 Nokia Corporation
5 *
6 * Author: Juha Yrjola
7 *
44169075
SS
8 * Copyright (C) 2009 Texas Instruments
9 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
10 *
4bbbc1ad
JY
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
fd1dc87d
PW
15#undef DEBUG
16
db97eb7d 17#include <linux/irq.h>
4bbbc1ad
JY
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/err.h>
21#include <linux/clk.h>
f37e4580
ID
22#include <linux/ioport.h>
23#include <linux/spinlock.h>
fced80c7 24#include <linux/io.h>
fd1dc87d 25#include <linux/module.h>
db97eb7d 26#include <linux/interrupt.h>
da496873 27#include <linux/platform_device.h>
bc6b1e7b 28#include <linux/of.h>
cdd6928c 29#include <linux/of_address.h>
bc6b1e7b
DM
30#include <linux/of_mtd.h>
31#include <linux/of_device.h>
32#include <linux/mtd/nand.h>
4bbbc1ad 33
bc3668ea 34#include <linux/platform_data/mtd-nand-omap2.h>
4bbbc1ad 35
7f245162 36#include <asm/mach-types.h>
72d0f1c3 37
dbc04161 38#include "soc.h"
7d7e1eba 39#include "common.h"
25c7d49e 40#include "omap_device.h"
3ef5d007 41#include "gpmc.h"
bc6b1e7b 42#include "gpmc-nand.h"
75d3625e 43#include "gpmc-onenand.h"
7d7e1eba 44
4be48fd5
AM
45#define DEVICE_NAME "omap-gpmc"
46
fd1dc87d 47/* GPMC register offsets */
4bbbc1ad
JY
48#define GPMC_REVISION 0x00
49#define GPMC_SYSCONFIG 0x10
50#define GPMC_SYSSTATUS 0x14
51#define GPMC_IRQSTATUS 0x18
52#define GPMC_IRQENABLE 0x1c
53#define GPMC_TIMEOUT_CONTROL 0x40
54#define GPMC_ERR_ADDRESS 0x44
55#define GPMC_ERR_TYPE 0x48
56#define GPMC_CONFIG 0x50
57#define GPMC_STATUS 0x54
58#define GPMC_PREFETCH_CONFIG1 0x1e0
59#define GPMC_PREFETCH_CONFIG2 0x1e4
15e02a3b 60#define GPMC_PREFETCH_CONTROL 0x1ec
4bbbc1ad
JY
61#define GPMC_PREFETCH_STATUS 0x1f0
62#define GPMC_ECC_CONFIG 0x1f4
63#define GPMC_ECC_CONTROL 0x1f8
64#define GPMC_ECC_SIZE_CONFIG 0x1fc
948d38e7 65#define GPMC_ECC1_RESULT 0x200
8d602cf5 66#define GPMC_ECC_BCH_RESULT_0 0x240 /* not available on OMAP2 */
2fdf0c98
AM
67#define GPMC_ECC_BCH_RESULT_1 0x244 /* not available on OMAP2 */
68#define GPMC_ECC_BCH_RESULT_2 0x248 /* not available on OMAP2 */
69#define GPMC_ECC_BCH_RESULT_3 0x24c /* not available on OMAP2 */
4bbbc1ad 70
2c65e744
YY
71/* GPMC ECC control settings */
72#define GPMC_ECC_CTRL_ECCCLEAR 0x100
73#define GPMC_ECC_CTRL_ECCDISABLE 0x000
74#define GPMC_ECC_CTRL_ECCREG1 0x001
75#define GPMC_ECC_CTRL_ECCREG2 0x002
76#define GPMC_ECC_CTRL_ECCREG3 0x003
77#define GPMC_ECC_CTRL_ECCREG4 0x004
78#define GPMC_ECC_CTRL_ECCREG5 0x005
79#define GPMC_ECC_CTRL_ECCREG6 0x006
80#define GPMC_ECC_CTRL_ECCREG7 0x007
81#define GPMC_ECC_CTRL_ECCREG8 0x008
82#define GPMC_ECC_CTRL_ECCREG9 0x009
83
559d94b0
AM
84#define GPMC_CONFIG2_CSEXTRADELAY BIT(7)
85#define GPMC_CONFIG3_ADVEXTRADELAY BIT(7)
86#define GPMC_CONFIG4_OEEXTRADELAY BIT(7)
87#define GPMC_CONFIG4_WEEXTRADELAY BIT(23)
88#define GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN BIT(6)
89#define GPMC_CONFIG6_CYCLE2CYCLESAMECSEN BIT(7)
90
948d38e7 91#define GPMC_CS0_OFFSET 0x60
4bbbc1ad 92#define GPMC_CS_SIZE 0x30
2fdf0c98 93#define GPMC_BCH_SIZE 0x10
4bbbc1ad 94
f37e4580 95#define GPMC_MEM_END 0x3FFFFFFF
f37e4580
ID
96
97#define GPMC_CHUNK_SHIFT 24 /* 16 MB */
98#define GPMC_SECTION_SHIFT 28 /* 128 MB */
99
59e9c5ae 100#define CS_NUM_SHIFT 24
101#define ENABLE_PREFETCH (0x1 << 7)
102#define DMA_MPU_MODE 2
103
da496873
AM
104#define GPMC_REVISION_MAJOR(l) ((l >> 4) & 0xf)
105#define GPMC_REVISION_MINOR(l) (l & 0xf)
106
107#define GPMC_HAS_WR_ACCESS 0x1
108#define GPMC_HAS_WR_DATA_MUX_BUS 0x2
aa8d4767 109#define GPMC_HAS_MUX_AAD 0x4
da496873 110
9f833156
JH
111#define GPMC_NR_WAITPINS 4
112
6b6c32fc
AM
113/* XXX: Only NAND irq has been considered,currently these are the only ones used
114 */
115#define GPMC_NR_IRQ 2
116
117struct gpmc_client_irq {
118 unsigned irq;
119 u32 bitmask;
120};
121
a2d3e7ba
RN
122/* Structure to save gpmc cs context */
123struct gpmc_cs_config {
124 u32 config1;
125 u32 config2;
126 u32 config3;
127 u32 config4;
128 u32 config5;
129 u32 config6;
130 u32 config7;
131 int is_valid;
132};
133
134/*
135 * Structure to save/restore gpmc context
136 * to support core off on OMAP3
137 */
138struct omap3_gpmc_regs {
139 u32 sysconfig;
140 u32 irqenable;
141 u32 timeout_ctrl;
142 u32 config;
143 u32 prefetch_config1;
144 u32 prefetch_config2;
145 u32 prefetch_control;
146 struct gpmc_cs_config cs_context[GPMC_CS_NUM];
147};
148
6b6c32fc
AM
149static struct gpmc_client_irq gpmc_client_irq[GPMC_NR_IRQ];
150static struct irq_chip gpmc_irq_chip;
151static unsigned gpmc_irq_start;
152
f37e4580
ID
153static struct resource gpmc_mem_root;
154static struct resource gpmc_cs_mem[GPMC_CS_NUM];
87b247c4 155static DEFINE_SPINLOCK(gpmc_mem_lock);
6797b4fe
JH
156/* Define chip-selects as reserved by default until probe completes */
157static unsigned int gpmc_cs_map = ((1 << GPMC_CS_NUM) - 1);
9f833156 158static unsigned int gpmc_nr_waitpins;
da496873
AM
159static struct device *gpmc_dev;
160static int gpmc_irq;
161static resource_size_t phys_base, mem_size;
162static unsigned gpmc_capability;
fd1dc87d 163static void __iomem *gpmc_base;
4bbbc1ad 164
fd1dc87d 165static struct clk *gpmc_l3_clk;
4bbbc1ad 166
db97eb7d
SG
167static irqreturn_t gpmc_handle_irq(int irq, void *dev);
168
4bbbc1ad
JY
169static void gpmc_write_reg(int idx, u32 val)
170{
171 __raw_writel(val, gpmc_base + idx);
172}
173
174static u32 gpmc_read_reg(int idx)
175{
176 return __raw_readl(gpmc_base + idx);
177}
178
179void gpmc_cs_write_reg(int cs, int idx, u32 val)
180{
181 void __iomem *reg_addr;
182
948d38e7 183 reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
4bbbc1ad
JY
184 __raw_writel(val, reg_addr);
185}
186
3fc089e7 187static u32 gpmc_cs_read_reg(int cs, int idx)
4bbbc1ad 188{
fd1dc87d
PW
189 void __iomem *reg_addr;
190
948d38e7 191 reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
fd1dc87d 192 return __raw_readl(reg_addr);
4bbbc1ad
JY
193}
194
fd1dc87d 195/* TODO: Add support for gpmc_fck to clock framework and use it */
3fc089e7 196static unsigned long gpmc_get_fclk_period(void)
4bbbc1ad 197{
fd1dc87d
PW
198 unsigned long rate = clk_get_rate(gpmc_l3_clk);
199
200 if (rate == 0) {
201 printk(KERN_WARNING "gpmc_l3_clk not enabled\n");
202 return 0;
203 }
204
205 rate /= 1000;
206 rate = 1000000000 / rate; /* In picoseconds */
207
208 return rate;
4bbbc1ad
JY
209}
210
3fc089e7 211static unsigned int gpmc_ns_to_ticks(unsigned int time_ns)
4bbbc1ad
JY
212{
213 unsigned long tick_ps;
214
215 /* Calculate in picosecs to yield more exact results */
216 tick_ps = gpmc_get_fclk_period();
217
218 return (time_ns * 1000 + tick_ps - 1) / tick_ps;
219}
220
3fc089e7 221static unsigned int gpmc_ps_to_ticks(unsigned int time_ps)
a3551f5b
AH
222{
223 unsigned long tick_ps;
224
225 /* Calculate in picosecs to yield more exact results */
226 tick_ps = gpmc_get_fclk_period();
227
228 return (time_ps + tick_ps - 1) / tick_ps;
229}
230
fd1dc87d
PW
231unsigned int gpmc_ticks_to_ns(unsigned int ticks)
232{
233 return ticks * gpmc_get_fclk_period() / 1000;
234}
235
246da26d
AM
236static unsigned int gpmc_ticks_to_ps(unsigned int ticks)
237{
238 return ticks * gpmc_get_fclk_period();
239}
240
241static unsigned int gpmc_round_ps_to_ticks(unsigned int time_ps)
242{
243 unsigned long ticks = gpmc_ps_to_ticks(time_ps);
244
245 return ticks * gpmc_get_fclk_period();
246}
247
559d94b0
AM
248static inline void gpmc_cs_modify_reg(int cs, int reg, u32 mask, bool value)
249{
250 u32 l;
251
252 l = gpmc_cs_read_reg(cs, reg);
253 if (value)
254 l |= mask;
255 else
256 l &= ~mask;
257 gpmc_cs_write_reg(cs, reg, l);
258}
259
260static void gpmc_cs_bool_timings(int cs, const struct gpmc_bool_timings *p)
261{
262 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG1,
263 GPMC_CONFIG1_TIME_PARA_GRAN,
264 p->time_para_granularity);
265 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG2,
266 GPMC_CONFIG2_CSEXTRADELAY, p->cs_extra_delay);
267 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG3,
268 GPMC_CONFIG3_ADVEXTRADELAY, p->adv_extra_delay);
269 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG4,
270 GPMC_CONFIG4_OEEXTRADELAY, p->oe_extra_delay);
271 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG4,
272 GPMC_CONFIG4_OEEXTRADELAY, p->we_extra_delay);
273 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG6,
274 GPMC_CONFIG6_CYCLE2CYCLESAMECSEN,
275 p->cycle2cyclesamecsen);
276 gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG6,
277 GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN,
278 p->cycle2cyclediffcsen);
279}
280
4bbbc1ad
JY
281#ifdef DEBUG
282static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
2aab6468 283 int time, const char *name)
4bbbc1ad
JY
284#else
285static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
286 int time)
287#endif
288{
289 u32 l;
290 int ticks, mask, nr_bits;
291
292 if (time == 0)
293 ticks = 0;
294 else
295 ticks = gpmc_ns_to_ticks(time);
296 nr_bits = end_bit - st_bit + 1;
1c22cc13
DB
297 if (ticks >= 1 << nr_bits) {
298#ifdef DEBUG
299 printk(KERN_INFO "GPMC CS%d: %-10s* %3d ns, %3d ticks >= %d\n",
300 cs, name, time, ticks, 1 << nr_bits);
301#endif
4bbbc1ad 302 return -1;
1c22cc13 303 }
4bbbc1ad
JY
304
305 mask = (1 << nr_bits) - 1;
306 l = gpmc_cs_read_reg(cs, reg);
307#ifdef DEBUG
1c22cc13
DB
308 printk(KERN_INFO
309 "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
2aab6468 310 cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000,
1c22cc13 311 (l >> st_bit) & mask, time);
4bbbc1ad
JY
312#endif
313 l &= ~(mask << st_bit);
314 l |= ticks << st_bit;
315 gpmc_cs_write_reg(cs, reg, l);
316
317 return 0;
318}
319
320#ifdef DEBUG
321#define GPMC_SET_ONE(reg, st, end, field) \
322 if (set_gpmc_timing_reg(cs, (reg), (st), (end), \
323 t->field, #field) < 0) \
324 return -1
325#else
326#define GPMC_SET_ONE(reg, st, end, field) \
327 if (set_gpmc_timing_reg(cs, (reg), (st), (end), t->field) < 0) \
328 return -1
329#endif
330
1b47ca1a 331int gpmc_calc_divider(unsigned int sync_clk)
4bbbc1ad
JY
332{
333 int div;
334 u32 l;
335
a3551f5b 336 l = sync_clk + (gpmc_get_fclk_period() - 1);
4bbbc1ad
JY
337 div = l / gpmc_get_fclk_period();
338 if (div > 4)
339 return -1;
1c22cc13 340 if (div <= 0)
4bbbc1ad
JY
341 div = 1;
342
343 return div;
344}
345
346int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t)
347{
348 int div;
349 u32 l;
350
1b47ca1a 351 div = gpmc_calc_divider(t->sync_clk);
4bbbc1ad 352 if (div < 0)
a032d33b 353 return div;
4bbbc1ad
JY
354
355 GPMC_SET_ONE(GPMC_CS_CONFIG2, 0, 3, cs_on);
356 GPMC_SET_ONE(GPMC_CS_CONFIG2, 8, 12, cs_rd_off);
357 GPMC_SET_ONE(GPMC_CS_CONFIG2, 16, 20, cs_wr_off);
358
359 GPMC_SET_ONE(GPMC_CS_CONFIG3, 0, 3, adv_on);
360 GPMC_SET_ONE(GPMC_CS_CONFIG3, 8, 12, adv_rd_off);
361 GPMC_SET_ONE(GPMC_CS_CONFIG3, 16, 20, adv_wr_off);
362
363 GPMC_SET_ONE(GPMC_CS_CONFIG4, 0, 3, oe_on);
364 GPMC_SET_ONE(GPMC_CS_CONFIG4, 8, 12, oe_off);
365 GPMC_SET_ONE(GPMC_CS_CONFIG4, 16, 19, we_on);
366 GPMC_SET_ONE(GPMC_CS_CONFIG4, 24, 28, we_off);
367
368 GPMC_SET_ONE(GPMC_CS_CONFIG5, 0, 4, rd_cycle);
369 GPMC_SET_ONE(GPMC_CS_CONFIG5, 8, 12, wr_cycle);
370 GPMC_SET_ONE(GPMC_CS_CONFIG5, 16, 20, access);
371
372 GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access);
373
559d94b0
AM
374 GPMC_SET_ONE(GPMC_CS_CONFIG6, 0, 3, bus_turnaround);
375 GPMC_SET_ONE(GPMC_CS_CONFIG6, 8, 11, cycle2cycle_delay);
376
377 GPMC_SET_ONE(GPMC_CS_CONFIG1, 18, 19, wait_monitoring);
378 GPMC_SET_ONE(GPMC_CS_CONFIG1, 25, 26, clk_activation);
379
da496873 380 if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS)
cc26b3b0 381 GPMC_SET_ONE(GPMC_CS_CONFIG6, 16, 19, wr_data_mux_bus);
da496873 382 if (gpmc_capability & GPMC_HAS_WR_ACCESS)
cc26b3b0 383 GPMC_SET_ONE(GPMC_CS_CONFIG6, 24, 28, wr_access);
cc26b3b0 384
1c22cc13
DB
385 /* caller is expected to have initialized CONFIG1 to cover
386 * at least sync vs async
387 */
388 l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
389 if (l & (GPMC_CONFIG1_READTYPE_SYNC | GPMC_CONFIG1_WRITETYPE_SYNC)) {
4bbbc1ad 390#ifdef DEBUG
1c22cc13
DB
391 printk(KERN_INFO "GPMC CS%d CLK period is %lu ns (div %d)\n",
392 cs, (div * gpmc_get_fclk_period()) / 1000, div);
4bbbc1ad 393#endif
1c22cc13
DB
394 l &= ~0x03;
395 l |= (div - 1);
396 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, l);
397 }
4bbbc1ad 398
559d94b0
AM
399 gpmc_cs_bool_timings(cs, &t->bool_timings);
400
4bbbc1ad
JY
401 return 0;
402}
403
c71f8e9b 404static int gpmc_cs_enable_mem(int cs, u32 base, u32 size)
f37e4580
ID
405{
406 u32 l;
407 u32 mask;
408
c71f8e9b
JH
409 /*
410 * Ensure that base address is aligned on a
411 * boundary equal to or greater than size.
412 */
413 if (base & (size - 1))
414 return -EINVAL;
415
f37e4580
ID
416 mask = (1 << GPMC_SECTION_SHIFT) - size;
417 l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
418 l &= ~0x3f;
419 l = (base >> GPMC_CHUNK_SHIFT) & 0x3f;
420 l &= ~(0x0f << 8);
421 l |= ((mask >> GPMC_CHUNK_SHIFT) & 0x0f) << 8;
a2d3e7ba 422 l |= GPMC_CONFIG7_CSVALID;
f37e4580 423 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
c71f8e9b
JH
424
425 return 0;
f37e4580
ID
426}
427
428static void gpmc_cs_disable_mem(int cs)
429{
430 u32 l;
431
432 l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
a2d3e7ba 433 l &= ~GPMC_CONFIG7_CSVALID;
f37e4580
ID
434 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
435}
436
437static void gpmc_cs_get_memconf(int cs, u32 *base, u32 *size)
438{
439 u32 l;
440 u32 mask;
441
442 l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
443 *base = (l & 0x3f) << GPMC_CHUNK_SHIFT;
444 mask = (l >> 8) & 0x0f;
445 *size = (1 << GPMC_SECTION_SHIFT) - (mask << GPMC_CHUNK_SHIFT);
446}
447
448static int gpmc_cs_mem_enabled(int cs)
449{
450 u32 l;
451
452 l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
a2d3e7ba 453 return l & GPMC_CONFIG7_CSVALID;
f37e4580
ID
454}
455
f5d8edaf 456static void gpmc_cs_set_reserved(int cs, int reserved)
4bbbc1ad 457{
f37e4580
ID
458 gpmc_cs_map &= ~(1 << cs);
459 gpmc_cs_map |= (reserved ? 1 : 0) << cs;
460}
461
ae9d908a 462static bool gpmc_cs_reserved(int cs)
f37e4580
ID
463{
464 return gpmc_cs_map & (1 << cs);
465}
466
467static unsigned long gpmc_mem_align(unsigned long size)
468{
469 int order;
470
471 size = (size - 1) >> (GPMC_CHUNK_SHIFT - 1);
472 order = GPMC_CHUNK_SHIFT - 1;
473 do {
474 size >>= 1;
475 order++;
476 } while (size);
477 size = 1 << order;
478 return size;
479}
480
481static int gpmc_cs_insert_mem(int cs, unsigned long base, unsigned long size)
482{
483 struct resource *res = &gpmc_cs_mem[cs];
484 int r;
485
486 size = gpmc_mem_align(size);
487 spin_lock(&gpmc_mem_lock);
488 res->start = base;
489 res->end = base + size - 1;
490 r = request_resource(&gpmc_mem_root, res);
491 spin_unlock(&gpmc_mem_lock);
492
493 return r;
494}
495
da496873
AM
496static int gpmc_cs_delete_mem(int cs)
497{
498 struct resource *res = &gpmc_cs_mem[cs];
499 int r;
500
501 spin_lock(&gpmc_mem_lock);
502 r = release_resource(&gpmc_cs_mem[cs]);
503 res->start = 0;
504 res->end = 0;
505 spin_unlock(&gpmc_mem_lock);
506
507 return r;
508}
509
cdd6928c
JH
510/**
511 * gpmc_cs_remap - remaps a chip-select physical base address
512 * @cs: chip-select to remap
513 * @base: physical base address to re-map chip-select to
514 *
515 * Re-maps a chip-select to a new physical base address specified by
516 * "base". Returns 0 on success and appropriate negative error code
517 * on failure.
518 */
519static int gpmc_cs_remap(int cs, u32 base)
520{
521 int ret;
522 u32 old_base, size;
523
524 if (cs > GPMC_CS_NUM)
525 return -ENODEV;
526 gpmc_cs_get_memconf(cs, &old_base, &size);
527 if (base == old_base)
528 return 0;
529 gpmc_cs_disable_mem(cs);
530 ret = gpmc_cs_delete_mem(cs);
531 if (ret < 0)
532 return ret;
533 ret = gpmc_cs_insert_mem(cs, base, size);
534 if (ret < 0)
535 return ret;
c71f8e9b
JH
536 ret = gpmc_cs_enable_mem(cs, base, size);
537 if (ret < 0)
538 return ret;
cdd6928c
JH
539
540 return 0;
541}
542
f37e4580
ID
543int gpmc_cs_request(int cs, unsigned long size, unsigned long *base)
544{
545 struct resource *res = &gpmc_cs_mem[cs];
546 int r = -1;
547
548 if (cs > GPMC_CS_NUM)
549 return -ENODEV;
550
551 size = gpmc_mem_align(size);
552 if (size > (1 << GPMC_SECTION_SHIFT))
553 return -ENOMEM;
554
555 spin_lock(&gpmc_mem_lock);
556 if (gpmc_cs_reserved(cs)) {
557 r = -EBUSY;
558 goto out;
559 }
560 if (gpmc_cs_mem_enabled(cs))
561 r = adjust_resource(res, res->start & ~(size - 1), size);
562 if (r < 0)
563 r = allocate_resource(&gpmc_mem_root, res, size, 0, ~0,
564 size, NULL, NULL);
565 if (r < 0)
566 goto out;
567
c71f8e9b
JH
568 r = gpmc_cs_enable_mem(cs, res->start, resource_size(res));
569 if (r < 0) {
570 release_resource(res);
571 goto out;
572 }
573
f37e4580
ID
574 *base = res->start;
575 gpmc_cs_set_reserved(cs, 1);
576out:
577 spin_unlock(&gpmc_mem_lock);
578 return r;
579}
fd1dc87d 580EXPORT_SYMBOL(gpmc_cs_request);
f37e4580
ID
581
582void gpmc_cs_free(int cs)
583{
584 spin_lock(&gpmc_mem_lock);
e7fdc605 585 if (cs >= GPMC_CS_NUM || cs < 0 || !gpmc_cs_reserved(cs)) {
f37e4580
ID
586 printk(KERN_ERR "Trying to free non-reserved GPMC CS%d\n", cs);
587 BUG();
588 spin_unlock(&gpmc_mem_lock);
589 return;
590 }
591 gpmc_cs_disable_mem(cs);
592 release_resource(&gpmc_cs_mem[cs]);
593 gpmc_cs_set_reserved(cs, 0);
594 spin_unlock(&gpmc_mem_lock);
595}
fd1dc87d 596EXPORT_SYMBOL(gpmc_cs_free);
f37e4580 597
948d38e7 598/**
3a544354 599 * gpmc_configure - write request to configure gpmc
948d38e7
SG
600 * @cmd: command type
601 * @wval: value to write
602 * @return status of the operation
603 */
3a544354 604int gpmc_configure(int cmd, int wval)
948d38e7 605{
3a544354 606 u32 regval;
948d38e7
SG
607
608 switch (cmd) {
db97eb7d
SG
609 case GPMC_ENABLE_IRQ:
610 gpmc_write_reg(GPMC_IRQENABLE, wval);
611 break;
612
948d38e7
SG
613 case GPMC_SET_IRQ_STATUS:
614 gpmc_write_reg(GPMC_IRQSTATUS, wval);
615 break;
616
617 case GPMC_CONFIG_WP:
618 regval = gpmc_read_reg(GPMC_CONFIG);
619 if (wval)
620 regval &= ~GPMC_CONFIG_WRITEPROTECT; /* WP is ON */
621 else
622 regval |= GPMC_CONFIG_WRITEPROTECT; /* WP is OFF */
623 gpmc_write_reg(GPMC_CONFIG, regval);
624 break;
625
948d38e7 626 default:
3a544354
JH
627 pr_err("%s: command not supported\n", __func__);
628 return -EINVAL;
948d38e7
SG
629 }
630
3a544354 631 return 0;
948d38e7 632}
3a544354 633EXPORT_SYMBOL(gpmc_configure);
948d38e7 634
52bd138d
AM
635void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs)
636{
2fdf0c98
AM
637 int i;
638
52bd138d
AM
639 reg->gpmc_status = gpmc_base + GPMC_STATUS;
640 reg->gpmc_nand_command = gpmc_base + GPMC_CS0_OFFSET +
641 GPMC_CS_NAND_COMMAND + GPMC_CS_SIZE * cs;
642 reg->gpmc_nand_address = gpmc_base + GPMC_CS0_OFFSET +
643 GPMC_CS_NAND_ADDRESS + GPMC_CS_SIZE * cs;
644 reg->gpmc_nand_data = gpmc_base + GPMC_CS0_OFFSET +
645 GPMC_CS_NAND_DATA + GPMC_CS_SIZE * cs;
646 reg->gpmc_prefetch_config1 = gpmc_base + GPMC_PREFETCH_CONFIG1;
647 reg->gpmc_prefetch_config2 = gpmc_base + GPMC_PREFETCH_CONFIG2;
648 reg->gpmc_prefetch_control = gpmc_base + GPMC_PREFETCH_CONTROL;
649 reg->gpmc_prefetch_status = gpmc_base + GPMC_PREFETCH_STATUS;
650 reg->gpmc_ecc_config = gpmc_base + GPMC_ECC_CONFIG;
651 reg->gpmc_ecc_control = gpmc_base + GPMC_ECC_CONTROL;
652 reg->gpmc_ecc_size_config = gpmc_base + GPMC_ECC_SIZE_CONFIG;
653 reg->gpmc_ecc1_result = gpmc_base + GPMC_ECC1_RESULT;
2fdf0c98
AM
654
655 for (i = 0; i < GPMC_BCH_NUM_REMAINDER; i++) {
656 reg->gpmc_bch_result0[i] = gpmc_base + GPMC_ECC_BCH_RESULT_0 +
657 GPMC_BCH_SIZE * i;
658 reg->gpmc_bch_result1[i] = gpmc_base + GPMC_ECC_BCH_RESULT_1 +
659 GPMC_BCH_SIZE * i;
660 reg->gpmc_bch_result2[i] = gpmc_base + GPMC_ECC_BCH_RESULT_2 +
661 GPMC_BCH_SIZE * i;
662 reg->gpmc_bch_result3[i] = gpmc_base + GPMC_ECC_BCH_RESULT_3 +
663 GPMC_BCH_SIZE * i;
664 }
52bd138d
AM
665}
666
6b6c32fc
AM
667int gpmc_get_client_irq(unsigned irq_config)
668{
669 int i;
670
671 if (hweight32(irq_config) > 1)
672 return 0;
673
674 for (i = 0; i < GPMC_NR_IRQ; i++)
675 if (gpmc_client_irq[i].bitmask & irq_config)
676 return gpmc_client_irq[i].irq;
677
678 return 0;
679}
680
681static int gpmc_irq_endis(unsigned irq, bool endis)
682{
683 int i;
684 u32 regval;
685
686 for (i = 0; i < GPMC_NR_IRQ; i++)
687 if (irq == gpmc_client_irq[i].irq) {
688 regval = gpmc_read_reg(GPMC_IRQENABLE);
689 if (endis)
690 regval |= gpmc_client_irq[i].bitmask;
691 else
692 regval &= ~gpmc_client_irq[i].bitmask;
693 gpmc_write_reg(GPMC_IRQENABLE, regval);
694 break;
695 }
696
697 return 0;
698}
699
700static void gpmc_irq_disable(struct irq_data *p)
701{
702 gpmc_irq_endis(p->irq, false);
703}
704
705static void gpmc_irq_enable(struct irq_data *p)
706{
707 gpmc_irq_endis(p->irq, true);
708}
709
710static void gpmc_irq_noop(struct irq_data *data) { }
711
712static unsigned int gpmc_irq_noop_ret(struct irq_data *data) { return 0; }
713
da496873 714static int gpmc_setup_irq(void)
6b6c32fc
AM
715{
716 int i;
717 u32 regval;
718
719 if (!gpmc_irq)
720 return -EINVAL;
721
722 gpmc_irq_start = irq_alloc_descs(-1, 0, GPMC_NR_IRQ, 0);
71856843 723 if (gpmc_irq_start < 0) {
6b6c32fc
AM
724 pr_err("irq_alloc_descs failed\n");
725 return gpmc_irq_start;
726 }
727
728 gpmc_irq_chip.name = "gpmc";
729 gpmc_irq_chip.irq_startup = gpmc_irq_noop_ret;
730 gpmc_irq_chip.irq_enable = gpmc_irq_enable;
731 gpmc_irq_chip.irq_disable = gpmc_irq_disable;
732 gpmc_irq_chip.irq_shutdown = gpmc_irq_noop;
733 gpmc_irq_chip.irq_ack = gpmc_irq_noop;
734 gpmc_irq_chip.irq_mask = gpmc_irq_noop;
735 gpmc_irq_chip.irq_unmask = gpmc_irq_noop;
736
737 gpmc_client_irq[0].bitmask = GPMC_IRQ_FIFOEVENTENABLE;
738 gpmc_client_irq[1].bitmask = GPMC_IRQ_COUNT_EVENT;
739
740 for (i = 0; i < GPMC_NR_IRQ; i++) {
741 gpmc_client_irq[i].irq = gpmc_irq_start + i;
742 irq_set_chip_and_handler(gpmc_client_irq[i].irq,
743 &gpmc_irq_chip, handle_simple_irq);
744 set_irq_flags(gpmc_client_irq[i].irq,
745 IRQF_VALID | IRQF_NOAUTOEN);
746 }
747
748 /* Disable interrupts */
749 gpmc_write_reg(GPMC_IRQENABLE, 0);
750
751 /* clear interrupts */
752 regval = gpmc_read_reg(GPMC_IRQSTATUS);
753 gpmc_write_reg(GPMC_IRQSTATUS, regval);
754
755 return request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL);
756}
757
351a102d 758static int gpmc_free_irq(void)
da496873
AM
759{
760 int i;
761
762 if (gpmc_irq)
763 free_irq(gpmc_irq, NULL);
764
765 for (i = 0; i < GPMC_NR_IRQ; i++) {
766 irq_set_handler(gpmc_client_irq[i].irq, NULL);
767 irq_set_chip(gpmc_client_irq[i].irq, &no_irq_chip);
768 irq_modify_status(gpmc_client_irq[i].irq, 0, 0);
769 }
770
771 irq_free_descs(gpmc_irq_start, GPMC_NR_IRQ);
772
773 return 0;
774}
775
351a102d 776static void gpmc_mem_exit(void)
da496873
AM
777{
778 int cs;
779
780 for (cs = 0; cs < GPMC_CS_NUM; cs++) {
781 if (!gpmc_cs_mem_enabled(cs))
782 continue;
783 gpmc_cs_delete_mem(cs);
784 }
785
786}
787
84b00f0e 788static void gpmc_mem_init(void)
f37e4580 789{
84b00f0e 790 int cs;
f37e4580 791
bf234397
JH
792 /*
793 * The first 1MB of GPMC address space is typically mapped to
794 * the internal ROM. Never allocate the first page, to
795 * facilitate bug detection; even if we didn't boot from ROM.
7f245162 796 */
bf234397 797 gpmc_mem_root.start = SZ_1M;
f37e4580
ID
798 gpmc_mem_root.end = GPMC_MEM_END;
799
800 /* Reserve all regions that has been set up by bootloader */
801 for (cs = 0; cs < GPMC_CS_NUM; cs++) {
802 u32 base, size;
803
804 if (!gpmc_cs_mem_enabled(cs))
805 continue;
806 gpmc_cs_get_memconf(cs, &base, &size);
84b00f0e
JH
807 if (gpmc_cs_insert_mem(cs, base, size)) {
808 pr_warn("%s: disabling cs %d mapped at 0x%x-0x%x\n",
809 __func__, cs, base, base + size);
810 gpmc_cs_disable_mem(cs);
8119024e 811 }
f37e4580 812 }
4bbbc1ad
JY
813}
814
246da26d
AM
815static u32 gpmc_round_ps_to_sync_clk(u32 time_ps, u32 sync_clk)
816{
817 u32 temp;
818 int div;
819
820 div = gpmc_calc_divider(sync_clk);
821 temp = gpmc_ps_to_ticks(time_ps);
822 temp = (temp + div - 1) / div;
823 return gpmc_ticks_to_ps(temp * div);
824}
825
826/* XXX: can the cycles be avoided ? */
827static int gpmc_calc_sync_read_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
828 struct gpmc_device_timings *dev_t,
829 bool mux)
246da26d 830{
246da26d
AM
831 u32 temp;
832
833 /* adv_rd_off */
834 temp = dev_t->t_avdp_r;
835 /* XXX: mux check required ? */
836 if (mux) {
837 /* XXX: t_avdp not to be required for sync, only added for tusb
838 * this indirectly necessitates requirement of t_avdp_r and
839 * t_avdp_w instead of having a single t_avdp
840 */
841 temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_avdh);
842 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
843 }
844 gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp);
845
846 /* oe_on */
847 temp = dev_t->t_oeasu; /* XXX: remove this ? */
848 if (mux) {
849 temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_ach);
850 temp = max_t(u32, temp, gpmc_t->adv_rd_off +
851 gpmc_ticks_to_ps(dev_t->cyc_aavdh_oe));
852 }
853 gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp);
854
855 /* access */
856 /* XXX: any scope for improvement ?, by combining oe_on
857 * and clk_activation, need to check whether
858 * access = clk_activation + round to sync clk ?
859 */
860 temp = max_t(u32, dev_t->t_iaa, dev_t->cyc_iaa * gpmc_t->sync_clk);
861 temp += gpmc_t->clk_activation;
862 if (dev_t->cyc_oe)
863 temp = max_t(u32, temp, gpmc_t->oe_on +
864 gpmc_ticks_to_ps(dev_t->cyc_oe));
865 gpmc_t->access = gpmc_round_ps_to_ticks(temp);
866
867 gpmc_t->oe_off = gpmc_t->access + gpmc_ticks_to_ps(1);
868 gpmc_t->cs_rd_off = gpmc_t->oe_off;
869
870 /* rd_cycle */
871 temp = max_t(u32, dev_t->t_cez_r, dev_t->t_oez);
872 temp = gpmc_round_ps_to_sync_clk(temp, gpmc_t->sync_clk) +
873 gpmc_t->access;
874 /* XXX: barter t_ce_rdyz with t_cez_r ? */
875 if (dev_t->t_ce_rdyz)
876 temp = max_t(u32, temp, gpmc_t->cs_rd_off + dev_t->t_ce_rdyz);
877 gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp);
878
879 return 0;
880}
881
882static int gpmc_calc_sync_write_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
883 struct gpmc_device_timings *dev_t,
884 bool mux)
246da26d 885{
246da26d
AM
886 u32 temp;
887
888 /* adv_wr_off */
889 temp = dev_t->t_avdp_w;
890 if (mux) {
891 temp = max_t(u32, temp,
892 gpmc_t->clk_activation + dev_t->t_avdh);
893 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
894 }
895 gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp);
896
897 /* wr_data_mux_bus */
898 temp = max_t(u32, dev_t->t_weasu,
899 gpmc_t->clk_activation + dev_t->t_rdyo);
900 /* XXX: shouldn't mux be kept as a whole for wr_data_mux_bus ?,
901 * and in that case remember to handle we_on properly
902 */
903 if (mux) {
904 temp = max_t(u32, temp,
905 gpmc_t->adv_wr_off + dev_t->t_aavdh);
906 temp = max_t(u32, temp, gpmc_t->adv_wr_off +
907 gpmc_ticks_to_ps(dev_t->cyc_aavdh_we));
908 }
909 gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp);
910
911 /* we_on */
912 if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS)
913 gpmc_t->we_on = gpmc_round_ps_to_ticks(dev_t->t_weasu);
914 else
915 gpmc_t->we_on = gpmc_t->wr_data_mux_bus;
916
917 /* wr_access */
918 /* XXX: gpmc_capability check reqd ? , even if not, will not harm */
919 gpmc_t->wr_access = gpmc_t->access;
920
921 /* we_off */
922 temp = gpmc_t->we_on + dev_t->t_wpl;
923 temp = max_t(u32, temp,
924 gpmc_t->wr_access + gpmc_ticks_to_ps(1));
925 temp = max_t(u32, temp,
926 gpmc_t->we_on + gpmc_ticks_to_ps(dev_t->cyc_wpl));
927 gpmc_t->we_off = gpmc_round_ps_to_ticks(temp);
928
929 gpmc_t->cs_wr_off = gpmc_round_ps_to_ticks(gpmc_t->we_off +
930 dev_t->t_wph);
931
932 /* wr_cycle */
933 temp = gpmc_round_ps_to_sync_clk(dev_t->t_cez_w, gpmc_t->sync_clk);
934 temp += gpmc_t->wr_access;
935 /* XXX: barter t_ce_rdyz with t_cez_w ? */
936 if (dev_t->t_ce_rdyz)
937 temp = max_t(u32, temp,
938 gpmc_t->cs_wr_off + dev_t->t_ce_rdyz);
939 gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp);
940
941 return 0;
942}
943
944static int gpmc_calc_async_read_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
945 struct gpmc_device_timings *dev_t,
946 bool mux)
246da26d 947{
246da26d
AM
948 u32 temp;
949
950 /* adv_rd_off */
951 temp = dev_t->t_avdp_r;
952 if (mux)
953 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
954 gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp);
955
956 /* oe_on */
957 temp = dev_t->t_oeasu;
958 if (mux)
959 temp = max_t(u32, temp,
960 gpmc_t->adv_rd_off + dev_t->t_aavdh);
961 gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp);
962
963 /* access */
964 temp = max_t(u32, dev_t->t_iaa, /* XXX: remove t_iaa in async ? */
965 gpmc_t->oe_on + dev_t->t_oe);
966 temp = max_t(u32, temp,
967 gpmc_t->cs_on + dev_t->t_ce);
968 temp = max_t(u32, temp,
969 gpmc_t->adv_on + dev_t->t_aa);
970 gpmc_t->access = gpmc_round_ps_to_ticks(temp);
971
972 gpmc_t->oe_off = gpmc_t->access + gpmc_ticks_to_ps(1);
973 gpmc_t->cs_rd_off = gpmc_t->oe_off;
974
975 /* rd_cycle */
976 temp = max_t(u32, dev_t->t_rd_cycle,
977 gpmc_t->cs_rd_off + dev_t->t_cez_r);
978 temp = max_t(u32, temp, gpmc_t->oe_off + dev_t->t_oez);
979 gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp);
980
981 return 0;
982}
983
984static int gpmc_calc_async_write_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
985 struct gpmc_device_timings *dev_t,
986 bool mux)
246da26d 987{
246da26d
AM
988 u32 temp;
989
990 /* adv_wr_off */
991 temp = dev_t->t_avdp_w;
992 if (mux)
993 temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp);
994 gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp);
995
996 /* wr_data_mux_bus */
997 temp = dev_t->t_weasu;
998 if (mux) {
999 temp = max_t(u32, temp, gpmc_t->adv_wr_off + dev_t->t_aavdh);
1000 temp = max_t(u32, temp, gpmc_t->adv_wr_off +
1001 gpmc_ticks_to_ps(dev_t->cyc_aavdh_we));
1002 }
1003 gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp);
1004
1005 /* we_on */
1006 if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS)
1007 gpmc_t->we_on = gpmc_round_ps_to_ticks(dev_t->t_weasu);
1008 else
1009 gpmc_t->we_on = gpmc_t->wr_data_mux_bus;
1010
1011 /* we_off */
1012 temp = gpmc_t->we_on + dev_t->t_wpl;
1013 gpmc_t->we_off = gpmc_round_ps_to_ticks(temp);
1014
1015 gpmc_t->cs_wr_off = gpmc_round_ps_to_ticks(gpmc_t->we_off +
1016 dev_t->t_wph);
1017
1018 /* wr_cycle */
1019 temp = max_t(u32, dev_t->t_wr_cycle,
1020 gpmc_t->cs_wr_off + dev_t->t_cez_w);
1021 gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp);
1022
1023 return 0;
1024}
1025
1026static int gpmc_calc_sync_common_timings(struct gpmc_timings *gpmc_t,
1027 struct gpmc_device_timings *dev_t)
1028{
1029 u32 temp;
1030
1031 gpmc_t->sync_clk = gpmc_calc_divider(dev_t->clk) *
1032 gpmc_get_fclk_period();
1033
1034 gpmc_t->page_burst_access = gpmc_round_ps_to_sync_clk(
1035 dev_t->t_bacc,
1036 gpmc_t->sync_clk);
1037
1038 temp = max_t(u32, dev_t->t_ces, dev_t->t_avds);
1039 gpmc_t->clk_activation = gpmc_round_ps_to_ticks(temp);
1040
1041 if (gpmc_calc_divider(gpmc_t->sync_clk) != 1)
1042 return 0;
1043
1044 if (dev_t->ce_xdelay)
1045 gpmc_t->bool_timings.cs_extra_delay = true;
1046 if (dev_t->avd_xdelay)
1047 gpmc_t->bool_timings.adv_extra_delay = true;
1048 if (dev_t->oe_xdelay)
1049 gpmc_t->bool_timings.oe_extra_delay = true;
1050 if (dev_t->we_xdelay)
1051 gpmc_t->bool_timings.we_extra_delay = true;
1052
1053 return 0;
1054}
1055
1056static int gpmc_calc_common_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
1057 struct gpmc_device_timings *dev_t,
1058 bool sync)
246da26d
AM
1059{
1060 u32 temp;
1061
1062 /* cs_on */
1063 gpmc_t->cs_on = gpmc_round_ps_to_ticks(dev_t->t_ceasu);
1064
1065 /* adv_on */
1066 temp = dev_t->t_avdasu;
1067 if (dev_t->t_ce_avd)
1068 temp = max_t(u32, temp,
1069 gpmc_t->cs_on + dev_t->t_ce_avd);
1070 gpmc_t->adv_on = gpmc_round_ps_to_ticks(temp);
1071
c3be5b45 1072 if (sync)
246da26d
AM
1073 gpmc_calc_sync_common_timings(gpmc_t, dev_t);
1074
1075 return 0;
1076}
1077
1078/* TODO: remove this function once all peripherals are confirmed to
1079 * work with generic timing. Simultaneously gpmc_cs_set_timings()
1080 * has to be modified to handle timings in ps instead of ns
1081*/
1082static void gpmc_convert_ps_to_ns(struct gpmc_timings *t)
1083{
1084 t->cs_on /= 1000;
1085 t->cs_rd_off /= 1000;
1086 t->cs_wr_off /= 1000;
1087 t->adv_on /= 1000;
1088 t->adv_rd_off /= 1000;
1089 t->adv_wr_off /= 1000;
1090 t->we_on /= 1000;
1091 t->we_off /= 1000;
1092 t->oe_on /= 1000;
1093 t->oe_off /= 1000;
1094 t->page_burst_access /= 1000;
1095 t->access /= 1000;
1096 t->rd_cycle /= 1000;
1097 t->wr_cycle /= 1000;
1098 t->bus_turnaround /= 1000;
1099 t->cycle2cycle_delay /= 1000;
1100 t->wait_monitoring /= 1000;
1101 t->clk_activation /= 1000;
1102 t->wr_access /= 1000;
1103 t->wr_data_mux_bus /= 1000;
1104}
1105
1106int gpmc_calc_timings(struct gpmc_timings *gpmc_t,
c3be5b45
JH
1107 struct gpmc_settings *gpmc_s,
1108 struct gpmc_device_timings *dev_t)
246da26d 1109{
c3be5b45
JH
1110 bool mux = false, sync = false;
1111
1112 if (gpmc_s) {
1113 mux = gpmc_s->mux_add_data ? true : false;
1114 sync = (gpmc_s->sync_read || gpmc_s->sync_write);
1115 }
1116
246da26d
AM
1117 memset(gpmc_t, 0, sizeof(*gpmc_t));
1118
c3be5b45 1119 gpmc_calc_common_timings(gpmc_t, dev_t, sync);
246da26d 1120
c3be5b45
JH
1121 if (gpmc_s && gpmc_s->sync_read)
1122 gpmc_calc_sync_read_timings(gpmc_t, dev_t, mux);
246da26d 1123 else
c3be5b45 1124 gpmc_calc_async_read_timings(gpmc_t, dev_t, mux);
246da26d 1125
c3be5b45
JH
1126 if (gpmc_s && gpmc_s->sync_write)
1127 gpmc_calc_sync_write_timings(gpmc_t, dev_t, mux);
246da26d 1128 else
c3be5b45 1129 gpmc_calc_async_write_timings(gpmc_t, dev_t, mux);
246da26d
AM
1130
1131 /* TODO: remove, see function definition */
1132 gpmc_convert_ps_to_ns(gpmc_t);
1133
1134 return 0;
1135}
1136
aa8d4767
JH
1137/**
1138 * gpmc_cs_program_settings - programs non-timing related settings
1139 * @cs: GPMC chip-select to program
1140 * @p: pointer to GPMC settings structure
1141 *
1142 * Programs non-timing related settings for a GPMC chip-select, such as
1143 * bus-width, burst configuration, etc. Function should be called once
1144 * for each chip-select that is being used and must be called before
1145 * calling gpmc_cs_set_timings() as timing parameters in the CONFIG1
1146 * register will be initialised to zero by this function. Returns 0 on
1147 * success and appropriate negative error code on failure.
1148 */
1149int gpmc_cs_program_settings(int cs, struct gpmc_settings *p)
1150{
1151 u32 config1;
1152
1153 if ((!p->device_width) || (p->device_width > GPMC_DEVWIDTH_16BIT)) {
1154 pr_err("%s: invalid width %d!", __func__, p->device_width);
1155 return -EINVAL;
1156 }
1157
1158 /* Address-data multiplexing not supported for NAND devices */
1159 if (p->device_nand && p->mux_add_data) {
1160 pr_err("%s: invalid configuration!\n", __func__);
1161 return -EINVAL;
1162 }
1163
1164 if ((p->mux_add_data > GPMC_MUX_AD) ||
1165 ((p->mux_add_data == GPMC_MUX_AAD) &&
1166 !(gpmc_capability & GPMC_HAS_MUX_AAD))) {
1167 pr_err("%s: invalid multiplex configuration!\n", __func__);
1168 return -EINVAL;
1169 }
1170
1171 /* Page/burst mode supports lengths of 4, 8 and 16 bytes */
1172 if (p->burst_read || p->burst_write) {
1173 switch (p->burst_len) {
1174 case GPMC_BURST_4:
1175 case GPMC_BURST_8:
1176 case GPMC_BURST_16:
1177 break;
1178 default:
1179 pr_err("%s: invalid page/burst-length (%d)\n",
1180 __func__, p->burst_len);
1181 return -EINVAL;
1182 }
1183 }
1184
1185 if ((p->wait_on_read || p->wait_on_write) &&
1186 (p->wait_pin > gpmc_nr_waitpins)) {
1187 pr_err("%s: invalid wait-pin (%d)\n", __func__, p->wait_pin);
1188 return -EINVAL;
1189 }
1190
1191 config1 = GPMC_CONFIG1_DEVICESIZE((p->device_width - 1));
1192
1193 if (p->sync_read)
1194 config1 |= GPMC_CONFIG1_READTYPE_SYNC;
1195 if (p->sync_write)
1196 config1 |= GPMC_CONFIG1_WRITETYPE_SYNC;
1197 if (p->wait_on_read)
1198 config1 |= GPMC_CONFIG1_WAIT_READ_MON;
1199 if (p->wait_on_write)
1200 config1 |= GPMC_CONFIG1_WAIT_WRITE_MON;
1201 if (p->wait_on_read || p->wait_on_write)
1202 config1 |= GPMC_CONFIG1_WAIT_PIN_SEL(p->wait_pin);
1203 if (p->device_nand)
1204 config1 |= GPMC_CONFIG1_DEVICETYPE(GPMC_DEVICETYPE_NAND);
1205 if (p->mux_add_data)
1206 config1 |= GPMC_CONFIG1_MUXTYPE(p->mux_add_data);
1207 if (p->burst_read)
1208 config1 |= GPMC_CONFIG1_READMULTIPLE_SUPP;
1209 if (p->burst_write)
1210 config1 |= GPMC_CONFIG1_WRITEMULTIPLE_SUPP;
1211 if (p->burst_read || p->burst_write) {
1212 config1 |= GPMC_CONFIG1_PAGE_LEN(p->burst_len >> 3);
1213 config1 |= p->burst_wrap ? GPMC_CONFIG1_WRAPBURST_SUPP : 0;
1214 }
1215
1216 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, config1);
1217
1218 return 0;
1219}
1220
bc6b1e7b
DM
1221#ifdef CONFIG_OF
1222static struct of_device_id gpmc_dt_ids[] = {
1223 { .compatible = "ti,omap2420-gpmc" },
1224 { .compatible = "ti,omap2430-gpmc" },
1225 { .compatible = "ti,omap3430-gpmc" }, /* omap3430 & omap3630 */
1226 { .compatible = "ti,omap4430-gpmc" }, /* omap4430 & omap4460 & omap543x */
1227 { .compatible = "ti,am3352-gpmc" }, /* am335x devices */
1228 { }
1229};
1230MODULE_DEVICE_TABLE(of, gpmc_dt_ids);
1231
8c8a7771
JH
1232/**
1233 * gpmc_read_settings_dt - read gpmc settings from device-tree
1234 * @np: pointer to device-tree node for a gpmc child device
1235 * @p: pointer to gpmc settings structure
1236 *
1237 * Reads the GPMC settings for a GPMC child device from device-tree and
1238 * stores them in the GPMC settings structure passed. The GPMC settings
1239 * structure is initialised to zero by this function and so any
1240 * previously stored settings will be cleared.
1241 */
1242void gpmc_read_settings_dt(struct device_node *np, struct gpmc_settings *p)
1243{
1244 memset(p, 0, sizeof(struct gpmc_settings));
1245
1246 p->sync_read = of_property_read_bool(np, "gpmc,sync-read");
1247 p->sync_write = of_property_read_bool(np, "gpmc,sync-write");
1248 p->device_nand = of_property_read_bool(np, "gpmc,device-nand");
1249 of_property_read_u32(np, "gpmc,device-width", &p->device_width);
1250 of_property_read_u32(np, "gpmc,mux-add-data", &p->mux_add_data);
1251
1252 if (!of_property_read_u32(np, "gpmc,burst-length", &p->burst_len)) {
1253 p->burst_wrap = of_property_read_bool(np, "gpmc,burst-wrap");
1254 p->burst_read = of_property_read_bool(np, "gpmc,burst-read");
1255 p->burst_write = of_property_read_bool(np, "gpmc,burst-write");
1256 if (!p->burst_read && !p->burst_write)
1257 pr_warn("%s: page/burst-length set but not used!\n",
1258 __func__);
1259 }
1260
1261 if (!of_property_read_u32(np, "gpmc,wait-pin", &p->wait_pin)) {
1262 p->wait_on_read = of_property_read_bool(np,
1263 "gpmc,wait-on-read");
1264 p->wait_on_write = of_property_read_bool(np,
1265 "gpmc,wait-on-write");
1266 if (!p->wait_on_read && !p->wait_on_write)
1267 pr_warn("%s: read/write wait monitoring not enabled!\n",
1268 __func__);
1269 }
1270}
1271
bc6b1e7b
DM
1272static void __maybe_unused gpmc_read_timings_dt(struct device_node *np,
1273 struct gpmc_timings *gpmc_t)
1274{
d36b4cd4
JH
1275 struct gpmc_bool_timings *p;
1276
1277 if (!np || !gpmc_t)
1278 return;
bc6b1e7b
DM
1279
1280 memset(gpmc_t, 0, sizeof(*gpmc_t));
1281
1282 /* minimum clock period for syncronous mode */
d36b4cd4 1283 of_property_read_u32(np, "gpmc,sync-clk-ps", &gpmc_t->sync_clk);
bc6b1e7b
DM
1284
1285 /* chip select timtings */
d36b4cd4
JH
1286 of_property_read_u32(np, "gpmc,cs-on-ns", &gpmc_t->cs_on);
1287 of_property_read_u32(np, "gpmc,cs-rd-off-ns", &gpmc_t->cs_rd_off);
1288 of_property_read_u32(np, "gpmc,cs-wr-off-ns", &gpmc_t->cs_wr_off);
bc6b1e7b
DM
1289
1290 /* ADV signal timings */
d36b4cd4
JH
1291 of_property_read_u32(np, "gpmc,adv-on-ns", &gpmc_t->adv_on);
1292 of_property_read_u32(np, "gpmc,adv-rd-off-ns", &gpmc_t->adv_rd_off);
1293 of_property_read_u32(np, "gpmc,adv-wr-off-ns", &gpmc_t->adv_wr_off);
bc6b1e7b
DM
1294
1295 /* WE signal timings */
d36b4cd4
JH
1296 of_property_read_u32(np, "gpmc,we-on-ns", &gpmc_t->we_on);
1297 of_property_read_u32(np, "gpmc,we-off-ns", &gpmc_t->we_off);
bc6b1e7b
DM
1298
1299 /* OE signal timings */
d36b4cd4
JH
1300 of_property_read_u32(np, "gpmc,oe-on-ns", &gpmc_t->oe_on);
1301 of_property_read_u32(np, "gpmc,oe-off-ns", &gpmc_t->oe_off);
bc6b1e7b
DM
1302
1303 /* access and cycle timings */
d36b4cd4
JH
1304 of_property_read_u32(np, "gpmc,page-burst-access-ns",
1305 &gpmc_t->page_burst_access);
1306 of_property_read_u32(np, "gpmc,access-ns", &gpmc_t->access);
1307 of_property_read_u32(np, "gpmc,rd-cycle-ns", &gpmc_t->rd_cycle);
1308 of_property_read_u32(np, "gpmc,wr-cycle-ns", &gpmc_t->wr_cycle);
1309 of_property_read_u32(np, "gpmc,bus-turnaround-ns",
1310 &gpmc_t->bus_turnaround);
1311 of_property_read_u32(np, "gpmc,cycle2cycle-delay-ns",
1312 &gpmc_t->cycle2cycle_delay);
1313 of_property_read_u32(np, "gpmc,wait-monitoring-ns",
1314 &gpmc_t->wait_monitoring);
1315 of_property_read_u32(np, "gpmc,clk-activation-ns",
1316 &gpmc_t->clk_activation);
1317
1318 /* only applicable to OMAP3+ */
1319 of_property_read_u32(np, "gpmc,wr-access-ns", &gpmc_t->wr_access);
1320 of_property_read_u32(np, "gpmc,wr-data-mux-bus-ns",
1321 &gpmc_t->wr_data_mux_bus);
1322
1323 /* bool timing parameters */
1324 p = &gpmc_t->bool_timings;
1325
1326 p->cycle2cyclediffcsen =
1327 of_property_read_bool(np, "gpmc,cycle2cycle-diffcsen");
1328 p->cycle2cyclesamecsen =
1329 of_property_read_bool(np, "gpmc,cycle2cycle-samecsen");
1330 p->we_extra_delay = of_property_read_bool(np, "gpmc,we-extra-delay");
1331 p->oe_extra_delay = of_property_read_bool(np, "gpmc,oe-extra-delay");
1332 p->adv_extra_delay = of_property_read_bool(np, "gpmc,adv-extra-delay");
1333 p->cs_extra_delay = of_property_read_bool(np, "gpmc,cs-extra-delay");
1334 p->time_para_granularity =
1335 of_property_read_bool(np, "gpmc,time-para-granularity");
bc6b1e7b
DM
1336}
1337
1338#ifdef CONFIG_MTD_NAND
1339
1340static const char * const nand_ecc_opts[] = {
1341 [OMAP_ECC_HAMMING_CODE_DEFAULT] = "sw",
1342 [OMAP_ECC_HAMMING_CODE_HW] = "hw",
1343 [OMAP_ECC_HAMMING_CODE_HW_ROMCODE] = "hw-romcode",
1344 [OMAP_ECC_BCH4_CODE_HW] = "bch4",
1345 [OMAP_ECC_BCH8_CODE_HW] = "bch8",
1346};
1347
496c8a0b
MJ
1348static const char * const nand_xfer_types[] = {
1349 [NAND_OMAP_PREFETCH_POLLED] = "prefetch-polled",
1350 [NAND_OMAP_POLLED] = "polled",
1351 [NAND_OMAP_PREFETCH_DMA] = "prefetch-dma",
1352 [NAND_OMAP_PREFETCH_IRQ] = "prefetch-irq",
1353};
1354
bc6b1e7b
DM
1355static int gpmc_probe_nand_child(struct platform_device *pdev,
1356 struct device_node *child)
1357{
1358 u32 val;
1359 const char *s;
1360 struct gpmc_timings gpmc_t;
1361 struct omap_nand_platform_data *gpmc_nand_data;
1362
1363 if (of_property_read_u32(child, "reg", &val) < 0) {
1364 dev_err(&pdev->dev, "%s has no 'reg' property\n",
1365 child->full_name);
1366 return -ENODEV;
1367 }
1368
1369 gpmc_nand_data = devm_kzalloc(&pdev->dev, sizeof(*gpmc_nand_data),
1370 GFP_KERNEL);
1371 if (!gpmc_nand_data)
1372 return -ENOMEM;
1373
1374 gpmc_nand_data->cs = val;
1375 gpmc_nand_data->of_node = child;
1376
1377 if (!of_property_read_string(child, "ti,nand-ecc-opt", &s))
1378 for (val = 0; val < ARRAY_SIZE(nand_ecc_opts); val++)
1379 if (!strcasecmp(s, nand_ecc_opts[val])) {
1380 gpmc_nand_data->ecc_opt = val;
1381 break;
1382 }
1383
496c8a0b
MJ
1384 if (!of_property_read_string(child, "ti,nand-xfer-type", &s))
1385 for (val = 0; val < ARRAY_SIZE(nand_xfer_types); val++)
1386 if (!strcasecmp(s, nand_xfer_types[val])) {
1387 gpmc_nand_data->xfer_type = val;
1388 break;
1389 }
1390
bc6b1e7b
DM
1391 val = of_get_nand_bus_width(child);
1392 if (val == 16)
1393 gpmc_nand_data->devsize = NAND_BUSWIDTH_16;
1394
1395 gpmc_read_timings_dt(child, &gpmc_t);
1396 gpmc_nand_init(gpmc_nand_data, &gpmc_t);
1397
1398 return 0;
1399}
1400#else
1401static int gpmc_probe_nand_child(struct platform_device *pdev,
1402 struct device_node *child)
1403{
1404 return 0;
1405}
1406#endif
1407
75d3625e
EG
1408#ifdef CONFIG_MTD_ONENAND
1409static int gpmc_probe_onenand_child(struct platform_device *pdev,
1410 struct device_node *child)
1411{
1412 u32 val;
1413 struct omap_onenand_platform_data *gpmc_onenand_data;
1414
1415 if (of_property_read_u32(child, "reg", &val) < 0) {
1416 dev_err(&pdev->dev, "%s has no 'reg' property\n",
1417 child->full_name);
1418 return -ENODEV;
1419 }
1420
1421 gpmc_onenand_data = devm_kzalloc(&pdev->dev, sizeof(*gpmc_onenand_data),
1422 GFP_KERNEL);
1423 if (!gpmc_onenand_data)
1424 return -ENOMEM;
1425
1426 gpmc_onenand_data->cs = val;
1427 gpmc_onenand_data->of_node = child;
1428 gpmc_onenand_data->dma_channel = -1;
1429
1430 if (!of_property_read_u32(child, "dma-channel", &val))
1431 gpmc_onenand_data->dma_channel = val;
1432
1433 gpmc_onenand_init(gpmc_onenand_data);
1434
1435 return 0;
1436}
1437#else
1438static int gpmc_probe_onenand_child(struct platform_device *pdev,
1439 struct device_node *child)
1440{
1441 return 0;
1442}
1443#endif
1444
cdd6928c 1445/**
3af91cf7 1446 * gpmc_probe_generic_child - configures the gpmc for a child device
cdd6928c 1447 * @pdev: pointer to gpmc platform device
3af91cf7 1448 * @child: pointer to device-tree node for child device
cdd6928c 1449 *
3af91cf7 1450 * Allocates and configures a GPMC chip-select for a child device.
cdd6928c
JH
1451 * Returns 0 on success and appropriate negative error code on failure.
1452 */
3af91cf7 1453static int gpmc_probe_generic_child(struct platform_device *pdev,
cdd6928c
JH
1454 struct device_node *child)
1455{
1456 struct gpmc_settings gpmc_s;
1457 struct gpmc_timings gpmc_t;
1458 struct resource res;
1459 unsigned long base;
1460 int ret, cs;
1461
1462 if (of_property_read_u32(child, "reg", &cs) < 0) {
1463 dev_err(&pdev->dev, "%s has no 'reg' property\n",
1464 child->full_name);
1465 return -ENODEV;
1466 }
1467
1468 if (of_address_to_resource(child, 0, &res) < 0) {
1469 dev_err(&pdev->dev, "%s has malformed 'reg' property\n",
1470 child->full_name);
1471 return -ENODEV;
1472 }
1473
1474 ret = gpmc_cs_request(cs, resource_size(&res), &base);
1475 if (ret < 0) {
1476 dev_err(&pdev->dev, "cannot request GPMC CS %d\n", cs);
1477 return ret;
1478 }
1479
1480 /*
1481 * FIXME: gpmc_cs_request() will map the CS to an arbitary
1482 * location in the gpmc address space. When booting with
1483 * device-tree we want the NOR flash to be mapped to the
1484 * location specified in the device-tree blob. So remap the
1485 * CS to this location. Once DT migration is complete should
1486 * just make gpmc_cs_request() map a specific address.
1487 */
1488 ret = gpmc_cs_remap(cs, res.start);
1489 if (ret < 0) {
1490 dev_err(&pdev->dev, "cannot remap GPMC CS %d to 0x%x\n",
1491 cs, res.start);
1492 goto err;
1493 }
1494
1495 gpmc_read_settings_dt(child, &gpmc_s);
1496
1497 ret = of_property_read_u32(child, "bank-width", &gpmc_s.device_width);
1498 if (ret < 0)
1499 goto err;
1500
1501 ret = gpmc_cs_program_settings(cs, &gpmc_s);
1502 if (ret < 0)
1503 goto err;
1504
1505 gpmc_read_timings_dt(child, &gpmc_t);
1506 gpmc_cs_set_timings(cs, &gpmc_t);
1507
1508 if (of_platform_device_create(child, NULL, &pdev->dev))
1509 return 0;
1510
1511 dev_err(&pdev->dev, "failed to create gpmc child %s\n", child->name);
e8ffd6fd 1512 ret = -ENODEV;
cdd6928c
JH
1513
1514err:
1515 gpmc_cs_free(cs);
1516
1517 return ret;
1518}
1519
bc6b1e7b
DM
1520static int gpmc_probe_dt(struct platform_device *pdev)
1521{
1522 int ret;
1523 struct device_node *child;
1524 const struct of_device_id *of_id =
1525 of_match_device(gpmc_dt_ids, &pdev->dev);
1526
1527 if (!of_id)
1528 return 0;
1529
9f833156
JH
1530 ret = of_property_read_u32(pdev->dev.of_node, "gpmc,num-waitpins",
1531 &gpmc_nr_waitpins);
1532 if (ret < 0) {
1533 pr_err("%s: number of wait pins not found!\n", __func__);
1534 return ret;
1535 }
1536
f2b09f67 1537 for_each_child_of_node(pdev->dev.of_node, child) {
bc6b1e7b 1538
f2b09f67
JMC
1539 if (!child->name)
1540 continue;
cdd6928c 1541
f2b09f67
JMC
1542 if (of_node_cmp(child->name, "nand") == 0)
1543 ret = gpmc_probe_nand_child(pdev, child);
1544 else if (of_node_cmp(child->name, "onenand") == 0)
1545 ret = gpmc_probe_onenand_child(pdev, child);
1546 else if (of_node_cmp(child->name, "ethernet") == 0 ||
1547 of_node_cmp(child->name, "nor") == 0)
1548 ret = gpmc_probe_generic_child(pdev, child);
cdd6928c 1549
b327b362
JMC
1550 if (WARN(ret < 0, "%s: probing gpmc child %s failed\n",
1551 __func__, child->full_name))
5330dc16 1552 of_node_put(child);
5330dc16
JMC
1553 }
1554
bc6b1e7b
DM
1555 return 0;
1556}
1557#else
1558static int gpmc_probe_dt(struct platform_device *pdev)
1559{
1560 return 0;
1561}
1562#endif
1563
351a102d 1564static int gpmc_probe(struct platform_device *pdev)
4bbbc1ad 1565{
8119024e 1566 int rc;
6b6c32fc 1567 u32 l;
da496873 1568 struct resource *res;
4bbbc1ad 1569
da496873
AM
1570 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1571 if (res == NULL)
1572 return -ENOENT;
8d08436d 1573
da496873
AM
1574 phys_base = res->start;
1575 mem_size = resource_size(res);
fd1dc87d 1576
5857bd98
TR
1577 gpmc_base = devm_ioremap_resource(&pdev->dev, res);
1578 if (IS_ERR(gpmc_base))
1579 return PTR_ERR(gpmc_base);
da496873
AM
1580
1581 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1582 if (res == NULL)
1583 dev_warn(&pdev->dev, "Failed to get resource: irq\n");
1584 else
1585 gpmc_irq = res->start;
1586
1587 gpmc_l3_clk = clk_get(&pdev->dev, "fck");
1588 if (IS_ERR(gpmc_l3_clk)) {
1589 dev_err(&pdev->dev, "error: clk_get\n");
1590 gpmc_irq = 0;
1591 return PTR_ERR(gpmc_l3_clk);
fd1dc87d
PW
1592 }
1593
4d7cb45e 1594 clk_prepare_enable(gpmc_l3_clk);
1daa8c1d 1595
da496873
AM
1596 gpmc_dev = &pdev->dev;
1597
4bbbc1ad 1598 l = gpmc_read_reg(GPMC_REVISION);
aa8d4767
JH
1599
1600 /*
1601 * FIXME: Once device-tree migration is complete the below flags
1602 * should be populated based upon the device-tree compatible
1603 * string. For now just use the IP revision. OMAP3+ devices have
1604 * the wr_access and wr_data_mux_bus register fields. OMAP4+
1605 * devices support the addr-addr-data multiplex protocol.
1606 *
1607 * GPMC IP revisions:
1608 * - OMAP24xx = 2.0
1609 * - OMAP3xxx = 5.0
1610 * - OMAP44xx/54xx/AM335x = 6.0
1611 */
da496873
AM
1612 if (GPMC_REVISION_MAJOR(l) > 0x4)
1613 gpmc_capability = GPMC_HAS_WR_ACCESS | GPMC_HAS_WR_DATA_MUX_BUS;
aa8d4767
JH
1614 if (GPMC_REVISION_MAJOR(l) > 0x5)
1615 gpmc_capability |= GPMC_HAS_MUX_AAD;
da496873
AM
1616 dev_info(gpmc_dev, "GPMC revision %d.%d\n", GPMC_REVISION_MAJOR(l),
1617 GPMC_REVISION_MINOR(l));
1618
84b00f0e 1619 gpmc_mem_init();
db97eb7d 1620
71856843 1621 if (gpmc_setup_irq() < 0)
da496873
AM
1622 dev_warn(gpmc_dev, "gpmc_setup_irq failed\n");
1623
31d9adca
JH
1624 /* Now the GPMC is initialised, unreserve the chip-selects */
1625 gpmc_cs_map = 0;
1626
9f833156
JH
1627 if (!pdev->dev.of_node)
1628 gpmc_nr_waitpins = GPMC_NR_WAITPINS;
1629
bc6b1e7b
DM
1630 rc = gpmc_probe_dt(pdev);
1631 if (rc < 0) {
1632 clk_disable_unprepare(gpmc_l3_clk);
1633 clk_put(gpmc_l3_clk);
1634 dev_err(gpmc_dev, "failed to probe DT parameters\n");
1635 return rc;
1636 }
1637
da496873
AM
1638 return 0;
1639}
1640
351a102d 1641static int gpmc_remove(struct platform_device *pdev)
da496873
AM
1642{
1643 gpmc_free_irq();
1644 gpmc_mem_exit();
1645 gpmc_dev = NULL;
1646 return 0;
1647}
1648
1649static struct platform_driver gpmc_driver = {
1650 .probe = gpmc_probe,
351a102d 1651 .remove = gpmc_remove,
da496873
AM
1652 .driver = {
1653 .name = DEVICE_NAME,
1654 .owner = THIS_MODULE,
bc6b1e7b 1655 .of_match_table = of_match_ptr(gpmc_dt_ids),
da496873
AM
1656 },
1657};
1658
1659static __init int gpmc_init(void)
1660{
1661 return platform_driver_register(&gpmc_driver);
1662}
1663
1664static __exit void gpmc_exit(void)
1665{
1666 platform_driver_unregister(&gpmc_driver);
1667
db97eb7d 1668}
da496873 1669
b76c8b19 1670omap_postcore_initcall(gpmc_init);
da496873 1671module_exit(gpmc_exit);
db97eb7d 1672
4be48fd5
AM
1673static int __init omap_gpmc_init(void)
1674{
1675 struct omap_hwmod *oh;
1676 struct platform_device *pdev;
1677 char *oh_name = "gpmc";
1678
2f98ca89
DM
1679 /*
1680 * if the board boots up with a populated DT, do not
1681 * manually add the device from this initcall
1682 */
1683 if (of_have_populated_dt())
1684 return -ENODEV;
1685
4be48fd5
AM
1686 oh = omap_hwmod_lookup(oh_name);
1687 if (!oh) {
1688 pr_err("Could not look up %s\n", oh_name);
1689 return -ENODEV;
1690 }
1691
c1d1cd59 1692 pdev = omap_device_build(DEVICE_NAME, -1, oh, NULL, 0);
4be48fd5
AM
1693 WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
1694
1695 return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
1696}
b76c8b19 1697omap_postcore_initcall(omap_gpmc_init);
4be48fd5 1698
db97eb7d
SG
1699static irqreturn_t gpmc_handle_irq(int irq, void *dev)
1700{
6b6c32fc
AM
1701 int i;
1702 u32 regval;
1703
1704 regval = gpmc_read_reg(GPMC_IRQSTATUS);
1705
1706 if (!regval)
1707 return IRQ_NONE;
1708
1709 for (i = 0; i < GPMC_NR_IRQ; i++)
1710 if (regval & gpmc_client_irq[i].bitmask)
1711 generic_handle_irq(gpmc_client_irq[i].irq);
db97eb7d 1712
6b6c32fc 1713 gpmc_write_reg(GPMC_IRQSTATUS, regval);
db97eb7d
SG
1714
1715 return IRQ_HANDLED;
4bbbc1ad 1716}
a2d3e7ba
RN
1717
1718#ifdef CONFIG_ARCH_OMAP3
1719static struct omap3_gpmc_regs gpmc_context;
1720
b2fa3b7c 1721void omap3_gpmc_save_context(void)
a2d3e7ba
RN
1722{
1723 int i;
b2fa3b7c 1724
a2d3e7ba
RN
1725 gpmc_context.sysconfig = gpmc_read_reg(GPMC_SYSCONFIG);
1726 gpmc_context.irqenable = gpmc_read_reg(GPMC_IRQENABLE);
1727 gpmc_context.timeout_ctrl = gpmc_read_reg(GPMC_TIMEOUT_CONTROL);
1728 gpmc_context.config = gpmc_read_reg(GPMC_CONFIG);
1729 gpmc_context.prefetch_config1 = gpmc_read_reg(GPMC_PREFETCH_CONFIG1);
1730 gpmc_context.prefetch_config2 = gpmc_read_reg(GPMC_PREFETCH_CONFIG2);
1731 gpmc_context.prefetch_control = gpmc_read_reg(GPMC_PREFETCH_CONTROL);
1732 for (i = 0; i < GPMC_CS_NUM; i++) {
1733 gpmc_context.cs_context[i].is_valid = gpmc_cs_mem_enabled(i);
1734 if (gpmc_context.cs_context[i].is_valid) {
1735 gpmc_context.cs_context[i].config1 =
1736 gpmc_cs_read_reg(i, GPMC_CS_CONFIG1);
1737 gpmc_context.cs_context[i].config2 =
1738 gpmc_cs_read_reg(i, GPMC_CS_CONFIG2);
1739 gpmc_context.cs_context[i].config3 =
1740 gpmc_cs_read_reg(i, GPMC_CS_CONFIG3);
1741 gpmc_context.cs_context[i].config4 =
1742 gpmc_cs_read_reg(i, GPMC_CS_CONFIG4);
1743 gpmc_context.cs_context[i].config5 =
1744 gpmc_cs_read_reg(i, GPMC_CS_CONFIG5);
1745 gpmc_context.cs_context[i].config6 =
1746 gpmc_cs_read_reg(i, GPMC_CS_CONFIG6);
1747 gpmc_context.cs_context[i].config7 =
1748 gpmc_cs_read_reg(i, GPMC_CS_CONFIG7);
1749 }
1750 }
1751}
1752
b2fa3b7c 1753void omap3_gpmc_restore_context(void)
a2d3e7ba
RN
1754{
1755 int i;
b2fa3b7c 1756
a2d3e7ba
RN
1757 gpmc_write_reg(GPMC_SYSCONFIG, gpmc_context.sysconfig);
1758 gpmc_write_reg(GPMC_IRQENABLE, gpmc_context.irqenable);
1759 gpmc_write_reg(GPMC_TIMEOUT_CONTROL, gpmc_context.timeout_ctrl);
1760 gpmc_write_reg(GPMC_CONFIG, gpmc_context.config);
1761 gpmc_write_reg(GPMC_PREFETCH_CONFIG1, gpmc_context.prefetch_config1);
1762 gpmc_write_reg(GPMC_PREFETCH_CONFIG2, gpmc_context.prefetch_config2);
1763 gpmc_write_reg(GPMC_PREFETCH_CONTROL, gpmc_context.prefetch_control);
1764 for (i = 0; i < GPMC_CS_NUM; i++) {
1765 if (gpmc_context.cs_context[i].is_valid) {
1766 gpmc_cs_write_reg(i, GPMC_CS_CONFIG1,
1767 gpmc_context.cs_context[i].config1);
1768 gpmc_cs_write_reg(i, GPMC_CS_CONFIG2,
1769 gpmc_context.cs_context[i].config2);
1770 gpmc_cs_write_reg(i, GPMC_CS_CONFIG3,
1771 gpmc_context.cs_context[i].config3);
1772 gpmc_cs_write_reg(i, GPMC_CS_CONFIG4,
1773 gpmc_context.cs_context[i].config4);
1774 gpmc_cs_write_reg(i, GPMC_CS_CONFIG5,
1775 gpmc_context.cs_context[i].config5);
1776 gpmc_cs_write_reg(i, GPMC_CS_CONFIG6,
1777 gpmc_context.cs_context[i].config6);
1778 gpmc_cs_write_reg(i, GPMC_CS_CONFIG7,
1779 gpmc_context.cs_context[i].config7);
1780 }
1781 }
1782}
1783#endif /* CONFIG_ARCH_OMAP3 */