]> git.karo-electronics.de Git - mv-sheeva.git/blob - arch/arm/mach-s3c2440/mach-anubis.c
Merge tag 'fixes-non-critical' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[mv-sheeva.git] / arch / arm / mach-s3c2440 / mach-anubis.c
1 /* linux/arch/arm/mach-s3c2440/mach-anubis.c
2  *
3  * Copyright 2003-2009 Simtec Electronics
4  *      http://armlinux.simtec.co.uk/
5  *      Ben Dooks <ben@simtec.co.uk>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10 */
11
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/list.h>
16 #include <linux/timer.h>
17 #include <linux/init.h>
18 #include <linux/gpio.h>
19 #include <linux/serial_core.h>
20 #include <linux/platform_device.h>
21 #include <linux/ata_platform.h>
22 #include <linux/i2c.h>
23 #include <linux/io.h>
24 #include <linux/sm501.h>
25 #include <linux/sm501-regs.h>
26
27 #include <asm/mach/arch.h>
28 #include <asm/mach/map.h>
29 #include <asm/mach/irq.h>
30
31 #include <mach/anubis-map.h>
32 #include <mach/anubis-irq.h>
33 #include <mach/anubis-cpld.h>
34
35 #include <mach/hardware.h>
36 #include <asm/irq.h>
37 #include <asm/mach-types.h>
38
39 #include <plat/regs-serial.h>
40 #include <mach/regs-gpio.h>
41 #include <mach/regs-mem.h>
42 #include <mach/regs-lcd.h>
43 #include <plat/nand.h>
44 #include <plat/iic.h>
45
46 #include <linux/mtd/mtd.h>
47 #include <linux/mtd/nand.h>
48 #include <linux/mtd/nand_ecc.h>
49 #include <linux/mtd/partitions.h>
50
51 #include <net/ax88796.h>
52
53 #include <plat/clock.h>
54 #include <plat/devs.h>
55 #include <plat/cpu.h>
56 #include <plat/audio-simtec.h>
57
58 #include "common.h"
59
60 #define COPYRIGHT ", Copyright 2005-2009 Simtec Electronics"
61
62 static struct map_desc anubis_iodesc[] __initdata = {
63   /* ISA IO areas */
64
65   {
66         .virtual        = (u32)S3C24XX_VA_ISA_BYTE,
67         .pfn            = __phys_to_pfn(0x0),
68         .length         = SZ_4M,
69         .type           = MT_DEVICE,
70   }, {
71         .virtual        = (u32)S3C24XX_VA_ISA_WORD,
72         .pfn            = __phys_to_pfn(0x0),
73         .length         = SZ_4M,
74         .type           = MT_DEVICE,
75   },
76
77   /* we could possibly compress the next set down into a set of smaller tables
78    * pagetables, but that would mean using an L2 section, and it still means
79    * we cannot actually feed the same register to an LDR due to 16K spacing
80    */
81
82   /* CPLD control registers */
83
84   {
85         .virtual        = (u32)ANUBIS_VA_CTRL1,
86         .pfn            = __phys_to_pfn(ANUBIS_PA_CTRL1),
87         .length         = SZ_4K,
88         .type           = MT_DEVICE,
89   }, {
90         .virtual        = (u32)ANUBIS_VA_IDREG,
91         .pfn            = __phys_to_pfn(ANUBIS_PA_IDREG),
92         .length         = SZ_4K,
93         .type           = MT_DEVICE,
94   },
95 };
96
97 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
98 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
99 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
100
101 static struct s3c24xx_uart_clksrc anubis_serial_clocks[] = {
102         [0] = {
103                 .name           = "uclk",
104                 .divisor        = 1,
105                 .min_baud       = 0,
106                 .max_baud       = 0,
107         },
108         [1] = {
109                 .name           = "pclk",
110                 .divisor        = 1,
111                 .min_baud       = 0,
112                 .max_baud       = 0,
113         }
114 };
115
116
117 static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = {
118         [0] = {
119                 .hwport      = 0,
120                 .flags       = 0,
121                 .ucon        = UCON,
122                 .ulcon       = ULCON,
123                 .ufcon       = UFCON,
124                 .clocks      = anubis_serial_clocks,
125                 .clocks_size = ARRAY_SIZE(anubis_serial_clocks),
126         },
127         [1] = {
128                 .hwport      = 2,
129                 .flags       = 0,
130                 .ucon        = UCON,
131                 .ulcon       = ULCON,
132                 .ufcon       = UFCON,
133                 .clocks      = anubis_serial_clocks,
134                 .clocks_size = ARRAY_SIZE(anubis_serial_clocks),
135         },
136 };
137
138 /* NAND Flash on Anubis board */
139
140 static int external_map[]   = { 2 };
141 static int chip0_map[]      = { 0 };
142 static int chip1_map[]      = { 1 };
143
144 static struct mtd_partition __initdata anubis_default_nand_part[] = {
145         [0] = {
146                 .name   = "Boot Agent",
147                 .size   = SZ_16K,
148                 .offset = 0,
149         },
150         [1] = {
151                 .name   = "/boot",
152                 .size   = SZ_4M - SZ_16K,
153                 .offset = SZ_16K,
154         },
155         [2] = {
156                 .name   = "user1",
157                 .offset = SZ_4M,
158                 .size   = SZ_32M - SZ_4M,
159         },
160         [3] = {
161                 .name   = "user2",
162                 .offset = SZ_32M,
163                 .size   = MTDPART_SIZ_FULL,
164         }
165 };
166
167 static struct mtd_partition __initdata anubis_default_nand_part_large[] = {
168         [0] = {
169                 .name   = "Boot Agent",
170                 .size   = SZ_128K,
171                 .offset = 0,
172         },
173         [1] = {
174                 .name   = "/boot",
175                 .size   = SZ_4M - SZ_128K,
176                 .offset = SZ_128K,
177         },
178         [2] = {
179                 .name   = "user1",
180                 .offset = SZ_4M,
181                 .size   = SZ_32M - SZ_4M,
182         },
183         [3] = {
184                 .name   = "user2",
185                 .offset = SZ_32M,
186                 .size   = MTDPART_SIZ_FULL,
187         }
188 };
189
190 /* the Anubis has 3 selectable slots for nand-flash, the two
191  * on-board chip areas, as well as the external slot.
192  *
193  * Note, there is no current hot-plug support for the External
194  * socket.
195 */
196
197 static struct s3c2410_nand_set __initdata anubis_nand_sets[] = {
198         [1] = {
199                 .name           = "External",
200                 .nr_chips       = 1,
201                 .nr_map         = external_map,
202                 .nr_partitions  = ARRAY_SIZE(anubis_default_nand_part),
203                 .partitions     = anubis_default_nand_part,
204         },
205         [0] = {
206                 .name           = "chip0",
207                 .nr_chips       = 1,
208                 .nr_map         = chip0_map,
209                 .nr_partitions  = ARRAY_SIZE(anubis_default_nand_part),
210                 .partitions     = anubis_default_nand_part,
211         },
212         [2] = {
213                 .name           = "chip1",
214                 .nr_chips       = 1,
215                 .nr_map         = chip1_map,
216                 .nr_partitions  = ARRAY_SIZE(anubis_default_nand_part),
217                 .partitions     = anubis_default_nand_part,
218         },
219 };
220
221 static void anubis_nand_select(struct s3c2410_nand_set *set, int slot)
222 {
223         unsigned int tmp;
224
225         slot = set->nr_map[slot] & 3;
226
227         pr_debug("anubis_nand: selecting slot %d (set %p,%p)\n",
228                  slot, set, set->nr_map);
229
230         tmp = __raw_readb(ANUBIS_VA_CTRL1);
231         tmp &= ~ANUBIS_CTRL1_NANDSEL;
232         tmp |= slot;
233
234         pr_debug("anubis_nand: ctrl1 now %02x\n", tmp);
235
236         __raw_writeb(tmp, ANUBIS_VA_CTRL1);
237 }
238
239 static struct s3c2410_platform_nand __initdata anubis_nand_info = {
240         .tacls          = 25,
241         .twrph0         = 55,
242         .twrph1         = 40,
243         .nr_sets        = ARRAY_SIZE(anubis_nand_sets),
244         .sets           = anubis_nand_sets,
245         .select_chip    = anubis_nand_select,
246 };
247
248 /* IDE channels */
249
250 static struct pata_platform_info anubis_ide_platdata = {
251         .ioport_shift   = 5,
252 };
253
254 static struct resource anubis_ide0_resource[] = {
255         {
256                 .start  = S3C2410_CS3,
257                 .end    = S3C2410_CS3 + (8*32) - 1,
258                 .flags  = IORESOURCE_MEM,
259         }, {
260                 .start  = S3C2410_CS3 + (1<<26) + (6*32),
261                 .end    = S3C2410_CS3 + (1<<26) + (7*32) - 1,
262                 .flags  = IORESOURCE_MEM,
263         }, {
264                 .start  = IRQ_IDE0,
265                 .end    = IRQ_IDE0,
266                 .flags  = IORESOURCE_IRQ,
267         },
268 };
269
270 static struct platform_device anubis_device_ide0 = {
271         .name           = "pata_platform",
272         .id             = 0,
273         .num_resources  = ARRAY_SIZE(anubis_ide0_resource),
274         .resource       = anubis_ide0_resource,
275         .dev    = {
276                 .platform_data = &anubis_ide_platdata,
277                 .coherent_dma_mask = ~0,
278         },
279 };
280
281 static struct resource anubis_ide1_resource[] = {
282         {
283                 .start  = S3C2410_CS4,
284                 .end    = S3C2410_CS4 + (8*32) - 1,
285                 .flags  = IORESOURCE_MEM,
286         }, {
287                 .start  = S3C2410_CS4 + (1<<26) + (6*32),
288                 .end    = S3C2410_CS4 + (1<<26) + (7*32) - 1,
289                 .flags  = IORESOURCE_MEM,
290         }, {
291                 .start  = IRQ_IDE0,
292                 .end    = IRQ_IDE0,
293                 .flags  = IORESOURCE_IRQ,
294         },
295 };
296
297 static struct platform_device anubis_device_ide1 = {
298         .name           = "pata_platform",
299         .id             = 1,
300         .num_resources  = ARRAY_SIZE(anubis_ide1_resource),
301         .resource       = anubis_ide1_resource,
302         .dev    = {
303                 .platform_data = &anubis_ide_platdata,
304                 .coherent_dma_mask = ~0,
305         },
306 };
307
308 /* Asix AX88796 10/100 ethernet controller */
309
310 static struct ax_plat_data anubis_asix_platdata = {
311         .flags          = AXFLG_MAC_FROMDEV,
312         .wordlength     = 2,
313         .dcr_val        = 0x48,
314         .rcr_val        = 0x40,
315 };
316
317 static struct resource anubis_asix_resource[] = {
318         [0] = {
319                 .start = S3C2410_CS5,
320                 .end   = S3C2410_CS5 + (0x20 * 0x20) -1,
321                 .flags = IORESOURCE_MEM
322         },
323         [1] = {
324                 .start = IRQ_ASIX,
325                 .end   = IRQ_ASIX,
326                 .flags = IORESOURCE_IRQ
327         }
328 };
329
330 static struct platform_device anubis_device_asix = {
331         .name           = "ax88796",
332         .id             = 0,
333         .num_resources  = ARRAY_SIZE(anubis_asix_resource),
334         .resource       = anubis_asix_resource,
335         .dev            = {
336                 .platform_data = &anubis_asix_platdata,
337         }
338 };
339
340 /* SM501 */
341
342 static struct resource anubis_sm501_resource[] = {
343         [0] = {
344                 .start  = S3C2410_CS2,
345                 .end    = S3C2410_CS2 + SZ_8M,
346                 .flags  = IORESOURCE_MEM,
347         },
348         [1] = {
349                 .start  = S3C2410_CS2 + SZ_64M - SZ_2M,
350                 .end    = S3C2410_CS2 + SZ_64M - 1,
351                 .flags  = IORESOURCE_MEM,
352         },
353         [2] = {
354                 .start  = IRQ_EINT0,
355                 .end    = IRQ_EINT0,
356                 .flags  = IORESOURCE_IRQ,
357         },
358 };
359
360 static struct sm501_initdata anubis_sm501_initdata = {
361         .gpio_high      = {
362                 .set    = 0x3F000000,           /* 24bit panel */
363                 .mask   = 0x0,
364         },
365         .misc_timing    = {
366                 .set    = 0x010100,             /* SDRAM timing */
367                 .mask   = 0x1F1F00,
368         },
369         .misc_control   = {
370                 .set    = SM501_MISC_PNL_24BIT,
371                 .mask   = 0,
372         },
373
374         .devices        = SM501_USE_GPIO,
375
376         /* set the SDRAM and bus clocks */
377         .mclk           = 72 * MHZ,
378         .m1xclk         = 144 * MHZ,
379 };
380
381 static struct sm501_platdata_gpio_i2c anubis_sm501_gpio_i2c[] = {
382         [0] = {
383                 .bus_num        = 1,
384                 .pin_scl        = 44,
385                 .pin_sda        = 45,
386         },
387         [1] = {
388                 .bus_num        = 2,
389                 .pin_scl        = 40,
390                 .pin_sda        = 41,
391         },
392 };
393
394 static struct sm501_platdata anubis_sm501_platdata = {
395         .init           = &anubis_sm501_initdata,
396         .gpio_base      = -1,
397         .gpio_i2c       = anubis_sm501_gpio_i2c,
398         .gpio_i2c_nr    = ARRAY_SIZE(anubis_sm501_gpio_i2c),
399 };
400
401 static struct platform_device anubis_device_sm501 = {
402         .name           = "sm501",
403         .id             = 0,
404         .num_resources  = ARRAY_SIZE(anubis_sm501_resource),
405         .resource       = anubis_sm501_resource,
406         .dev            = {
407                 .platform_data = &anubis_sm501_platdata,
408         },
409 };
410
411 /* Standard Anubis devices */
412
413 static struct platform_device *anubis_devices[] __initdata = {
414         &s3c_device_ohci,
415         &s3c_device_wdt,
416         &s3c_device_adc,
417         &s3c_device_i2c0,
418         &s3c_device_rtc,
419         &s3c_device_nand,
420         &anubis_device_ide0,
421         &anubis_device_ide1,
422         &anubis_device_asix,
423         &anubis_device_sm501,
424 };
425
426 static struct clk *anubis_clocks[] __initdata = {
427         &s3c24xx_dclk0,
428         &s3c24xx_dclk1,
429         &s3c24xx_clkout0,
430         &s3c24xx_clkout1,
431         &s3c24xx_uclk,
432 };
433
434 /* I2C devices. */
435
436 static struct i2c_board_info anubis_i2c_devs[] __initdata = {
437         {
438                 I2C_BOARD_INFO("tps65011", 0x48),
439                 .irq    = IRQ_EINT20,
440         }
441 };
442
443 /* Audio setup */
444 static struct s3c24xx_audio_simtec_pdata __initdata anubis_audio = {
445         .have_mic       = 1,
446         .have_lout      = 1,
447         .output_cdclk   = 1,
448         .use_mpllin     = 1,
449         .amp_gpio       = S3C2410_GPB(2),
450         .amp_gain[0]    = S3C2410_GPD(10),
451         .amp_gain[1]    = S3C2410_GPD(11),
452 };
453
454 static void __init anubis_map_io(void)
455 {
456         /* initialise the clocks */
457
458         s3c24xx_dclk0.parent = &clk_upll;
459         s3c24xx_dclk0.rate   = 12*1000*1000;
460
461         s3c24xx_dclk1.parent = &clk_upll;
462         s3c24xx_dclk1.rate   = 24*1000*1000;
463
464         s3c24xx_clkout0.parent  = &s3c24xx_dclk0;
465         s3c24xx_clkout1.parent  = &s3c24xx_dclk1;
466
467         s3c24xx_uclk.parent  = &s3c24xx_clkout1;
468
469         s3c24xx_register_clocks(anubis_clocks, ARRAY_SIZE(anubis_clocks));
470
471         s3c24xx_init_io(anubis_iodesc, ARRAY_SIZE(anubis_iodesc));
472         s3c24xx_init_clocks(0);
473         s3c24xx_init_uarts(anubis_uartcfgs, ARRAY_SIZE(anubis_uartcfgs));
474
475         /* check for the newer revision boards with large page nand */
476
477         if ((__raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK) >= 4) {
478                 printk(KERN_INFO "ANUBIS-B detected (revision %d)\n",
479                        __raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK);
480                 anubis_nand_sets[0].partitions = anubis_default_nand_part_large;
481                 anubis_nand_sets[0].nr_partitions = ARRAY_SIZE(anubis_default_nand_part_large);
482         } else {
483                 /* ensure that the GPIO is setup */
484                 s3c2410_gpio_setpin(S3C2410_GPA(0), 1);
485         }
486 }
487
488 static void __init anubis_init(void)
489 {
490         s3c_i2c0_set_platdata(NULL);
491         s3c_nand_set_platdata(&anubis_nand_info);
492         simtec_audio_add(NULL, false, &anubis_audio);
493
494         platform_add_devices(anubis_devices, ARRAY_SIZE(anubis_devices));
495
496         i2c_register_board_info(0, anubis_i2c_devs,
497                                 ARRAY_SIZE(anubis_i2c_devs));
498 }
499
500
501 MACHINE_START(ANUBIS, "Simtec-Anubis")
502         /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
503         .atag_offset    = 0x100,
504         .map_io         = anubis_map_io,
505         .init_machine   = anubis_init,
506         .init_irq       = s3c24xx_init_irq,
507         .timer          = &s3c24xx_timer,
508         .restart        = s3c2440_restart,
509 MACHINE_END