2 * linux/arch/arm/mach-sa1100/shannon.c
5 #include <linux/init.h>
6 #include <linux/device.h>
7 #include <linux/kernel.h>
9 #include <linux/mtd/mtd.h>
10 #include <linux/mtd/partitions.h>
12 #include <mach/hardware.h>
13 #include <asm/mach-types.h>
14 #include <asm/setup.h>
16 #include <asm/mach/arch.h>
17 #include <asm/mach/flash.h>
18 #include <asm/mach/map.h>
19 #include <asm/mach/serial_sa1100.h>
21 #include <mach/shannon.h>
25 static struct mtd_partition shannon_partitions
[] = {
27 .name
= "BLOB boot loader",
33 .offset
= MTDPART_OFS_APPEND
,
38 .offset
= MTDPART_OFS_APPEND
,
39 .size
= MTDPART_SIZ_FULL
43 static struct flash_platform_data shannon_flash_data
= {
44 .map_name
= "cfi_probe",
45 .parts
= shannon_partitions
,
46 .nr_parts
= ARRAY_SIZE(shannon_partitions
),
49 static struct resource shannon_flash_resource
= {
50 .start
= SA1100_CS0_PHYS
,
51 .end
= SA1100_CS0_PHYS
+ SZ_4M
- 1,
52 .flags
= IORESOURCE_MEM
,
55 static struct mcp_plat_data shannon_mcp_data
= {
57 .sclk_rate
= 11981000,
61 static void __init
shannon_init(void)
63 sa11x0_register_mtd(&shannon_flash_data
, &shannon_flash_resource
, 1);
66 * Setup the PPC unit correctly.
69 PPDR
|= PPC_TXD4
| PPC_SCLK
| PPC_SFRM
;
71 PSDR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
72 PPSR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
74 sa11x0_register_mcp(&shannon_mcp_data
);
77 static void __init
shannon_map_io(void)
81 sa1100_register_uart(0, 3);
82 sa1100_register_uart(1, 1);
84 Ser1SDCR0
|= SDCR0_SUS
;
85 GAFR
|= (GPIO_UART_TXD
| GPIO_UART_RXD
);
86 GPDR
|= GPIO_UART_TXD
| SHANNON_GPIO_CODEC_RESET
;
87 GPDR
&= ~GPIO_UART_RXD
;
91 GPCR
= SHANNON_GPIO_CODEC_RESET
;
92 GPSR
= SHANNON_GPIO_CODEC_RESET
;
95 MACHINE_START(SHANNON
, "Shannon (AKA: Tuxscreen)")
97 .map_io
= shannon_map_io
,
98 .init_irq
= sa1100_init_irq
,
99 .timer
= &sa1100_timer
,
100 .init_machine
= shannon_init
,
101 .restart
= sa11x0_restart
,