2 * GPMC support functions
4 * Copyright (C) 2005-2006 Nokia Corporation
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.
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>
20 #include <asm/mach-types.h>
21 #include <asm/arch/gpmc.h>
25 #ifdef CONFIG_ARCH_OMAP2420
26 #define GPMC_BASE 0x6800a000
29 #ifdef CONFIG_ARCH_OMAP2430
30 #define GPMC_BASE 0x6E000000
33 #define GPMC_REVISION 0x00
34 #define GPMC_SYSCONFIG 0x10
35 #define GPMC_SYSSTATUS 0x14
36 #define GPMC_IRQSTATUS 0x18
37 #define GPMC_IRQENABLE 0x1c
38 #define GPMC_TIMEOUT_CONTROL 0x40
39 #define GPMC_ERR_ADDRESS 0x44
40 #define GPMC_ERR_TYPE 0x48
41 #define GPMC_CONFIG 0x50
42 #define GPMC_STATUS 0x54
43 #define GPMC_PREFETCH_CONFIG1 0x1e0
44 #define GPMC_PREFETCH_CONFIG2 0x1e4
45 #define GPMC_PREFETCH_CONTROL 0x1e8
46 #define GPMC_PREFETCH_STATUS 0x1f0
47 #define GPMC_ECC_CONFIG 0x1f4
48 #define GPMC_ECC_CONTROL 0x1f8
49 #define GPMC_ECC_SIZE_CONFIG 0x1fc
52 #define GPMC_CS_SIZE 0x30
55 #define GPMC_MEM_START 0x00000000
56 #define GPMC_MEM_END 0x3FFFFFFF
57 #define BOOT_ROM_SPACE 0x100000 /* 1MB */
59 #define GPMC_CHUNK_SHIFT 24 /* 16 MB */
60 #define GPMC_SECTION_SHIFT 28 /* 128 MB */
62 static struct resource gpmc_mem_root
;
63 static struct resource gpmc_cs_mem
[GPMC_CS_NUM
];
64 static DEFINE_SPINLOCK(gpmc_mem_lock
);
65 static unsigned gpmc_cs_map
;
67 static void __iomem
*gpmc_base
=
68 (void __iomem
*) IO_ADDRESS(GPMC_BASE
);
69 static void __iomem
*gpmc_cs_base
=
70 (void __iomem
*) IO_ADDRESS(GPMC_BASE
) + GPMC_CS0
;
72 static struct clk
*gpmc_l3_clk
;
74 static void gpmc_write_reg(int idx
, u32 val
)
76 __raw_writel(val
, gpmc_base
+ idx
);
79 static u32
gpmc_read_reg(int idx
)
81 return __raw_readl(gpmc_base
+ idx
);
84 void gpmc_cs_write_reg(int cs
, int idx
, u32 val
)
86 void __iomem
*reg_addr
;
88 reg_addr
= gpmc_cs_base
+ (cs
* GPMC_CS_SIZE
) + idx
;
89 __raw_writel(val
, reg_addr
);
92 u32
gpmc_cs_read_reg(int cs
, int idx
)
94 return __raw_readl(gpmc_cs_base
+ (cs
* GPMC_CS_SIZE
) + idx
);
97 /* TODO: Add support for gpmc_fck to clock framework and use it */
98 unsigned long gpmc_get_fclk_period(void)
101 return 1000000000 / ((clk_get_rate(gpmc_l3_clk
)) / 1000);
104 unsigned int gpmc_ns_to_ticks(unsigned int time_ns
)
106 unsigned long tick_ps
;
108 /* Calculate in picosecs to yield more exact results */
109 tick_ps
= gpmc_get_fclk_period();
111 return (time_ns
* 1000 + tick_ps
- 1) / tick_ps
;
114 unsigned int gpmc_round_ns_to_ticks(unsigned int time_ns
)
116 unsigned long ticks
= gpmc_ns_to_ticks(time_ns
);
118 return ticks
* gpmc_get_fclk_period() / 1000;
122 static int set_gpmc_timing_reg(int cs
, int reg
, int st_bit
, int end_bit
,
123 int time
, const char *name
)
125 static int set_gpmc_timing_reg(int cs
, int reg
, int st_bit
, int end_bit
,
130 int ticks
, mask
, nr_bits
;
135 ticks
= gpmc_ns_to_ticks(time
);
136 nr_bits
= end_bit
- st_bit
+ 1;
137 if (ticks
>= 1 << nr_bits
) {
139 printk(KERN_INFO
"GPMC CS%d: %-10s* %3d ns, %3d ticks >= %d\n",
140 cs
, name
, time
, ticks
, 1 << nr_bits
);
145 mask
= (1 << nr_bits
) - 1;
146 l
= gpmc_cs_read_reg(cs
, reg
);
149 "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
150 cs
, name
, ticks
, gpmc_get_fclk_period() * ticks
/ 1000,
151 (l
>> st_bit
) & mask
, time
);
153 l
&= ~(mask
<< st_bit
);
154 l
|= ticks
<< st_bit
;
155 gpmc_cs_write_reg(cs
, reg
, l
);
161 #define GPMC_SET_ONE(reg, st, end, field) \
162 if (set_gpmc_timing_reg(cs, (reg), (st), (end), \
163 t->field, #field) < 0) \
166 #define GPMC_SET_ONE(reg, st, end, field) \
167 if (set_gpmc_timing_reg(cs, (reg), (st), (end), t->field) < 0) \
171 int gpmc_cs_calc_divider(int cs
, unsigned int sync_clk
)
176 l
= sync_clk
* 1000 + (gpmc_get_fclk_period() - 1);
177 div
= l
/ gpmc_get_fclk_period();
186 int gpmc_cs_set_timings(int cs
, const struct gpmc_timings
*t
)
191 div
= gpmc_cs_calc_divider(cs
, t
->sync_clk
);
195 GPMC_SET_ONE(GPMC_CS_CONFIG2
, 0, 3, cs_on
);
196 GPMC_SET_ONE(GPMC_CS_CONFIG2
, 8, 12, cs_rd_off
);
197 GPMC_SET_ONE(GPMC_CS_CONFIG2
, 16, 20, cs_wr_off
);
199 GPMC_SET_ONE(GPMC_CS_CONFIG3
, 0, 3, adv_on
);
200 GPMC_SET_ONE(GPMC_CS_CONFIG3
, 8, 12, adv_rd_off
);
201 GPMC_SET_ONE(GPMC_CS_CONFIG3
, 16, 20, adv_wr_off
);
203 GPMC_SET_ONE(GPMC_CS_CONFIG4
, 0, 3, oe_on
);
204 GPMC_SET_ONE(GPMC_CS_CONFIG4
, 8, 12, oe_off
);
205 GPMC_SET_ONE(GPMC_CS_CONFIG4
, 16, 19, we_on
);
206 GPMC_SET_ONE(GPMC_CS_CONFIG4
, 24, 28, we_off
);
208 GPMC_SET_ONE(GPMC_CS_CONFIG5
, 0, 4, rd_cycle
);
209 GPMC_SET_ONE(GPMC_CS_CONFIG5
, 8, 12, wr_cycle
);
210 GPMC_SET_ONE(GPMC_CS_CONFIG5
, 16, 20, access
);
212 GPMC_SET_ONE(GPMC_CS_CONFIG5
, 24, 27, page_burst_access
);
214 /* caller is expected to have initialized CONFIG1 to cover
215 * at least sync vs async
217 l
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG1
);
218 if (l
& (GPMC_CONFIG1_READTYPE_SYNC
| GPMC_CONFIG1_WRITETYPE_SYNC
)) {
220 printk(KERN_INFO
"GPMC CS%d CLK period is %lu ns (div %d)\n",
221 cs
, (div
* gpmc_get_fclk_period()) / 1000, div
);
225 gpmc_cs_write_reg(cs
, GPMC_CS_CONFIG1
, l
);
231 static void gpmc_cs_enable_mem(int cs
, u32 base
, u32 size
)
236 mask
= (1 << GPMC_SECTION_SHIFT
) - size
;
237 l
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG7
);
239 l
= (base
>> GPMC_CHUNK_SHIFT
) & 0x3f;
241 l
|= ((mask
>> GPMC_CHUNK_SHIFT
) & 0x0f) << 8;
242 l
|= 1 << 6; /* CSVALID */
243 gpmc_cs_write_reg(cs
, GPMC_CS_CONFIG7
, l
);
246 static void gpmc_cs_disable_mem(int cs
)
250 l
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG7
);
251 l
&= ~(1 << 6); /* CSVALID */
252 gpmc_cs_write_reg(cs
, GPMC_CS_CONFIG7
, l
);
255 static void gpmc_cs_get_memconf(int cs
, u32
*base
, u32
*size
)
260 l
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG7
);
261 *base
= (l
& 0x3f) << GPMC_CHUNK_SHIFT
;
262 mask
= (l
>> 8) & 0x0f;
263 *size
= (1 << GPMC_SECTION_SHIFT
) - (mask
<< GPMC_CHUNK_SHIFT
);
266 static int gpmc_cs_mem_enabled(int cs
)
270 l
= gpmc_cs_read_reg(cs
, GPMC_CS_CONFIG7
);
274 int gpmc_cs_set_reserved(int cs
, int reserved
)
276 if (cs
> GPMC_CS_NUM
)
279 gpmc_cs_map
&= ~(1 << cs
);
280 gpmc_cs_map
|= (reserved
? 1 : 0) << cs
;
285 int gpmc_cs_reserved(int cs
)
287 if (cs
> GPMC_CS_NUM
)
290 return gpmc_cs_map
& (1 << cs
);
293 static unsigned long gpmc_mem_align(unsigned long size
)
297 size
= (size
- 1) >> (GPMC_CHUNK_SHIFT
- 1);
298 order
= GPMC_CHUNK_SHIFT
- 1;
307 static int gpmc_cs_insert_mem(int cs
, unsigned long base
, unsigned long size
)
309 struct resource
*res
= &gpmc_cs_mem
[cs
];
312 size
= gpmc_mem_align(size
);
313 spin_lock(&gpmc_mem_lock
);
315 res
->end
= base
+ size
- 1;
316 r
= request_resource(&gpmc_mem_root
, res
);
317 spin_unlock(&gpmc_mem_lock
);
322 int gpmc_cs_request(int cs
, unsigned long size
, unsigned long *base
)
324 struct resource
*res
= &gpmc_cs_mem
[cs
];
327 if (cs
> GPMC_CS_NUM
)
330 size
= gpmc_mem_align(size
);
331 if (size
> (1 << GPMC_SECTION_SHIFT
))
334 spin_lock(&gpmc_mem_lock
);
335 if (gpmc_cs_reserved(cs
)) {
339 if (gpmc_cs_mem_enabled(cs
))
340 r
= adjust_resource(res
, res
->start
& ~(size
- 1), size
);
342 r
= allocate_resource(&gpmc_mem_root
, res
, size
, 0, ~0,
347 gpmc_cs_enable_mem(cs
, res
->start
, res
->end
- res
->start
+ 1);
349 gpmc_cs_set_reserved(cs
, 1);
351 spin_unlock(&gpmc_mem_lock
);
355 void gpmc_cs_free(int cs
)
357 spin_lock(&gpmc_mem_lock
);
358 if (cs
>= GPMC_CS_NUM
|| !gpmc_cs_reserved(cs
)) {
359 printk(KERN_ERR
"Trying to free non-reserved GPMC CS%d\n", cs
);
361 spin_unlock(&gpmc_mem_lock
);
364 gpmc_cs_disable_mem(cs
);
365 release_resource(&gpmc_cs_mem
[cs
]);
366 gpmc_cs_set_reserved(cs
, 0);
367 spin_unlock(&gpmc_mem_lock
);
370 void __init
gpmc_mem_init(void)
373 unsigned long boot_rom_space
= 0;
375 /* never allocate the first page, to facilitate bug detection;
376 * even if we didn't boot from ROM.
378 boot_rom_space
= BOOT_ROM_SPACE
;
379 /* In apollon the CS0 is mapped as 0x0000 0000 */
380 if (machine_is_omap_apollon())
382 gpmc_mem_root
.start
= GPMC_MEM_START
+ boot_rom_space
;
383 gpmc_mem_root
.end
= GPMC_MEM_END
;
385 /* Reserve all regions that has been set up by bootloader */
386 for (cs
= 0; cs
< GPMC_CS_NUM
; cs
++) {
389 if (!gpmc_cs_mem_enabled(cs
))
391 gpmc_cs_get_memconf(cs
, &base
, &size
);
392 if (gpmc_cs_insert_mem(cs
, base
, size
) < 0)
397 void __init
gpmc_init(void)
401 gpmc_l3_clk
= clk_get(NULL
, "core_l3_ck");
402 BUG_ON(IS_ERR(gpmc_l3_clk
));
404 l
= gpmc_read_reg(GPMC_REVISION
);
405 printk(KERN_INFO
"GPMC revision %d.%d\n", (l
>> 4) & 0x0f, l
& 0x0f);
406 /* Set smart idle mode and automatic L3 clock gating */
407 l
= gpmc_read_reg(GPMC_SYSCONFIG
);
409 l
|= (0x02 << 3) | (1 << 0);
410 gpmc_write_reg(GPMC_SYSCONFIG
, l
);