1 /* linux/arch/arm/mach-s3c2410/mach-rx3715.c
3 * Copyright (c) 2003,2004 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * http://www.handhelds.org/projects/rx3715.html
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 * 16-Sep-2004 BJD Copied from mach-h1940.c
14 * 25-Oct-2004 BJD Updates for 2.6.10-rc1
15 * 10-Jan-2005 BJD Removed include of s3c2410.h s3c2440.h
16 * 14-Jan-2005 BJD Added new clock init
17 * 10-Mar-2005 LCVR Changed S3C2410_VA to S3C24XX_VA
18 * 14-Mar-2005 BJD Fixed __iomem warnings
19 * 20-Sep-2005 BJD Added static to non-exported items
20 * 31-Oct-2005 BJD Added LCD setup for framebuffer
23 #include <linux/kernel.h>
24 #include <linux/types.h>
25 #include <linux/interrupt.h>
26 #include <linux/list.h>
27 #include <linux/timer.h>
28 #include <linux/init.h>
29 #include <linux/tty.h>
30 #include <linux/console.h>
31 #include <linux/platform_device.h>
32 #include <linux/serial_core.h>
33 #include <linux/serial.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/irq.h>
39 #include <asm/hardware.h>
40 #include <asm/hardware/iomd.h>
43 #include <asm/mach-types.h>
45 #include <asm/arch/regs-serial.h>
46 #include <asm/arch/regs-gpio.h>
47 #include <asm/arch/regs-lcd.h>
49 #include <asm/arch/fb.h>
56 static struct map_desc rx3715_iodesc[] __initdata = {
57 /* dump ISA space somewhere unused */
59 { (u32)S3C24XX_VA_ISA_WORD, S3C2410_CS3, SZ_16M, MT_DEVICE },
60 { (u32)S3C24XX_VA_ISA_BYTE, S3C2410_CS3, SZ_16M, MT_DEVICE },
64 static struct s3c24xx_uart_clksrc rx3715_serial_clocks[] = {
73 static struct s3c2410_uartcfg rx3715_uartcfgs[] = {
80 .clocks = rx3715_serial_clocks,
81 .clocks_size = ARRAY_SIZE(rx3715_serial_clocks),
89 .clocks = rx3715_serial_clocks,
90 .clocks_size = ARRAY_SIZE(rx3715_serial_clocks),
95 .uart_flags = UPF_CONS_FLOW,
99 .clocks = rx3715_serial_clocks,
100 .clocks_size = ARRAY_SIZE(rx3715_serial_clocks),
104 /* framebuffer lcd controller information */
106 static struct s3c2410fb_mach_info rx3715_lcdcfg __initdata = {
108 .lcdcon1 = S3C2410_LCDCON1_TFT16BPP | \
109 S3C2410_LCDCON1_TFT | \
110 S3C2410_LCDCON1_CLKVAL(0x0C),
112 .lcdcon2 = S3C2410_LCDCON2_VBPD(5) | \
113 S3C2410_LCDCON2_LINEVAL(319) | \
114 S3C2410_LCDCON2_VFPD(6) | \
115 S3C2410_LCDCON2_VSPW(2),
117 .lcdcon3 = S3C2410_LCDCON3_HBPD(35) | \
118 S3C2410_LCDCON3_HOZVAL(239) | \
119 S3C2410_LCDCON3_HFPD(35),
121 .lcdcon4 = S3C2410_LCDCON4_MVAL(0) | \
122 S3C2410_LCDCON4_HSPW(7),
124 .lcdcon5 = S3C2410_LCDCON5_INVVLINE |
125 S3C2410_LCDCON5_FRM565 |
126 S3C2410_LCDCON5_HWSWP,
131 .gpccon = 0xaa955699,
132 .gpccon_mask = 0xffc003cc,
134 .gpcup_mask = 0xffffffff,
136 .gpdcon = 0xaa95aaa1,
137 .gpdcon_mask = 0xffc0fff0,
139 .gpdup_mask = 0xffffffff,
164 static struct platform_device *rx3715_devices[] __initdata = {
172 static struct s3c24xx_board rx3715_board __initdata = {
173 .devices = rx3715_devices,
174 .devices_count = ARRAY_SIZE(rx3715_devices)
177 static void __init rx3715_map_io(void)
179 s3c24xx_init_io(rx3715_iodesc, ARRAY_SIZE(rx3715_iodesc));
180 s3c24xx_init_clocks(16934000);
181 s3c24xx_init_uarts(rx3715_uartcfgs, ARRAY_SIZE(rx3715_uartcfgs));
182 s3c24xx_set_board(&rx3715_board);
185 static void __init rx3715_init_irq(void)
190 static void __init rx3715_init_machine(void)
193 s3c24xx_fb_set_platdata(&rx3715_lcdcfg);
197 MACHINE_START(RX3715, "IPAQ-RX3715")
198 /* Maintainer: Ben Dooks <ben@fluff.org> */
199 .phys_ram = S3C2410_SDRAM_PA,
200 .phys_io = S3C2410_PA_UART,
201 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
202 .boot_params = S3C2410_SDRAM_PA + 0x100,
203 .map_io = rx3715_map_io,
204 .init_irq = rx3715_init_irq,
205 .init_machine = rx3715_init_machine,
206 .timer = &s3c24xx_timer,