1 /* linux/arch/arm/mach-s3c2410/mach-n30.c
3 * Copyright (c) 2003-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Copyright (c) 2005 Christer Weinigel <christer@weinigel.se>
8 * There is a wiki with more information about the n30 port at
9 * http://handhelds.org/moin/moin.cgi/AcerN30Documentation .
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/interrupt.h>
19 #include <linux/list.h>
20 #include <linux/timer.h>
21 #include <linux/init.h>
22 #include <linux/delay.h>
23 #include <linux/serial_core.h>
24 #include <linux/platform_device.h>
25 #include <linux/kthread.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/map.h>
29 #include <asm/mach/irq.h>
31 #include <asm/hardware.h>
34 #include <asm/mach-types.h>
36 #include <asm/arch/regs-serial.h>
37 #include <asm/arch/regs-gpio.h>
38 #include <asm/arch/iic.h>
40 #include <asm/plat-s3c24xx/s3c2410.h>
41 #include <asm/plat-s3c24xx/clock.h>
42 #include <asm/plat-s3c24xx/devs.h>
43 #include <asm/plat-s3c24xx/cpu.h>
45 static struct map_desc n30_iodesc[] __initdata = {
46 /* nothing here yet */
49 static struct s3c2410_uartcfg n30_uartcfgs[] = {
50 /* Normal serial port */
62 .uart_flags = UPF_CONS_FLOW,
67 /* The BlueTooth controller is connected to port 2 */
77 static struct platform_device *n30_devices[] __initdata = {
83 &s3c_device_usbgadget,
86 static struct s3c2410_platform_i2c n30_i2ccfg = {
93 static struct s3c24xx_board n30_board __initdata = {
94 .devices = n30_devices,
95 .devices_count = ARRAY_SIZE(n30_devices)
98 static void __init n30_map_io(void)
100 s3c24xx_init_io(n30_iodesc, ARRAY_SIZE(n30_iodesc));
101 s3c24xx_init_clocks(0);
102 s3c24xx_init_uarts(n30_uartcfgs, ARRAY_SIZE(n30_uartcfgs));
103 s3c24xx_set_board(&n30_board);
106 static void __init n30_init_irq(void)
111 /* GPB3 is the line that controls the pull-up for the USB D+ line */
113 static void __init n30_init(void)
115 s3c_device_i2c.dev.platform_data = &n30_i2ccfg;
117 /* Turn off suspend on both USB ports, and switch the
118 * selectable USB port to USB device mode. */
120 s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST |
121 S3C2410_MISCCR_USBSUSPND0 |
122 S3C2410_MISCCR_USBSUSPND1, 0x0);
125 MACHINE_START(N30, "Acer-N30")
126 /* Maintainer: Christer Weinigel <christer@weinigel.se>,
127 Ben Dooks <ben-linux@fluff.org>
129 .phys_io = S3C2410_PA_UART,
130 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
131 .boot_params = S3C2410_SDRAM_PA + 0x100,
132 .timer = &s3c24xx_timer,
133 .init_machine = n30_init,
134 .init_irq = n30_init_irq,
135 .map_io = n30_map_io,
140 compile-command: "make ARCH=arm CROSS_COMPILE=/usr/local/arm/3.3.2/bin/arm-linux- -k -C ../../.."