1 /* linux/arch/arm/mach-s3c2440/mach-anubis.c
3 * Copyright (c) 2003-2005,2008 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
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.
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>
24 #include <linux/sm501.h>
25 #include <linux/sm501-regs.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/map.h>
29 #include <asm/mach/irq.h>
31 #include <mach/anubis-map.h>
32 #include <mach/anubis-irq.h>
33 #include <mach/anubis-cpld.h>
35 #include <mach/hardware.h>
37 #include <asm/mach-types.h>
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>
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>
51 #include <net/ax88796.h>
53 #include <plat/clock.h>
54 #include <plat/devs.h>
57 #define COPYRIGHT ", (c) 2005 Simtec Electronics"
59 static struct map_desc anubis_iodesc
[] __initdata
= {
63 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
64 .pfn
= __phys_to_pfn(0x0),
68 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
69 .pfn
= __phys_to_pfn(0x0),
74 /* we could possibly compress the next set down into a set of smaller tables
75 * pagetables, but that would mean using an L2 section, and it still means
76 * we cannot actually feed the same register to an LDR due to 16K spacing
79 /* CPLD control registers */
82 .virtual = (u32
)ANUBIS_VA_CTRL1
,
83 .pfn
= __phys_to_pfn(ANUBIS_PA_CTRL1
),
87 .virtual = (u32
)ANUBIS_VA_IDREG
,
88 .pfn
= __phys_to_pfn(ANUBIS_PA_IDREG
),
94 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
95 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
96 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
98 static struct s3c24xx_uart_clksrc anubis_serial_clocks
[] = {
114 static struct s3c2410_uartcfg anubis_uartcfgs
[] __initdata
= {
121 .clocks
= anubis_serial_clocks
,
122 .clocks_size
= ARRAY_SIZE(anubis_serial_clocks
),
130 .clocks
= anubis_serial_clocks
,
131 .clocks_size
= ARRAY_SIZE(anubis_serial_clocks
),
135 /* NAND Flash on Anubis board */
137 static int external_map
[] = { 2 };
138 static int chip0_map
[] = { 0 };
139 static int chip1_map
[] = { 1 };
141 static struct mtd_partition anubis_default_nand_part
[] = {
143 .name
= "Boot Agent",
149 .size
= SZ_4M
- SZ_16K
,
155 .size
= SZ_32M
- SZ_4M
,
160 .size
= MTDPART_SIZ_FULL
,
164 static struct mtd_partition anubis_default_nand_part_large
[] = {
166 .name
= "Boot Agent",
172 .size
= SZ_4M
- SZ_128K
,
178 .size
= SZ_32M
- SZ_4M
,
183 .size
= MTDPART_SIZ_FULL
,
187 /* the Anubis has 3 selectable slots for nand-flash, the two
188 * on-board chip areas, as well as the external slot.
190 * Note, there is no current hot-plug support for the External
194 static struct s3c2410_nand_set anubis_nand_sets
[] = {
198 .nr_map
= external_map
,
199 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
200 .partitions
= anubis_default_nand_part
,
206 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
207 .partitions
= anubis_default_nand_part
,
213 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
214 .partitions
= anubis_default_nand_part
,
218 static void anubis_nand_select(struct s3c2410_nand_set
*set
, int slot
)
222 slot
= set
->nr_map
[slot
] & 3;
224 pr_debug("anubis_nand: selecting slot %d (set %p,%p)\n",
225 slot
, set
, set
->nr_map
);
227 tmp
= __raw_readb(ANUBIS_VA_CTRL1
);
228 tmp
&= ~ANUBIS_CTRL1_NANDSEL
;
231 pr_debug("anubis_nand: ctrl1 now %02x\n", tmp
);
233 __raw_writeb(tmp
, ANUBIS_VA_CTRL1
);
236 static struct s3c2410_platform_nand anubis_nand_info
= {
240 .nr_sets
= ARRAY_SIZE(anubis_nand_sets
),
241 .sets
= anubis_nand_sets
,
242 .select_chip
= anubis_nand_select
,
247 static struct pata_platform_info anubis_ide_platdata
= {
251 static struct resource anubis_ide0_resource
[] = {
253 .start
= S3C2410_CS3
,
254 .end
= S3C2410_CS3
+ (8*32) - 1,
255 .flags
= IORESOURCE_MEM
,
257 .start
= S3C2410_CS3
+ (1<<26) + (6*32),
258 .end
= S3C2410_CS3
+ (1<<26) + (7*32) - 1,
259 .flags
= IORESOURCE_MEM
,
263 .flags
= IORESOURCE_IRQ
,
267 static struct platform_device anubis_device_ide0
= {
268 .name
= "pata_platform",
270 .num_resources
= ARRAY_SIZE(anubis_ide0_resource
),
271 .resource
= anubis_ide0_resource
,
273 .platform_data
= &anubis_ide_platdata
,
274 .coherent_dma_mask
= ~0,
278 static struct resource anubis_ide1_resource
[] = {
280 .start
= S3C2410_CS4
,
281 .end
= S3C2410_CS4
+ (8*32) - 1,
282 .flags
= IORESOURCE_MEM
,
284 .start
= S3C2410_CS4
+ (1<<26) + (6*32),
285 .end
= S3C2410_CS4
+ (1<<26) + (7*32) - 1,
286 .flags
= IORESOURCE_MEM
,
290 .flags
= IORESOURCE_IRQ
,
294 static struct platform_device anubis_device_ide1
= {
295 .name
= "pata_platform",
297 .num_resources
= ARRAY_SIZE(anubis_ide1_resource
),
298 .resource
= anubis_ide1_resource
,
300 .platform_data
= &anubis_ide_platdata
,
301 .coherent_dma_mask
= ~0,
305 /* Asix AX88796 10/100 ethernet controller */
307 static struct ax_plat_data anubis_asix_platdata
= {
308 .flags
= AXFLG_MAC_FROMDEV
,
314 static struct resource anubis_asix_resource
[] = {
316 .start
= S3C2410_CS5
,
317 .end
= S3C2410_CS5
+ (0x20 * 0x20) -1,
318 .flags
= IORESOURCE_MEM
323 .flags
= IORESOURCE_IRQ
327 static struct platform_device anubis_device_asix
= {
330 .num_resources
= ARRAY_SIZE(anubis_asix_resource
),
331 .resource
= anubis_asix_resource
,
333 .platform_data
= &anubis_asix_platdata
,
339 static struct resource anubis_sm501_resource
[] = {
341 .start
= S3C2410_CS2
,
342 .end
= S3C2410_CS2
+ SZ_8M
,
343 .flags
= IORESOURCE_MEM
,
346 .start
= S3C2410_CS2
+ SZ_64M
- SZ_2M
,
347 .end
= S3C2410_CS2
+ SZ_64M
- 1,
348 .flags
= IORESOURCE_MEM
,
353 .flags
= IORESOURCE_IRQ
,
357 static struct sm501_initdata anubis_sm501_initdata
= {
359 .set
= 0x3F000000, /* 24bit panel */
363 .set
= 0x010100, /* SDRAM timing */
367 .set
= SM501_MISC_PNL_24BIT
,
371 .devices
= SM501_USE_GPIO
,
373 /* set the SDRAM and bus clocks */
378 static struct sm501_platdata_gpio_i2c anubis_sm501_gpio_i2c
[] = {
391 static struct sm501_platdata anubis_sm501_platdata
= {
392 .init
= &anubis_sm501_initdata
,
394 .gpio_i2c
= anubis_sm501_gpio_i2c
,
395 .gpio_i2c_nr
= ARRAY_SIZE(anubis_sm501_gpio_i2c
),
398 static struct platform_device anubis_device_sm501
= {
401 .num_resources
= ARRAY_SIZE(anubis_sm501_resource
),
402 .resource
= anubis_sm501_resource
,
404 .platform_data
= &anubis_sm501_platdata
,
408 /* Standard Anubis devices */
410 static struct platform_device
*anubis_devices
[] __initdata
= {
420 &anubis_device_sm501
,
423 static struct clk
*anubis_clocks
[] __initdata
= {
433 static struct i2c_board_info anubis_i2c_devs
[] __initdata
= {
435 I2C_BOARD_INFO("tps65011", 0x48),
440 static void __init
anubis_map_io(void)
442 /* initialise the clocks */
444 s3c24xx_dclk0
.parent
= &clk_upll
;
445 s3c24xx_dclk0
.rate
= 12*1000*1000;
447 s3c24xx_dclk1
.parent
= &clk_upll
;
448 s3c24xx_dclk1
.rate
= 24*1000*1000;
450 s3c24xx_clkout0
.parent
= &s3c24xx_dclk0
;
451 s3c24xx_clkout1
.parent
= &s3c24xx_dclk1
;
453 s3c24xx_uclk
.parent
= &s3c24xx_clkout1
;
455 s3c24xx_register_clocks(anubis_clocks
, ARRAY_SIZE(anubis_clocks
));
457 s3c_device_nand
.dev
.platform_data
= &anubis_nand_info
;
459 s3c24xx_init_io(anubis_iodesc
, ARRAY_SIZE(anubis_iodesc
));
460 s3c24xx_init_clocks(0);
461 s3c24xx_init_uarts(anubis_uartcfgs
, ARRAY_SIZE(anubis_uartcfgs
));
463 /* check for the newer revision boards with large page nand */
465 if ((__raw_readb(ANUBIS_VA_IDREG
) & ANUBIS_IDREG_REVMASK
) >= 4) {
466 printk(KERN_INFO
"ANUBIS-B detected (revision %d)\n",
467 __raw_readb(ANUBIS_VA_IDREG
) & ANUBIS_IDREG_REVMASK
);
468 anubis_nand_sets
[0].partitions
= anubis_default_nand_part_large
;
469 anubis_nand_sets
[0].nr_partitions
= ARRAY_SIZE(anubis_default_nand_part_large
);
471 /* ensure that the GPIO is setup */
472 s3c2410_gpio_setpin(S3C2410_GPA(0), 1);
476 static void __init
anubis_init(void)
478 s3c_i2c0_set_platdata(NULL
);
479 platform_add_devices(anubis_devices
, ARRAY_SIZE(anubis_devices
));
481 i2c_register_board_info(0, anubis_i2c_devs
,
482 ARRAY_SIZE(anubis_i2c_devs
));
486 MACHINE_START(ANUBIS
, "Simtec-Anubis")
487 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
488 .phys_io
= S3C2410_PA_UART
,
489 .io_pg_offst
= (((u32
)S3C24XX_VA_UART
) >> 18) & 0xfffc,
490 .boot_params
= S3C2410_SDRAM_PA
+ 0x100,
491 .map_io
= anubis_map_io
,
492 .init_machine
= anubis_init
,
493 .init_irq
= s3c24xx_init_irq
,
494 .timer
= &s3c24xx_timer
,