Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / arch / arm / mach-omap2 / gpmc.c
1 /*
2  * GPMC support functions
3  *
4  * Copyright (C) 2005-2006 Nokia Corporation
5  *
6  * Author: Juha Yrjola
7  *
8  * Copyright (C) 2009 Texas Instruments
9  * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
10  *
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  */
15 #undef DEBUG
16
17 #include <linux/irq.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/err.h>
21 #include <linux/clk.h>
22 #include <linux/ioport.h>
23 #include <linux/spinlock.h>
24 #include <linux/io.h>
25 #include <linux/module.h>
26 #include <linux/interrupt.h>
27
28 #include <asm/mach-types.h>
29 #include <plat/gpmc.h>
30
31 #include <plat/sdrc.h>
32
33 /* GPMC register offsets */
34 #define GPMC_REVISION           0x00
35 #define GPMC_SYSCONFIG          0x10
36 #define GPMC_SYSSTATUS          0x14
37 #define GPMC_IRQSTATUS          0x18
38 #define GPMC_IRQENABLE          0x1c
39 #define GPMC_TIMEOUT_CONTROL    0x40
40 #define GPMC_ERR_ADDRESS        0x44
41 #define GPMC_ERR_TYPE           0x48
42 #define GPMC_CONFIG             0x50
43 #define GPMC_STATUS             0x54
44 #define GPMC_PREFETCH_CONFIG1   0x1e0
45 #define GPMC_PREFETCH_CONFIG2   0x1e4
46 #define GPMC_PREFETCH_CONTROL   0x1ec
47 #define GPMC_PREFETCH_STATUS    0x1f0
48 #define GPMC_ECC_CONFIG         0x1f4
49 #define GPMC_ECC_CONTROL        0x1f8
50 #define GPMC_ECC_SIZE_CONFIG    0x1fc
51 #define GPMC_ECC1_RESULT        0x200
52
53 #define GPMC_CS0_OFFSET         0x60
54 #define GPMC_CS_SIZE            0x30
55
56 #define GPMC_MEM_START          0x00000000
57 #define GPMC_MEM_END            0x3FFFFFFF
58 #define BOOT_ROM_SPACE          0x100000        /* 1MB */
59
60 #define GPMC_CHUNK_SHIFT        24              /* 16 MB */
61 #define GPMC_SECTION_SHIFT      28              /* 128 MB */
62
63 #define CS_NUM_SHIFT            24
64 #define ENABLE_PREFETCH         (0x1 << 7)
65 #define DMA_MPU_MODE            2
66
67 /* Structure to save gpmc cs context */
68 struct gpmc_cs_config {
69         u32 config1;
70         u32 config2;
71         u32 config3;
72         u32 config4;
73         u32 config5;
74         u32 config6;
75         u32 config7;
76         int is_valid;
77 };
78
79 /*
80  * Structure to save/restore gpmc context
81  * to support core off on OMAP3
82  */
83 struct omap3_gpmc_regs {
84         u32 sysconfig;
85         u32 irqenable;
86         u32 timeout_ctrl;
87         u32 config;
88         u32 prefetch_config1;
89         u32 prefetch_config2;
90         u32 prefetch_control;
91         struct gpmc_cs_config cs_context[GPMC_CS_NUM];
92 };
93
94 static struct resource  gpmc_mem_root;
95 static struct resource  gpmc_cs_mem[GPMC_CS_NUM];
96 static DEFINE_SPINLOCK(gpmc_mem_lock);
97 static unsigned int gpmc_cs_map;        /* flag for cs which are initialized */
98 static int gpmc_ecc_used = -EINVAL;     /* cs using ecc engine */
99
100 static void __iomem *gpmc_base;
101
102 static struct clk *gpmc_l3_clk;
103
104 static irqreturn_t gpmc_handle_irq(int irq, void *dev);
105
106 static void gpmc_write_reg(int idx, u32 val)
107 {
108         __raw_writel(val, gpmc_base + idx);
109 }
110
111 static u32 gpmc_read_reg(int idx)
112 {
113         return __raw_readl(gpmc_base + idx);
114 }
115
116 static void gpmc_cs_write_byte(int cs, int idx, u8 val)
117 {
118         void __iomem *reg_addr;
119
120         reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
121         __raw_writeb(val, reg_addr);
122 }
123
124 static u8 gpmc_cs_read_byte(int cs, int idx)
125 {
126         void __iomem *reg_addr;
127
128         reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
129         return __raw_readb(reg_addr);
130 }
131
132 void gpmc_cs_write_reg(int cs, int idx, u32 val)
133 {
134         void __iomem *reg_addr;
135
136         reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
137         __raw_writel(val, reg_addr);
138 }
139
140 u32 gpmc_cs_read_reg(int cs, int idx)
141 {
142         void __iomem *reg_addr;
143
144         reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx;
145         return __raw_readl(reg_addr);
146 }
147
148 /* TODO: Add support for gpmc_fck to clock framework and use it */
149 unsigned long gpmc_get_fclk_period(void)
150 {
151         unsigned long rate = clk_get_rate(gpmc_l3_clk);
152
153         if (rate == 0) {
154                 printk(KERN_WARNING "gpmc_l3_clk not enabled\n");
155                 return 0;
156         }
157
158         rate /= 1000;
159         rate = 1000000000 / rate;       /* In picoseconds */
160
161         return rate;
162 }
163
164 unsigned int gpmc_ns_to_ticks(unsigned int time_ns)
165 {
166         unsigned long tick_ps;
167
168         /* Calculate in picosecs to yield more exact results */
169         tick_ps = gpmc_get_fclk_period();
170
171         return (time_ns * 1000 + tick_ps - 1) / tick_ps;
172 }
173
174 unsigned int gpmc_ps_to_ticks(unsigned int time_ps)
175 {
176         unsigned long tick_ps;
177
178         /* Calculate in picosecs to yield more exact results */
179         tick_ps = gpmc_get_fclk_period();
180
181         return (time_ps + tick_ps - 1) / tick_ps;
182 }
183
184 unsigned int gpmc_ticks_to_ns(unsigned int ticks)
185 {
186         return ticks * gpmc_get_fclk_period() / 1000;
187 }
188
189 unsigned int gpmc_round_ns_to_ticks(unsigned int time_ns)
190 {
191         unsigned long ticks = gpmc_ns_to_ticks(time_ns);
192
193         return ticks * gpmc_get_fclk_period() / 1000;
194 }
195
196 #ifdef DEBUG
197 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
198                                int time, const char *name)
199 #else
200 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
201                                int time)
202 #endif
203 {
204         u32 l;
205         int ticks, mask, nr_bits;
206
207         if (time == 0)
208                 ticks = 0;
209         else
210                 ticks = gpmc_ns_to_ticks(time);
211         nr_bits = end_bit - st_bit + 1;
212         if (ticks >= 1 << nr_bits) {
213 #ifdef DEBUG
214                 printk(KERN_INFO "GPMC CS%d: %-10s* %3d ns, %3d ticks >= %d\n",
215                                 cs, name, time, ticks, 1 << nr_bits);
216 #endif
217                 return -1;
218         }
219
220         mask = (1 << nr_bits) - 1;
221         l = gpmc_cs_read_reg(cs, reg);
222 #ifdef DEBUG
223         printk(KERN_INFO
224                 "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
225                cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000,
226                         (l >> st_bit) & mask, time);
227 #endif
228         l &= ~(mask << st_bit);
229         l |= ticks << st_bit;
230         gpmc_cs_write_reg(cs, reg, l);
231
232         return 0;
233 }
234
235 #ifdef DEBUG
236 #define GPMC_SET_ONE(reg, st, end, field) \
237         if (set_gpmc_timing_reg(cs, (reg), (st), (end),         \
238                         t->field, #field) < 0)                  \
239                 return -1
240 #else
241 #define GPMC_SET_ONE(reg, st, end, field) \
242         if (set_gpmc_timing_reg(cs, (reg), (st), (end), t->field) < 0) \
243                 return -1
244 #endif
245
246 int gpmc_cs_calc_divider(int cs, unsigned int sync_clk)
247 {
248         int div;
249         u32 l;
250
251         l = sync_clk + (gpmc_get_fclk_period() - 1);
252         div = l / gpmc_get_fclk_period();
253         if (div > 4)
254                 return -1;
255         if (div <= 0)
256                 div = 1;
257
258         return div;
259 }
260
261 int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t)
262 {
263         int div;
264         u32 l;
265
266         div = gpmc_cs_calc_divider(cs, t->sync_clk);
267         if (div < 0)
268                 return -1;
269
270         GPMC_SET_ONE(GPMC_CS_CONFIG2,  0,  3, cs_on);
271         GPMC_SET_ONE(GPMC_CS_CONFIG2,  8, 12, cs_rd_off);
272         GPMC_SET_ONE(GPMC_CS_CONFIG2, 16, 20, cs_wr_off);
273
274         GPMC_SET_ONE(GPMC_CS_CONFIG3,  0,  3, adv_on);
275         GPMC_SET_ONE(GPMC_CS_CONFIG3,  8, 12, adv_rd_off);
276         GPMC_SET_ONE(GPMC_CS_CONFIG3, 16, 20, adv_wr_off);
277
278         GPMC_SET_ONE(GPMC_CS_CONFIG4,  0,  3, oe_on);
279         GPMC_SET_ONE(GPMC_CS_CONFIG4,  8, 12, oe_off);
280         GPMC_SET_ONE(GPMC_CS_CONFIG4, 16, 19, we_on);
281         GPMC_SET_ONE(GPMC_CS_CONFIG4, 24, 28, we_off);
282
283         GPMC_SET_ONE(GPMC_CS_CONFIG5,  0,  4, rd_cycle);
284         GPMC_SET_ONE(GPMC_CS_CONFIG5,  8, 12, wr_cycle);
285         GPMC_SET_ONE(GPMC_CS_CONFIG5, 16, 20, access);
286
287         GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access);
288
289         if (cpu_is_omap34xx()) {
290                 GPMC_SET_ONE(GPMC_CS_CONFIG6, 16, 19, wr_data_mux_bus);
291                 GPMC_SET_ONE(GPMC_CS_CONFIG6, 24, 28, wr_access);
292         }
293
294         /* caller is expected to have initialized CONFIG1 to cover
295          * at least sync vs async
296          */
297         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
298         if (l & (GPMC_CONFIG1_READTYPE_SYNC | GPMC_CONFIG1_WRITETYPE_SYNC)) {
299 #ifdef DEBUG
300                 printk(KERN_INFO "GPMC CS%d CLK period is %lu ns (div %d)\n",
301                                 cs, (div * gpmc_get_fclk_period()) / 1000, div);
302 #endif
303                 l &= ~0x03;
304                 l |= (div - 1);
305                 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, l);
306         }
307
308         return 0;
309 }
310
311 static void gpmc_cs_enable_mem(int cs, u32 base, u32 size)
312 {
313         u32 l;
314         u32 mask;
315
316         mask = (1 << GPMC_SECTION_SHIFT) - size;
317         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
318         l &= ~0x3f;
319         l = (base >> GPMC_CHUNK_SHIFT) & 0x3f;
320         l &= ~(0x0f << 8);
321         l |= ((mask >> GPMC_CHUNK_SHIFT) & 0x0f) << 8;
322         l |= GPMC_CONFIG7_CSVALID;
323         gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
324 }
325
326 static void gpmc_cs_disable_mem(int cs)
327 {
328         u32 l;
329
330         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
331         l &= ~GPMC_CONFIG7_CSVALID;
332         gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
333 }
334
335 static void gpmc_cs_get_memconf(int cs, u32 *base, u32 *size)
336 {
337         u32 l;
338         u32 mask;
339
340         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
341         *base = (l & 0x3f) << GPMC_CHUNK_SHIFT;
342         mask = (l >> 8) & 0x0f;
343         *size = (1 << GPMC_SECTION_SHIFT) - (mask << GPMC_CHUNK_SHIFT);
344 }
345
346 static int gpmc_cs_mem_enabled(int cs)
347 {
348         u32 l;
349
350         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
351         return l & GPMC_CONFIG7_CSVALID;
352 }
353
354 int gpmc_cs_set_reserved(int cs, int reserved)
355 {
356         if (cs > GPMC_CS_NUM)
357                 return -ENODEV;
358
359         gpmc_cs_map &= ~(1 << cs);
360         gpmc_cs_map |= (reserved ? 1 : 0) << cs;
361
362         return 0;
363 }
364
365 int gpmc_cs_reserved(int cs)
366 {
367         if (cs > GPMC_CS_NUM)
368                 return -ENODEV;
369
370         return gpmc_cs_map & (1 << cs);
371 }
372
373 static unsigned long gpmc_mem_align(unsigned long size)
374 {
375         int order;
376
377         size = (size - 1) >> (GPMC_CHUNK_SHIFT - 1);
378         order = GPMC_CHUNK_SHIFT - 1;
379         do {
380                 size >>= 1;
381                 order++;
382         } while (size);
383         size = 1 << order;
384         return size;
385 }
386
387 static int gpmc_cs_insert_mem(int cs, unsigned long base, unsigned long size)
388 {
389         struct resource *res = &gpmc_cs_mem[cs];
390         int r;
391
392         size = gpmc_mem_align(size);
393         spin_lock(&gpmc_mem_lock);
394         res->start = base;
395         res->end = base + size - 1;
396         r = request_resource(&gpmc_mem_root, res);
397         spin_unlock(&gpmc_mem_lock);
398
399         return r;
400 }
401
402 int gpmc_cs_request(int cs, unsigned long size, unsigned long *base)
403 {
404         struct resource *res = &gpmc_cs_mem[cs];
405         int r = -1;
406
407         if (cs > GPMC_CS_NUM)
408                 return -ENODEV;
409
410         size = gpmc_mem_align(size);
411         if (size > (1 << GPMC_SECTION_SHIFT))
412                 return -ENOMEM;
413
414         spin_lock(&gpmc_mem_lock);
415         if (gpmc_cs_reserved(cs)) {
416                 r = -EBUSY;
417                 goto out;
418         }
419         if (gpmc_cs_mem_enabled(cs))
420                 r = adjust_resource(res, res->start & ~(size - 1), size);
421         if (r < 0)
422                 r = allocate_resource(&gpmc_mem_root, res, size, 0, ~0,
423                                       size, NULL, NULL);
424         if (r < 0)
425                 goto out;
426
427         gpmc_cs_enable_mem(cs, res->start, resource_size(res));
428         *base = res->start;
429         gpmc_cs_set_reserved(cs, 1);
430 out:
431         spin_unlock(&gpmc_mem_lock);
432         return r;
433 }
434 EXPORT_SYMBOL(gpmc_cs_request);
435
436 void gpmc_cs_free(int cs)
437 {
438         spin_lock(&gpmc_mem_lock);
439         if (cs >= GPMC_CS_NUM || cs < 0 || !gpmc_cs_reserved(cs)) {
440                 printk(KERN_ERR "Trying to free non-reserved GPMC CS%d\n", cs);
441                 BUG();
442                 spin_unlock(&gpmc_mem_lock);
443                 return;
444         }
445         gpmc_cs_disable_mem(cs);
446         release_resource(&gpmc_cs_mem[cs]);
447         gpmc_cs_set_reserved(cs, 0);
448         spin_unlock(&gpmc_mem_lock);
449 }
450 EXPORT_SYMBOL(gpmc_cs_free);
451
452 /**
453  * gpmc_read_status - read access request to get the different gpmc status
454  * @cmd: command type
455  * @return status
456  */
457 int gpmc_read_status(int cmd)
458 {
459         int     status = -EINVAL;
460         u32     regval = 0;
461
462         switch (cmd) {
463         case GPMC_GET_IRQ_STATUS:
464                 status = gpmc_read_reg(GPMC_IRQSTATUS);
465                 break;
466
467         case GPMC_PREFETCH_FIFO_CNT:
468                 regval = gpmc_read_reg(GPMC_PREFETCH_STATUS);
469                 status = GPMC_PREFETCH_STATUS_FIFO_CNT(regval);
470                 break;
471
472         case GPMC_PREFETCH_COUNT:
473                 regval = gpmc_read_reg(GPMC_PREFETCH_STATUS);
474                 status = GPMC_PREFETCH_STATUS_COUNT(regval);
475                 break;
476
477         case GPMC_STATUS_BUFFER:
478                 regval = gpmc_read_reg(GPMC_STATUS);
479                 /* 1 : buffer is available to write */
480                 status = regval & GPMC_STATUS_BUFF_EMPTY;
481                 break;
482
483         case GPMC_STATUS_WAIT:
484                 regval = gpmc_read_reg(GPMC_STATUS);
485                 status = regval & 0x100;
486                 break;
487
488         default:
489                 printk(KERN_ERR "gpmc_read_status: Not supported\n");
490         }
491         return status;
492 }
493 EXPORT_SYMBOL(gpmc_read_status);
494
495 /**
496  * gpmc_cs_configure - write request to configure gpmc
497  * @cs: chip select number
498  * @cmd: command type
499  * @wval: value to write
500  * @return status of the operation
501  */
502 int gpmc_cs_configure(int cs, int cmd, int wval)
503 {
504         int err = 0;
505         u32 regval = 0;
506
507         switch (cmd) {
508         case GPMC_ENABLE_IRQ:
509                 gpmc_write_reg(GPMC_IRQENABLE, wval);
510                 break;
511
512         case GPMC_SET_IRQ_STATUS:
513                 gpmc_write_reg(GPMC_IRQSTATUS, wval);
514                 break;
515
516         case GPMC_CONFIG_WP:
517                 regval = gpmc_read_reg(GPMC_CONFIG);
518                 if (wval)
519                         regval &= ~GPMC_CONFIG_WRITEPROTECT; /* WP is ON */
520                 else
521                         regval |= GPMC_CONFIG_WRITEPROTECT;  /* WP is OFF */
522                 gpmc_write_reg(GPMC_CONFIG, regval);
523                 break;
524
525         case GPMC_CONFIG_RDY_BSY:
526                 regval  = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
527                 if (wval)
528                         regval |= WR_RD_PIN_MONITORING;
529                 else
530                         regval &= ~WR_RD_PIN_MONITORING;
531                 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval);
532                 break;
533
534         case GPMC_CONFIG_DEV_SIZE:
535                 regval  = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
536
537                 /* clear 2 target bits */
538                 regval &= ~GPMC_CONFIG1_DEVICESIZE(3);
539
540                 /* set the proper value */
541                 regval |= GPMC_CONFIG1_DEVICESIZE(wval);
542
543                 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval);
544                 break;
545
546         case GPMC_CONFIG_DEV_TYPE:
547                 regval  = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
548                 regval |= GPMC_CONFIG1_DEVICETYPE(wval);
549                 if (wval == GPMC_DEVICETYPE_NOR)
550                         regval |= GPMC_CONFIG1_MUXADDDATA;
551                 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval);
552                 break;
553
554         default:
555                 printk(KERN_ERR "gpmc_configure_cs: Not supported\n");
556                 err = -EINVAL;
557         }
558
559         return err;
560 }
561 EXPORT_SYMBOL(gpmc_cs_configure);
562
563 /**
564  * gpmc_nand_read - nand specific read access request
565  * @cs: chip select number
566  * @cmd: command type
567  */
568 int gpmc_nand_read(int cs, int cmd)
569 {
570         int rval = -EINVAL;
571
572         switch (cmd) {
573         case GPMC_NAND_DATA:
574                 rval = gpmc_cs_read_byte(cs, GPMC_CS_NAND_DATA);
575                 break;
576
577         default:
578                 printk(KERN_ERR "gpmc_read_nand_ctrl: Not supported\n");
579         }
580         return rval;
581 }
582 EXPORT_SYMBOL(gpmc_nand_read);
583
584 /**
585  * gpmc_nand_write - nand specific write request
586  * @cs: chip select number
587  * @cmd: command type
588  * @wval: value to write
589  */
590 int gpmc_nand_write(int cs, int cmd, int wval)
591 {
592         int err = 0;
593
594         switch (cmd) {
595         case GPMC_NAND_COMMAND:
596                 gpmc_cs_write_byte(cs, GPMC_CS_NAND_COMMAND, wval);
597                 break;
598
599         case GPMC_NAND_ADDRESS:
600                 gpmc_cs_write_byte(cs, GPMC_CS_NAND_ADDRESS, wval);
601                 break;
602
603         case GPMC_NAND_DATA:
604                 gpmc_cs_write_byte(cs, GPMC_CS_NAND_DATA, wval);
605
606         default:
607                 printk(KERN_ERR "gpmc_write_nand_ctrl: Not supported\n");
608                 err = -EINVAL;
609         }
610         return err;
611 }
612 EXPORT_SYMBOL(gpmc_nand_write);
613
614
615
616 /**
617  * gpmc_prefetch_enable - configures and starts prefetch transfer
618  * @cs: cs (chip select) number
619  * @fifo_th: fifo threshold to be used for read/ write
620  * @dma_mode: dma mode enable (1) or disable (0)
621  * @u32_count: number of bytes to be transferred
622  * @is_write: prefetch read(0) or write post(1) mode
623  */
624 int gpmc_prefetch_enable(int cs, int fifo_th, int dma_mode,
625                                 unsigned int u32_count, int is_write)
626 {
627
628         if (fifo_th > PREFETCH_FIFOTHRESHOLD_MAX) {
629                 pr_err("gpmc: fifo threshold is not supported\n");
630                 return -1;
631         } else if (!(gpmc_read_reg(GPMC_PREFETCH_CONTROL))) {
632                 /* Set the amount of bytes to be prefetched */
633                 gpmc_write_reg(GPMC_PREFETCH_CONFIG2, u32_count);
634
635                 /* Set dma/mpu mode, the prefetch read / post write and
636                  * enable the engine. Set which cs is has requested for.
637                  */
638                 gpmc_write_reg(GPMC_PREFETCH_CONFIG1, ((cs << CS_NUM_SHIFT) |
639                                         PREFETCH_FIFOTHRESHOLD(fifo_th) |
640                                         ENABLE_PREFETCH |
641                                         (dma_mode << DMA_MPU_MODE) |
642                                         (0x1 & is_write)));
643
644                 /*  Start the prefetch engine */
645                 gpmc_write_reg(GPMC_PREFETCH_CONTROL, 0x1);
646         } else {
647                 return -EBUSY;
648         }
649
650         return 0;
651 }
652 EXPORT_SYMBOL(gpmc_prefetch_enable);
653
654 /**
655  * gpmc_prefetch_reset - disables and stops the prefetch engine
656  */
657 int gpmc_prefetch_reset(int cs)
658 {
659         u32 config1;
660
661         /* check if the same module/cs is trying to reset */
662         config1 = gpmc_read_reg(GPMC_PREFETCH_CONFIG1);
663         if (((config1 >> CS_NUM_SHIFT) & 0x7) != cs)
664                 return -EINVAL;
665
666         /* Stop the PFPW engine */
667         gpmc_write_reg(GPMC_PREFETCH_CONTROL, 0x0);
668
669         /* Reset/disable the PFPW engine */
670         gpmc_write_reg(GPMC_PREFETCH_CONFIG1, 0x0);
671
672         return 0;
673 }
674 EXPORT_SYMBOL(gpmc_prefetch_reset);
675
676 static void __init gpmc_mem_init(void)
677 {
678         int cs;
679         unsigned long boot_rom_space = 0;
680
681         /* never allocate the first page, to facilitate bug detection;
682          * even if we didn't boot from ROM.
683          */
684         boot_rom_space = BOOT_ROM_SPACE;
685         /* In apollon the CS0 is mapped as 0x0000 0000 */
686         if (machine_is_omap_apollon())
687                 boot_rom_space = 0;
688         gpmc_mem_root.start = GPMC_MEM_START + boot_rom_space;
689         gpmc_mem_root.end = GPMC_MEM_END;
690
691         /* Reserve all regions that has been set up by bootloader */
692         for (cs = 0; cs < GPMC_CS_NUM; cs++) {
693                 u32 base, size;
694
695                 if (!gpmc_cs_mem_enabled(cs))
696                         continue;
697                 gpmc_cs_get_memconf(cs, &base, &size);
698                 if (gpmc_cs_insert_mem(cs, base, size) < 0)
699                         BUG();
700         }
701 }
702
703 static int __init gpmc_init(void)
704 {
705         u32 l, irq;
706         int cs, ret = -EINVAL;
707         int gpmc_irq;
708         char *ck = NULL;
709
710         if (cpu_is_omap24xx()) {
711                 ck = "core_l3_ck";
712                 if (cpu_is_omap2420())
713                         l = OMAP2420_GPMC_BASE;
714                 else
715                         l = OMAP34XX_GPMC_BASE;
716                 gpmc_irq = INT_34XX_GPMC_IRQ;
717         } else if (cpu_is_omap34xx()) {
718                 ck = "gpmc_fck";
719                 l = OMAP34XX_GPMC_BASE;
720                 gpmc_irq = INT_34XX_GPMC_IRQ;
721         } else if (cpu_is_omap44xx()) {
722                 ck = "gpmc_ck";
723                 l = OMAP44XX_GPMC_BASE;
724                 gpmc_irq = OMAP44XX_IRQ_GPMC;
725         }
726
727         if (WARN_ON(!ck))
728                 return ret;
729
730         gpmc_l3_clk = clk_get(NULL, ck);
731         if (IS_ERR(gpmc_l3_clk)) {
732                 printk(KERN_ERR "Could not get GPMC clock %s\n", ck);
733                 BUG();
734         }
735
736         gpmc_base = ioremap(l, SZ_4K);
737         if (!gpmc_base) {
738                 clk_put(gpmc_l3_clk);
739                 printk(KERN_ERR "Could not get GPMC register memory\n");
740                 BUG();
741         }
742
743         clk_enable(gpmc_l3_clk);
744
745         l = gpmc_read_reg(GPMC_REVISION);
746         printk(KERN_INFO "GPMC revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
747         /* Set smart idle mode and automatic L3 clock gating */
748         l = gpmc_read_reg(GPMC_SYSCONFIG);
749         l &= 0x03 << 3;
750         l |= (0x02 << 3) | (1 << 0);
751         gpmc_write_reg(GPMC_SYSCONFIG, l);
752         gpmc_mem_init();
753
754         /* initalize the irq_chained */
755         irq = OMAP_GPMC_IRQ_BASE;
756         for (cs = 0; cs < GPMC_CS_NUM; cs++) {
757                 irq_set_chip_and_handler(irq, &dummy_irq_chip,
758                                                 handle_simple_irq);
759                 set_irq_flags(irq, IRQF_VALID);
760                 irq++;
761         }
762
763         ret = request_irq(gpmc_irq,
764                         gpmc_handle_irq, IRQF_SHARED, "gpmc", gpmc_base);
765         if (ret)
766                 pr_err("gpmc: irq-%d could not claim: err %d\n",
767                                                 gpmc_irq, ret);
768         return ret;
769 }
770 postcore_initcall(gpmc_init);
771
772 static irqreturn_t gpmc_handle_irq(int irq, void *dev)
773 {
774         u8 cs;
775
776         /* check cs to invoke the irq */
777         cs = ((gpmc_read_reg(GPMC_PREFETCH_CONFIG1)) >> CS_NUM_SHIFT) & 0x7;
778         if (OMAP_GPMC_IRQ_BASE+cs <= OMAP_GPMC_IRQ_END)
779                 generic_handle_irq(OMAP_GPMC_IRQ_BASE+cs);
780
781         return IRQ_HANDLED;
782 }
783
784 #ifdef CONFIG_ARCH_OMAP3
785 static struct omap3_gpmc_regs gpmc_context;
786
787 void omap3_gpmc_save_context(void)
788 {
789         int i;
790
791         gpmc_context.sysconfig = gpmc_read_reg(GPMC_SYSCONFIG);
792         gpmc_context.irqenable = gpmc_read_reg(GPMC_IRQENABLE);
793         gpmc_context.timeout_ctrl = gpmc_read_reg(GPMC_TIMEOUT_CONTROL);
794         gpmc_context.config = gpmc_read_reg(GPMC_CONFIG);
795         gpmc_context.prefetch_config1 = gpmc_read_reg(GPMC_PREFETCH_CONFIG1);
796         gpmc_context.prefetch_config2 = gpmc_read_reg(GPMC_PREFETCH_CONFIG2);
797         gpmc_context.prefetch_control = gpmc_read_reg(GPMC_PREFETCH_CONTROL);
798         for (i = 0; i < GPMC_CS_NUM; i++) {
799                 gpmc_context.cs_context[i].is_valid = gpmc_cs_mem_enabled(i);
800                 if (gpmc_context.cs_context[i].is_valid) {
801                         gpmc_context.cs_context[i].config1 =
802                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG1);
803                         gpmc_context.cs_context[i].config2 =
804                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG2);
805                         gpmc_context.cs_context[i].config3 =
806                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG3);
807                         gpmc_context.cs_context[i].config4 =
808                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG4);
809                         gpmc_context.cs_context[i].config5 =
810                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG5);
811                         gpmc_context.cs_context[i].config6 =
812                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG6);
813                         gpmc_context.cs_context[i].config7 =
814                                 gpmc_cs_read_reg(i, GPMC_CS_CONFIG7);
815                 }
816         }
817 }
818
819 void omap3_gpmc_restore_context(void)
820 {
821         int i;
822
823         gpmc_write_reg(GPMC_SYSCONFIG, gpmc_context.sysconfig);
824         gpmc_write_reg(GPMC_IRQENABLE, gpmc_context.irqenable);
825         gpmc_write_reg(GPMC_TIMEOUT_CONTROL, gpmc_context.timeout_ctrl);
826         gpmc_write_reg(GPMC_CONFIG, gpmc_context.config);
827         gpmc_write_reg(GPMC_PREFETCH_CONFIG1, gpmc_context.prefetch_config1);
828         gpmc_write_reg(GPMC_PREFETCH_CONFIG2, gpmc_context.prefetch_config2);
829         gpmc_write_reg(GPMC_PREFETCH_CONTROL, gpmc_context.prefetch_control);
830         for (i = 0; i < GPMC_CS_NUM; i++) {
831                 if (gpmc_context.cs_context[i].is_valid) {
832                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG1,
833                                 gpmc_context.cs_context[i].config1);
834                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG2,
835                                 gpmc_context.cs_context[i].config2);
836                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG3,
837                                 gpmc_context.cs_context[i].config3);
838                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG4,
839                                 gpmc_context.cs_context[i].config4);
840                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG5,
841                                 gpmc_context.cs_context[i].config5);
842                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG6,
843                                 gpmc_context.cs_context[i].config6);
844                         gpmc_cs_write_reg(i, GPMC_CS_CONFIG7,
845                                 gpmc_context.cs_context[i].config7);
846                 }
847         }
848 }
849 #endif /* CONFIG_ARCH_OMAP3 */
850
851 /**
852  * gpmc_enable_hwecc - enable hardware ecc functionality
853  * @cs: chip select number
854  * @mode: read/write mode
855  * @dev_width: device bus width(1 for x16, 0 for x8)
856  * @ecc_size: bytes for which ECC will be generated
857  */
858 int gpmc_enable_hwecc(int cs, int mode, int dev_width, int ecc_size)
859 {
860         unsigned int val;
861
862         /* check if ecc module is in used */
863         if (gpmc_ecc_used != -EINVAL)
864                 return -EINVAL;
865
866         gpmc_ecc_used = cs;
867
868         /* clear ecc and enable bits */
869         val = ((0x00000001<<8) | 0x00000001);
870         gpmc_write_reg(GPMC_ECC_CONTROL, val);
871
872         /* program ecc and result sizes */
873         val = ((((ecc_size >> 1) - 1) << 22) | (0x0000000F));
874         gpmc_write_reg(GPMC_ECC_SIZE_CONFIG, val);
875
876         switch (mode) {
877         case GPMC_ECC_READ:
878                 gpmc_write_reg(GPMC_ECC_CONTROL, 0x101);
879                 break;
880         case GPMC_ECC_READSYN:
881                  gpmc_write_reg(GPMC_ECC_CONTROL, 0x100);
882                 break;
883         case GPMC_ECC_WRITE:
884                 gpmc_write_reg(GPMC_ECC_CONTROL, 0x101);
885                 break;
886         default:
887                 printk(KERN_INFO "Error: Unrecognized Mode[%d]!\n", mode);
888                 break;
889         }
890
891         /* (ECC 16 or 8 bit col) | ( CS  )  | ECC Enable */
892         val = (dev_width << 7) | (cs << 1) | (0x1);
893         gpmc_write_reg(GPMC_ECC_CONFIG, val);
894         return 0;
895 }
896
897 /**
898  * gpmc_calculate_ecc - generate non-inverted ecc bytes
899  * @cs: chip select number
900  * @dat: data pointer over which ecc is computed
901  * @ecc_code: ecc code buffer
902  *
903  * Using non-inverted ECC is considered ugly since writing a blank
904  * page (padding) will clear the ECC bytes. This is not a problem as long
905  * no one is trying to write data on the seemingly unused page. Reading
906  * an erased page will produce an ECC mismatch between generated and read
907  * ECC bytes that has to be dealt with separately.
908  */
909 int gpmc_calculate_ecc(int cs, const u_char *dat, u_char *ecc_code)
910 {
911         unsigned int val = 0x0;
912
913         if (gpmc_ecc_used != cs)
914                 return -EINVAL;
915
916         /* read ecc result */
917         val = gpmc_read_reg(GPMC_ECC1_RESULT);
918         *ecc_code++ = val;          /* P128e, ..., P1e */
919         *ecc_code++ = val >> 16;    /* P128o, ..., P1o */
920         /* P2048o, P1024o, P512o, P256o, P2048e, P1024e, P512e, P256e */
921         *ecc_code++ = ((val >> 8) & 0x0f) | ((val >> 20) & 0xf0);
922
923         gpmc_ecc_used = -EINVAL;
924         return 0;
925 }