Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[deliverable/linux.git] / arch / arm / mach-s3c24xx / mach-smdk2410.c
CommitLineData
a21765a7 1/* linux/arch/arm/mach-s3c2410/mach-smdk2410.c
1da177e4
LT
2 *
3 * linux/arch/arm/mach-s3c2410/mach-smdk2410.c
4 *
5 * Copyright (C) 2004 by FS Forth-Systeme GmbH
6 * All rights reserved.
7 *
1da177e4
LT
8 * @Author: Jonas Dietsche
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 *
25 * @History:
26 * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by
27 * Ben Dooks <ben@simtec.co.uk>
28 *
1da177e4
LT
29 ***********************************************************************/
30
31#include <linux/kernel.h>
32#include <linux/types.h>
33#include <linux/interrupt.h>
34#include <linux/list.h>
35#include <linux/timer.h>
36#include <linux/init.h>
b6d1f542 37#include <linux/serial_core.h>
d052d1be 38#include <linux/platform_device.h>
fced80c7 39#include <linux/io.h>
1da177e4
LT
40
41#include <asm/mach/arch.h>
42#include <asm/mach/map.h>
43#include <asm/mach/irq.h>
44
a09e64fb 45#include <mach/hardware.h>
1da177e4
LT
46#include <asm/irq.h>
47#include <asm/mach-types.h>
48
a2b7ba9c 49#include <plat/regs-serial.h>
436d42c6 50#include <linux/platform_data/i2c-s3c2410.h>
1da177e4 51
a2b7ba9c
BD
52#include <plat/devs.h>
53#include <plat/cpu.h>
1da177e4 54
b27b0727 55#include "common.h"
4d512a90 56#include "common-smdk.h"
b27b0727 57
1da177e4
LT
58static struct map_desc smdk2410_iodesc[] __initdata = {
59 /* nothing here yet */
60};
61
62#define UCON S3C2410_UCON_DEFAULT
63#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
64#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
65
66a9b49a 66static struct s3c2410_uartcfg smdk2410_uartcfgs[] __initdata = {
1da177e4
LT
67 [0] = {
68 .hwport = 0,
69 .flags = 0,
70 .ucon = UCON,
71 .ulcon = ULCON,
72 .ufcon = UFCON,
73 },
74 [1] = {
75 .hwport = 1,
76 .flags = 0,
77 .ucon = UCON,
78 .ulcon = ULCON,
79 .ufcon = UFCON,
80 },
81 [2] = {
82 .hwport = 2,
83 .flags = 0,
84 .ucon = UCON,
85 .ulcon = ULCON,
86 .ufcon = UFCON,
87 }
88};
89
90static struct platform_device *smdk2410_devices[] __initdata = {
b813248c 91 &s3c_device_ohci,
1da177e4
LT
92 &s3c_device_lcd,
93 &s3c_device_wdt,
3e1b776c 94 &s3c_device_i2c0,
1da177e4
LT
95 &s3c_device_iis,
96};
97
5fe10ab1 98static void __init smdk2410_map_io(void)
1da177e4
LT
99{
100 s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc));
101 s3c24xx_init_clocks(0);
102 s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
57e5171c
BD
103}
104
105static void __init smdk2410_init(void)
106{
3e1b776c 107 s3c_i2c0_set_platdata(NULL);
57e5171c
BD
108 platform_add_devices(smdk2410_devices, ARRAY_SIZE(smdk2410_devices));
109 smdk_machine_init();
1da177e4
LT
110}
111
1da177e4
LT
112MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch
113 * to SMDK2410 */
e9dea0c6 114 /* Maintainer: Jonas Dietsche */
69d50710 115 .atag_offset = 0x100,
e9dea0c6 116 .map_io = smdk2410_map_io,
d3f4c571 117 .init_irq = s3c24xx_init_irq,
57e5171c 118 .init_machine = smdk2410_init,
6bb27d73 119 .init_time = s3c24xx_timer_init,
b27b0727 120 .restart = s3c2410_restart,
1da177e4 121MACHINE_END
This page took 0.623613 seconds and 5 git commands to generate.