Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/mach-s3c2410/mach-smdk2410.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
| 8 | * $Id: mach-smdk2410.c,v 1.1 2004/05/11 14:15:38 mpietrek Exp $ |
| 9 | * @Author: Jonas Dietsche |
| 10 | * |
| 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. |
| 15 | * |
| 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. |
| 20 | * |
| 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, |
| 24 | * MA 02111-1307 USA |
| 25 | * |
| 26 | * @History: |
| 27 | * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by |
| 28 | * Ben Dooks <ben@simtec.co.uk> |
| 29 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | ***********************************************************************/ |
| 31 | |
| 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> |
Ben Dooks | b6d1f54 | 2006-12-17 23:22:26 +0100 | [diff] [blame] | 38 | #include <linux/serial_core.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 39 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | #include <asm/mach/arch.h> |
| 42 | #include <asm/mach/map.h> |
| 43 | #include <asm/mach/irq.h> |
| 44 | |
| 45 | #include <asm/hardware.h> |
| 46 | #include <asm/io.h> |
| 47 | #include <asm/irq.h> |
| 48 | #include <asm/mach-types.h> |
| 49 | |
| 50 | #include <asm/arch/regs-serial.h> |
| 51 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 52 | #include <asm/plat-s3c24xx/devs.h> |
| 53 | #include <asm/plat-s3c24xx/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 55 | #include <asm/plat-s3c24xx/common-smdk.h> |
Ben Dooks | d3f4c57 | 2006-04-01 18:33:42 +0100 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | static struct map_desc smdk2410_iodesc[] __initdata = { |
| 58 | /* nothing here yet */ |
| 59 | }; |
| 60 | |
| 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 |
| 64 | |
Ben Dooks | 66a9b49 | 2006-06-18 23:04:05 +0100 | [diff] [blame] | 65 | static struct s3c2410_uartcfg smdk2410_uartcfgs[] __initdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | [0] = { |
| 67 | .hwport = 0, |
| 68 | .flags = 0, |
| 69 | .ucon = UCON, |
| 70 | .ulcon = ULCON, |
| 71 | .ufcon = UFCON, |
| 72 | }, |
| 73 | [1] = { |
| 74 | .hwport = 1, |
| 75 | .flags = 0, |
| 76 | .ucon = UCON, |
| 77 | .ulcon = ULCON, |
| 78 | .ufcon = UFCON, |
| 79 | }, |
| 80 | [2] = { |
| 81 | .hwport = 2, |
| 82 | .flags = 0, |
| 83 | .ucon = UCON, |
| 84 | .ulcon = ULCON, |
| 85 | .ufcon = UFCON, |
| 86 | } |
| 87 | }; |
| 88 | |
| 89 | static struct platform_device *smdk2410_devices[] __initdata = { |
| 90 | &s3c_device_usb, |
| 91 | &s3c_device_lcd, |
| 92 | &s3c_device_wdt, |
| 93 | &s3c_device_i2c, |
| 94 | &s3c_device_iis, |
| 95 | }; |
| 96 | |
Ben Dooks | 5fe10ab | 2005-09-20 17:24:33 +0100 | [diff] [blame] | 97 | static void __init smdk2410_map_io(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
| 99 | s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc)); |
| 100 | s3c24xx_init_clocks(0); |
| 101 | s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs)); |
Ben Dooks | 57e5171 | 2007-04-20 11:19:16 +0100 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static void __init smdk2410_init(void) |
| 105 | { |
| 106 | platform_add_devices(smdk2410_devices, ARRAY_SIZE(smdk2410_devices)); |
| 107 | smdk_machine_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch |
| 111 | * to SMDK2410 */ |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 112 | /* Maintainer: Jonas Dietsche */ |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 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, |
Ben Dooks | d3f4c57 | 2006-04-01 18:33:42 +0100 | [diff] [blame] | 117 | .init_irq = s3c24xx_init_irq, |
Ben Dooks | 57e5171 | 2007-04-20 11:19:16 +0100 | [diff] [blame] | 118 | .init_machine = smdk2410_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | .timer = &s3c24xx_timer, |
| 120 | MACHINE_END |
| 121 | |
| 122 | |