1 /* linux/arch/arm/mach-s3c2440/mach-anubis.c
3 * Copyright 2003-2009 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/serial_s3c.h>
21 #include <linux/platform_device.h>
22 #include <linux/ata_platform.h>
23 #include <linux/i2c.h>
25 #include <linux/sm501.h>
26 #include <linux/sm501-regs.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
32 #include <mach/hardware.h>
34 #include <asm/mach-types.h>
36 #include <mach/regs-gpio.h>
37 #include <mach/regs-lcd.h>
38 #include <mach/gpio-samsung.h>
39 #include <linux/platform_data/mtd-nand-s3c2410.h>
40 #include <linux/platform_data/i2c-s3c2410.h>
42 #include <linux/mtd/mtd.h>
43 #include <linux/mtd/nand.h>
44 #include <linux/mtd/nand_ecc.h>
45 #include <linux/mtd/partitions.h>
47 #include <net/ax88796.h>
49 #include <plat/devs.h>
51 #include <linux/platform_data/asoc-s3c24xx_simtec.h>
52 #include <plat/samsung-time.h>
58 #define COPYRIGHT ", Copyright 2005-2009 Simtec Electronics"
60 static struct map_desc anubis_iodesc
[] __initdata
= {
64 .virtual = (u32
)S3C24XX_VA_ISA_BYTE
,
65 .pfn
= __phys_to_pfn(0x0),
69 .virtual = (u32
)S3C24XX_VA_ISA_WORD
,
70 .pfn
= __phys_to_pfn(0x0),
75 /* we could possibly compress the next set down into a set of smaller tables
76 * pagetables, but that would mean using an L2 section, and it still means
77 * we cannot actually feed the same register to an LDR due to 16K spacing
80 /* CPLD control registers */
83 .virtual = (u32
)ANUBIS_VA_CTRL1
,
84 .pfn
= __phys_to_pfn(ANUBIS_PA_CTRL1
),
88 .virtual = (u32
)ANUBIS_VA_IDREG
,
89 .pfn
= __phys_to_pfn(ANUBIS_PA_IDREG
),
95 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
96 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
97 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
99 static struct s3c2410_uartcfg anubis_uartcfgs
[] __initdata
= {
106 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
114 .clk_sel
= S3C2410_UCON_CLKSEL1
| S3C2410_UCON_CLKSEL2
,
118 /* NAND Flash on Anubis board */
120 static int external_map
[] = { 2 };
121 static int chip0_map
[] = { 0 };
122 static int chip1_map
[] = { 1 };
124 static struct mtd_partition __initdata anubis_default_nand_part
[] = {
126 .name
= "Boot Agent",
132 .size
= SZ_4M
- SZ_16K
,
138 .size
= SZ_32M
- SZ_4M
,
143 .size
= MTDPART_SIZ_FULL
,
147 static struct mtd_partition __initdata anubis_default_nand_part_large
[] = {
149 .name
= "Boot Agent",
155 .size
= SZ_4M
- SZ_128K
,
161 .size
= SZ_32M
- SZ_4M
,
166 .size
= MTDPART_SIZ_FULL
,
170 /* the Anubis has 3 selectable slots for nand-flash, the two
171 * on-board chip areas, as well as the external slot.
173 * Note, there is no current hot-plug support for the External
177 static struct s3c2410_nand_set __initdata anubis_nand_sets
[] = {
181 .nr_map
= external_map
,
182 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
183 .partitions
= anubis_default_nand_part
,
189 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
190 .partitions
= anubis_default_nand_part
,
196 .nr_partitions
= ARRAY_SIZE(anubis_default_nand_part
),
197 .partitions
= anubis_default_nand_part
,
201 static void anubis_nand_select(struct s3c2410_nand_set
*set
, int slot
)
205 slot
= set
->nr_map
[slot
] & 3;
207 pr_debug("anubis_nand: selecting slot %d (set %p,%p)\n",
208 slot
, set
, set
->nr_map
);
210 tmp
= __raw_readb(ANUBIS_VA_CTRL1
);
211 tmp
&= ~ANUBIS_CTRL1_NANDSEL
;
214 pr_debug("anubis_nand: ctrl1 now %02x\n", tmp
);
216 __raw_writeb(tmp
, ANUBIS_VA_CTRL1
);
219 static struct s3c2410_platform_nand __initdata anubis_nand_info
= {
223 .nr_sets
= ARRAY_SIZE(anubis_nand_sets
),
224 .sets
= anubis_nand_sets
,
225 .select_chip
= anubis_nand_select
,
226 .ecc_mode
= NAND_ECC_SOFT
,
231 static struct pata_platform_info anubis_ide_platdata
= {
235 static struct resource anubis_ide0_resource
[] = {
236 [0] = DEFINE_RES_MEM(S3C2410_CS3
, 8 * 32),
237 [2] = DEFINE_RES_MEM(S3C2410_CS3
+ (1 << 26) + (6 * 32), 32),
238 [3] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0
),
241 static struct platform_device anubis_device_ide0
= {
242 .name
= "pata_platform",
244 .num_resources
= ARRAY_SIZE(anubis_ide0_resource
),
245 .resource
= anubis_ide0_resource
,
247 .platform_data
= &anubis_ide_platdata
,
248 .coherent_dma_mask
= ~0,
252 static struct resource anubis_ide1_resource
[] = {
253 [0] = DEFINE_RES_MEM(S3C2410_CS4
, 8 * 32),
254 [1] = DEFINE_RES_MEM(S3C2410_CS4
+ (1 << 26) + (6 * 32), 32),
255 [2] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0
),
258 static struct platform_device anubis_device_ide1
= {
259 .name
= "pata_platform",
261 .num_resources
= ARRAY_SIZE(anubis_ide1_resource
),
262 .resource
= anubis_ide1_resource
,
264 .platform_data
= &anubis_ide_platdata
,
265 .coherent_dma_mask
= ~0,
269 /* Asix AX88796 10/100 ethernet controller */
271 static struct ax_plat_data anubis_asix_platdata
= {
272 .flags
= AXFLG_MAC_FROMDEV
,
278 static struct resource anubis_asix_resource
[] = {
279 [0] = DEFINE_RES_MEM(S3C2410_CS5
, 0x20 * 0x20),
280 [1] = DEFINE_RES_IRQ(ANUBIS_IRQ_ASIX
),
283 static struct platform_device anubis_device_asix
= {
286 .num_resources
= ARRAY_SIZE(anubis_asix_resource
),
287 .resource
= anubis_asix_resource
,
289 .platform_data
= &anubis_asix_platdata
,
295 static struct resource anubis_sm501_resource
[] = {
296 [0] = DEFINE_RES_MEM(S3C2410_CS2
, SZ_8M
),
297 [1] = DEFINE_RES_MEM(S3C2410_CS2
+ SZ_64M
- SZ_2M
, SZ_2M
),
298 [2] = DEFINE_RES_IRQ(IRQ_EINT0
),
301 static struct sm501_initdata anubis_sm501_initdata
= {
303 .set
= 0x3F000000, /* 24bit panel */
307 .set
= 0x010100, /* SDRAM timing */
311 .set
= SM501_MISC_PNL_24BIT
,
315 .devices
= SM501_USE_GPIO
,
317 /* set the SDRAM and bus clocks */
322 static struct sm501_platdata_gpio_i2c anubis_sm501_gpio_i2c
[] = {
335 static struct sm501_platdata anubis_sm501_platdata
= {
336 .init
= &anubis_sm501_initdata
,
338 .gpio_i2c
= anubis_sm501_gpio_i2c
,
339 .gpio_i2c_nr
= ARRAY_SIZE(anubis_sm501_gpio_i2c
),
342 static struct platform_device anubis_device_sm501
= {
345 .num_resources
= ARRAY_SIZE(anubis_sm501_resource
),
346 .resource
= anubis_sm501_resource
,
348 .platform_data
= &anubis_sm501_platdata
,
352 /* Standard Anubis devices */
354 static struct platform_device
*anubis_devices
[] __initdata
= {
355 &s3c2410_device_dclk
,
365 &anubis_device_sm501
,
370 static struct i2c_board_info anubis_i2c_devs
[] __initdata
= {
372 I2C_BOARD_INFO("tps65011", 0x48),
378 static struct s3c24xx_audio_simtec_pdata __initdata anubis_audio
= {
383 .amp_gpio
= S3C2410_GPB(2),
384 .amp_gain
[0] = S3C2410_GPD(10),
385 .amp_gain
[1] = S3C2410_GPD(11),
388 static void __init
anubis_map_io(void)
390 s3c24xx_init_io(anubis_iodesc
, ARRAY_SIZE(anubis_iodesc
));
391 s3c24xx_init_uarts(anubis_uartcfgs
, ARRAY_SIZE(anubis_uartcfgs
));
392 samsung_set_timer_source(SAMSUNG_PWM3
, SAMSUNG_PWM4
);
394 /* check for the newer revision boards with large page nand */
396 if ((__raw_readb(ANUBIS_VA_IDREG
) & ANUBIS_IDREG_REVMASK
) >= 4) {
397 printk(KERN_INFO
"ANUBIS-B detected (revision %d)\n",
398 __raw_readb(ANUBIS_VA_IDREG
) & ANUBIS_IDREG_REVMASK
);
399 anubis_nand_sets
[0].partitions
= anubis_default_nand_part_large
;
400 anubis_nand_sets
[0].nr_partitions
= ARRAY_SIZE(anubis_default_nand_part_large
);
402 /* ensure that the GPIO is setup */
403 gpio_request_one(S3C2410_GPA(0), GPIOF_OUT_INIT_HIGH
, NULL
);
404 gpio_free(S3C2410_GPA(0));
408 static void __init
anubis_init_time(void)
410 s3c2440_init_clocks(12000000);
411 samsung_timer_init();
414 static void __init
anubis_init(void)
416 s3c_i2c0_set_platdata(NULL
);
417 s3c_nand_set_platdata(&anubis_nand_info
);
418 simtec_audio_add(NULL
, false, &anubis_audio
);
420 platform_add_devices(anubis_devices
, ARRAY_SIZE(anubis_devices
));
422 i2c_register_board_info(0, anubis_i2c_devs
,
423 ARRAY_SIZE(anubis_i2c_devs
));
427 MACHINE_START(ANUBIS
, "Simtec-Anubis")
428 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
429 .atag_offset
= 0x100,
430 .map_io
= anubis_map_io
,
431 .init_machine
= anubis_init
,
432 .init_irq
= s3c2440_init_irq
,
433 .init_time
= anubis_init_time
,