]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/gpmc.c
ARM: OMAP: abstract debug card setup (smc, leds)
[linux-2.6-omap-h63xx.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  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/err.h>
15 #include <linux/clk.h>
16 #include <linux/ioport.h>
17 #include <linux/spinlock.h>
18
19 #include <asm/io.h>
20 #include <asm/mach-types.h>
21 #include <asm/arch/gpmc.h>
22
23 #undef DEBUG
24
25 #define GPMC_BASE               0x6800a000
26 #define GPMC_REVISION           0x00
27 #define GPMC_SYSCONFIG          0x10
28 #define GPMC_SYSSTATUS          0x14
29 #define GPMC_IRQSTATUS          0x18
30 #define GPMC_IRQENABLE          0x1c
31 #define GPMC_TIMEOUT_CONTROL    0x40
32 #define GPMC_ERR_ADDRESS        0x44
33 #define GPMC_ERR_TYPE           0x48
34 #define GPMC_CONFIG             0x50
35 #define GPMC_STATUS             0x54
36 #define GPMC_PREFETCH_CONFIG1   0x1e0
37 #define GPMC_PREFETCH_CONFIG2   0x1e4
38 #define GPMC_PREFETCH_CONTROL   0x1e8
39 #define GPMC_PREFETCH_STATUS    0x1f0
40 #define GPMC_ECC_CONFIG         0x1f4
41 #define GPMC_ECC_CONTROL        0x1f8
42 #define GPMC_ECC_SIZE_CONFIG    0x1fc
43
44 #define GPMC_CS0                0x60
45 #define GPMC_CS_SIZE            0x30
46
47 #define GPMC_CS_NUM             8
48 #define GPMC_MEM_START          0x00000000
49 #define GPMC_MEM_END            0x3FFFFFFF
50 #define BOOT_ROM_SPACE          0x100000        /* 1MB */
51
52 #define GPMC_CHUNK_SHIFT        24              /* 16 MB */
53 #define GPMC_SECTION_SHIFT      28              /* 128 MB */
54
55 static struct resource  gpmc_mem_root;
56 static struct resource  gpmc_cs_mem[GPMC_CS_NUM];
57 static spinlock_t       gpmc_mem_lock = SPIN_LOCK_UNLOCKED;
58 static unsigned         gpmc_cs_map;
59
60 static void __iomem *gpmc_base =
61         (void __iomem *) IO_ADDRESS(GPMC_BASE);
62 static void __iomem *gpmc_cs_base =
63         (void __iomem *) IO_ADDRESS(GPMC_BASE) + GPMC_CS0;
64
65 static struct clk *gpmc_l3_clk;
66
67 static void gpmc_write_reg(int idx, u32 val)
68 {
69         __raw_writel(val, gpmc_base + idx);
70 }
71
72 static u32 gpmc_read_reg(int idx)
73 {
74         return __raw_readl(gpmc_base + idx);
75 }
76
77 void gpmc_cs_write_reg(int cs, int idx, u32 val)
78 {
79         void __iomem *reg_addr;
80
81         reg_addr = gpmc_cs_base + (cs * GPMC_CS_SIZE) + idx;
82         __raw_writel(val, reg_addr);
83 }
84
85 u32 gpmc_cs_read_reg(int cs, int idx)
86 {
87         return __raw_readl(gpmc_cs_base + (cs * GPMC_CS_SIZE) + idx);
88 }
89
90 /* TODO: Add support for gpmc_fck to clock framework and use it */
91 unsigned long gpmc_get_fclk_period(void)
92 {
93         /* In picoseconds */
94         return 1000000000 / ((clk_get_rate(gpmc_l3_clk)) / 1000);
95 }
96
97 unsigned int gpmc_ns_to_ticks(unsigned int time_ns)
98 {
99         unsigned long tick_ps;
100
101         /* Calculate in picosecs to yield more exact results */
102         tick_ps = gpmc_get_fclk_period();
103
104         return (time_ns * 1000 + tick_ps - 1) / tick_ps;
105 }
106
107 #ifdef DEBUG
108 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
109                                int time, const char *name)
110 #else
111 static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
112                                int time)
113 #endif
114 {
115         u32 l;
116         int ticks, mask, nr_bits;
117
118         if (time == 0)
119                 ticks = 0;
120         else
121                 ticks = gpmc_ns_to_ticks(time);
122         nr_bits = end_bit - st_bit + 1;
123         if (ticks >= 1 << nr_bits) {
124 #ifdef DEBUG
125                 printk(KERN_INFO "GPMC CS%d: %-10s* %3d ns, %3d ticks >= %d\n",
126                                 cs, name, time, ticks, 1 << nr_bits);
127 #endif
128                 return -1;
129         }
130
131         mask = (1 << nr_bits) - 1;
132         l = gpmc_cs_read_reg(cs, reg);
133 #ifdef DEBUG
134         printk(KERN_INFO
135                 "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
136                cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000,
137                         (l >> st_bit) & mask, time);
138 #endif
139         l &= ~(mask << st_bit);
140         l |= ticks << st_bit;
141         gpmc_cs_write_reg(cs, reg, l);
142
143         return 0;
144 }
145
146 #ifdef DEBUG
147 #define GPMC_SET_ONE(reg, st, end, field) \
148         if (set_gpmc_timing_reg(cs, (reg), (st), (end),         \
149                         t->field, #field) < 0)                  \
150                 return -1
151 #else
152 #define GPMC_SET_ONE(reg, st, end, field) \
153         if (set_gpmc_timing_reg(cs, (reg), (st), (end), t->field) < 0) \
154                 return -1
155 #endif
156
157 int gpmc_cs_calc_divider(int cs, unsigned int sync_clk)
158 {
159         int div;
160         u32 l;
161
162         l = sync_clk * 1000 + (gpmc_get_fclk_period() - 1);
163         div = l / gpmc_get_fclk_period();
164         if (div > 4)
165                 return -1;
166         if (div <= 0)
167                 div = 1;
168
169         return div;
170 }
171
172 int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t)
173 {
174         int div;
175         u32 l;
176
177         div = gpmc_cs_calc_divider(cs, t->sync_clk);
178         if (div < 0)
179                 return -1;
180
181         GPMC_SET_ONE(GPMC_CS_CONFIG2,  0,  3, cs_on);
182         GPMC_SET_ONE(GPMC_CS_CONFIG2,  8, 12, cs_rd_off);
183         GPMC_SET_ONE(GPMC_CS_CONFIG2, 16, 20, cs_wr_off);
184
185         GPMC_SET_ONE(GPMC_CS_CONFIG3,  0,  3, adv_on);
186         GPMC_SET_ONE(GPMC_CS_CONFIG3,  8, 12, adv_rd_off);
187         GPMC_SET_ONE(GPMC_CS_CONFIG3, 16, 20, adv_wr_off);
188
189         GPMC_SET_ONE(GPMC_CS_CONFIG4,  0,  3, oe_on);
190         GPMC_SET_ONE(GPMC_CS_CONFIG4,  8, 12, oe_off);
191         GPMC_SET_ONE(GPMC_CS_CONFIG4, 16, 19, we_on);
192         GPMC_SET_ONE(GPMC_CS_CONFIG4, 24, 28, we_off);
193
194         GPMC_SET_ONE(GPMC_CS_CONFIG5,  0,  4, rd_cycle);
195         GPMC_SET_ONE(GPMC_CS_CONFIG5,  8, 12, wr_cycle);
196         GPMC_SET_ONE(GPMC_CS_CONFIG5, 16, 20, access);
197
198         GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access);
199
200         /* caller is expected to have initialized CONFIG1 to cover
201          * at least sync vs async
202          */
203         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
204         if (l & (GPMC_CONFIG1_READTYPE_SYNC | GPMC_CONFIG1_WRITETYPE_SYNC)) {
205 #ifdef DEBUG
206                 printk(KERN_INFO "GPMC CS%d CLK period is %lu ns (div %d)\n",
207                                 cs, (div * gpmc_get_fclk_period()) / 1000, div);
208 #endif
209                 l &= ~0x03;
210                 l |= (div - 1);
211                 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, l);
212         }
213
214         return 0;
215 }
216
217 static void gpmc_cs_enable_mem(int cs, u32 base, u32 size)
218 {
219         u32 l;
220         u32 mask;
221
222         mask = (1 << GPMC_SECTION_SHIFT) - size;
223         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
224         l &= ~0x3f;
225         l = (base >> GPMC_CHUNK_SHIFT) & 0x3f;
226         l &= ~(0x0f << 8);
227         l |= ((mask >> GPMC_CHUNK_SHIFT) & 0x0f) << 8;
228         l |= 1 << 6;            /* CSVALID */
229         gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
230 }
231
232 static void gpmc_cs_disable_mem(int cs)
233 {
234         u32 l;
235
236         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
237         l &= ~(1 << 6);         /* CSVALID */
238         gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l);
239 }
240
241 static void gpmc_cs_get_memconf(int cs, u32 *base, u32 *size)
242 {
243         u32 l;
244         u32 mask;
245
246         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
247         *base = (l & 0x3f) << GPMC_CHUNK_SHIFT;
248         mask = (l >> 8) & 0x0f;
249         *size = (1 << GPMC_SECTION_SHIFT) - (mask << GPMC_CHUNK_SHIFT);
250 }
251
252 static int gpmc_cs_mem_enabled(int cs)
253 {
254         u32 l;
255
256         l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7);
257         return l & (1 << 6);
258 }
259
260 static void gpmc_cs_set_reserved(int cs, int reserved)
261 {
262         gpmc_cs_map &= ~(1 << cs);
263         gpmc_cs_map |= (reserved ? 1 : 0) << cs;
264 }
265
266 static int gpmc_cs_reserved(int cs)
267 {
268         return gpmc_cs_map & (1 << cs);
269 }
270
271 static unsigned long gpmc_mem_align(unsigned long size)
272 {
273         int order;
274
275         size = (size - 1) >> (GPMC_CHUNK_SHIFT - 1);
276         order = GPMC_CHUNK_SHIFT - 1;
277         do {
278                 size >>= 1;
279                 order++;
280         } while (size);
281         size = 1 << order;
282         return size;
283 }
284
285 static int gpmc_cs_insert_mem(int cs, unsigned long base, unsigned long size)
286 {
287         struct resource *res = &gpmc_cs_mem[cs];
288         int r;
289
290         size = gpmc_mem_align(size);
291         spin_lock(&gpmc_mem_lock);
292         res->start = base;
293         res->end = base + size - 1;
294         r = request_resource(&gpmc_mem_root, res);
295         spin_unlock(&gpmc_mem_lock);
296
297         return r;
298 }
299
300 int gpmc_cs_request(int cs, unsigned long size, unsigned long *base)
301 {
302         struct resource *res = &gpmc_cs_mem[cs];
303         int r = -1;
304
305         if (cs > GPMC_CS_NUM)
306                 return -ENODEV;
307
308         size = gpmc_mem_align(size);
309         if (size > (1 << GPMC_SECTION_SHIFT))
310                 return -ENOMEM;
311
312         spin_lock(&gpmc_mem_lock);
313         if (gpmc_cs_reserved(cs)) {
314                 r = -EBUSY;
315                 goto out;
316         }
317         if (gpmc_cs_mem_enabled(cs))
318                 r = adjust_resource(res, res->start & ~(size - 1), size);
319         if (r < 0)
320                 r = allocate_resource(&gpmc_mem_root, res, size, 0, ~0,
321                                       size, NULL, NULL);
322         if (r < 0)
323                 goto out;
324
325         gpmc_cs_enable_mem(cs, res->start, res->end - res->start + 1);
326         *base = res->start;
327         gpmc_cs_set_reserved(cs, 1);
328 out:
329         spin_unlock(&gpmc_mem_lock);
330         return r;
331 }
332
333 void gpmc_cs_free(int cs)
334 {
335         spin_lock(&gpmc_mem_lock);
336         if (cs >= GPMC_CS_NUM || !gpmc_cs_reserved(cs)) {
337                 printk(KERN_ERR "Trying to free non-reserved GPMC CS%d\n", cs);
338                 BUG();
339                 spin_unlock(&gpmc_mem_lock);
340                 return;
341         }
342         gpmc_cs_disable_mem(cs);
343         release_resource(&gpmc_cs_mem[cs]);
344         gpmc_cs_set_reserved(cs, 0);
345         spin_unlock(&gpmc_mem_lock);
346 }
347
348 void __init gpmc_mem_init(void)
349 {
350         int cs;
351         unsigned long boot_rom_space = 0;
352
353         /* never allocate the first page, to facilitate bug detection;
354          * even if we didn't boot from ROM.
355          */
356         boot_rom_space = BOOT_ROM_SPACE;
357         /* In apollon the CS0 is mapped as 0x0000 0000 */
358         if (machine_is_omap_apollon())
359                 boot_rom_space = 0;
360         gpmc_mem_root.start = GPMC_MEM_START + boot_rom_space;
361         gpmc_mem_root.end = GPMC_MEM_END;
362
363         /* Reserve all regions that has been set up by bootloader */
364         for (cs = 0; cs < GPMC_CS_NUM; cs++) {
365                 u32 base, size;
366
367                 if (!gpmc_cs_mem_enabled(cs))
368                         continue;
369                 gpmc_cs_get_memconf(cs, &base, &size);
370                 if (gpmc_cs_insert_mem(cs, base, size) < 0)
371                         BUG();
372         }
373 }
374
375 void __init gpmc_init(void)
376 {
377         u32 l;
378
379         gpmc_l3_clk = clk_get(NULL, "core_l3_ck");
380         BUG_ON(IS_ERR(gpmc_l3_clk));
381
382         l = gpmc_read_reg(GPMC_REVISION);
383         printk(KERN_INFO "GPMC revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
384         /* Set smart idle mode and automatic L3 clock gating */
385         l = gpmc_read_reg(GPMC_SYSCONFIG);
386         l &= 0x03 << 3;
387         l |= (0x02 << 3) | (1 << 0);
388         gpmc_write_reg(GPMC_SYSCONFIG, l);
389
390         gpmc_mem_init();
391 }