blob: c695b730bd69efd7211b91c0ae58b9e6c149fc6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-sa1100/shannon.c
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
6#include <linux/device.h>
7#include <linux/kernel.h>
8#include <linux/tty.h>
9#include <linux/mtd/mtd.h>
10#include <linux/mtd/partitions.h>
11
Russell Kinge1b7a722012-01-14 11:50:04 +000012#include <video/sa1100fb.h>
13
Russell Kinga09e64f2008-08-05 16:14:15 +010014#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/mach-types.h>
16#include <asm/setup.h>
17
18#include <asm/mach/arch.h>
19#include <asm/mach/flash.h>
20#include <asm/mach/map.h>
21#include <asm/mach/serial_sa1100.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/mcp.h>
23#include <mach/shannon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "generic.h"
26
27static struct mtd_partition shannon_partitions[] = {
28 {
29 .name = "BLOB boot loader",
30 .offset = 0,
31 .size = 0x20000
32 },
33 {
34 .name = "kernel",
35 .offset = MTDPART_OFS_APPEND,
36 .size = 0xe0000
37 },
Kristoffer Ericson93982532008-11-26 20:58:43 +010038 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .name = "initrd",
40 .offset = MTDPART_OFS_APPEND,
41 .size = MTDPART_SIZ_FULL
42 }
43};
44
45static struct flash_platform_data shannon_flash_data = {
46 .map_name = "cfi_probe",
47 .parts = shannon_partitions,
48 .nr_parts = ARRAY_SIZE(shannon_partitions),
49};
50
51static struct resource shannon_flash_resource = {
52 .start = SA1100_CS0_PHYS,
53 .end = SA1100_CS0_PHYS + SZ_4M - 1,
54 .flags = IORESOURCE_MEM,
55};
56
Russell King323cdfc2005-08-18 10:10:46 +010057static struct mcp_plat_data shannon_mcp_data = {
58 .mccr0 = MCCR0_ADM,
59 .sclk_rate = 11981000,
60};
61
Russell Kinge1b7a722012-01-14 11:50:04 +000062static struct sa1100fb_mach_info shannon_lcd_info = {
63 .pixclock = 152500, .bpp = 8,
64 .xres = 640, .yres = 480,
65
66 .hsync_len = 4, .vsync_len = 3,
67 .left_margin = 2, .upper_margin = 0,
68 .right_margin = 1, .lower_margin = 0,
69
70 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
71
72 .lccr0 = LCCR0_Color | LCCR0_Dual | LCCR0_Pas,
73 .lccr3 = LCCR3_ACBsDiv(512),
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static void __init shannon_init(void)
77{
Russell Kinge1b7a722012-01-14 11:50:04 +000078 sa11x0_register_lcd(&shannon_lcd_info);
Russell King7a5b4e12009-10-06 14:55:53 +010079 sa11x0_register_mtd(&shannon_flash_data, &shannon_flash_resource, 1);
80 sa11x0_register_mcp(&shannon_mcp_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83static void __init shannon_map_io(void)
84{
85 sa1100_map_io();
86
87 sa1100_register_uart(0, 3);
88 sa1100_register_uart(1, 1);
89
90 Ser1SDCR0 |= SDCR0_SUS;
91 GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
92 GPDR |= GPIO_UART_TXD | SHANNON_GPIO_CODEC_RESET;
93 GPDR &= ~GPIO_UART_RXD;
94 PPAR |= PPAR_UPR;
95
96 /* reset the codec */
97 GPCR = SHANNON_GPIO_CODEC_RESET;
98 GPSR = SHANNON_GPIO_CODEC_RESET;
99}
100
101MACHINE_START(SHANNON, "Shannon (AKA: Tuxscreen)")
Nicolas Pitre17f44252011-07-05 22:38:17 -0400102 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100103 .map_io = shannon_map_io,
104 .init_irq = sa1100_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .timer = &sa1100_timer,
106 .init_machine = shannon_init,
Russell Kingd9ca5832011-11-05 10:28:50 +0000107 .restart = sa11x0_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108MACHINE_END