diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-03-25 18:55:54 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-03-25 18:55:54 -0400 |
commit | 18bbff9f679cd470db66402fdb9c577b34324183 (patch) | |
tree | f8e90adadfde630368034268de8cc5763898ab37 /arch/arm/mach-sa1100/shannon.c | |
parent | e7d863d0f42e2cf19a13c867bfcab7424388bff8 (diff) | |
parent | 7cb66dcc828662c8cacb74af08478433cef102b1 (diff) |
Merge branch 'sa11x0-lcd' into sa11x0
Conflicts:
arch/arm/mach-sa1100/assabet.c
Diffstat (limited to 'arch/arm/mach-sa1100/shannon.c')
-rw-r--r-- | arch/arm/mach-sa1100/shannon.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/shannon.c b/arch/arm/mach-sa1100/shannon.c index 5fd615649847..77b2b9b522ac 100644 --- a/arch/arm/mach-sa1100/shannon.c +++ b/arch/arm/mach-sa1100/shannon.c | |||
@@ -9,6 +9,8 @@ | |||
9 | #include <linux/mtd/mtd.h> | 9 | #include <linux/mtd/mtd.h> |
10 | #include <linux/mtd/partitions.h> | 10 | #include <linux/mtd/partitions.h> |
11 | 11 | ||
12 | #include <video/sa1100fb.h> | ||
13 | |||
12 | #include <mach/hardware.h> | 14 | #include <mach/hardware.h> |
13 | #include <asm/mach-types.h> | 15 | #include <asm/mach-types.h> |
14 | #include <asm/setup.h> | 16 | #include <asm/setup.h> |
@@ -54,8 +56,23 @@ static struct mcp_plat_data shannon_mcp_data = { | |||
54 | .sclk_rate = 11981000, | 56 | .sclk_rate = 11981000, |
55 | }; | 57 | }; |
56 | 58 | ||
59 | static struct sa1100fb_mach_info shannon_lcd_info = { | ||
60 | .pixclock = 152500, .bpp = 8, | ||
61 | .xres = 640, .yres = 480, | ||
62 | |||
63 | .hsync_len = 4, .vsync_len = 3, | ||
64 | .left_margin = 2, .upper_margin = 0, | ||
65 | .right_margin = 1, .lower_margin = 0, | ||
66 | |||
67 | .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
68 | |||
69 | .lccr0 = LCCR0_Color | LCCR0_Dual | LCCR0_Pas, | ||
70 | .lccr3 = LCCR3_ACBsDiv(512), | ||
71 | }; | ||
72 | |||
57 | static void __init shannon_init(void) | 73 | static void __init shannon_init(void) |
58 | { | 74 | { |
75 | sa11x0_register_lcd(&shannon_lcd_info); | ||
59 | sa11x0_register_mtd(&shannon_flash_data, &shannon_flash_resource, 1); | 76 | sa11x0_register_mtd(&shannon_flash_data, &shannon_flash_resource, 1); |
60 | sa11x0_register_mcp(&shannon_mcp_data); | 77 | sa11x0_register_mcp(&shannon_mcp_data); |
61 | } | 78 | } |