1 /***********************************************************************
3 * linux/arch/arm/mach-s3c2410/mach-smdk2410.c
5 * Copyright (C) 2004 by FS Forth-Systeme GmbH
8 * $Id: mach-smdk2410.c,v 1.1 2004/05/11 14:15:38 mpietrek Exp $
9 * @Author: Jonas Dietsche
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by
28 * Ben Dooks <ben@simtec.co.uk>
30 ***********************************************************************/
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34 #include <linux/interrupt.h>
35 #include <linux/list.h>
36 #include <linux/timer.h>
37 #include <linux/init.h>
38 #include <linux/serial_core.h>
39 #include <linux/platform_device.h>
41 #include <asm/mach/arch.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/irq.h>
45 #include <asm/hardware.h>
48 #include <asm/mach-types.h>
50 #include <asm/arch/regs-serial.h>
55 #include "common-smdk.h"
57 static struct map_desc smdk2410_iodesc[] __initdata = {
58 /* nothing here yet */
61 #define UCON S3C2410_UCON_DEFAULT
62 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
63 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
65 static struct s3c2410_uartcfg smdk2410_uartcfgs[] __initdata = {
89 static struct platform_device *smdk2410_devices[] __initdata = {
97 static struct s3c24xx_board smdk2410_board __initdata = {
98 .devices = smdk2410_devices,
99 .devices_count = ARRAY_SIZE(smdk2410_devices)
102 static void __init smdk2410_map_io(void)
104 s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc));
105 s3c24xx_init_clocks(0);
106 s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
107 s3c24xx_set_board(&smdk2410_board);
110 MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch
112 /* Maintainer: Jonas Dietsche */
113 .phys_io = S3C2410_PA_UART,
114 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
115 .boot_params = S3C2410_SDRAM_PA + 0x100,
116 .map_io = smdk2410_map_io,
117 .init_irq = s3c24xx_init_irq,
118 .init_machine = smdk_machine_init,
119 .timer = &s3c24xx_timer,