Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008-2009 ST-Ericsson |
| 3 | * |
| 4 | * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2, as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/device.h> |
| 14 | #include <linux/amba/bus.h> |
| 15 | #include <linux/irq.h> |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 16 | #include <linux/gpio.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 18 | #include <linux/io.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 19 | |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 20 | #include <asm/localtimer.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 21 | #include <asm/mach/map.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 22 | #include <plat/mtu.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 23 | #include <mach/hardware.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 24 | #include <mach/setup.h> |
Rabin Vincent | 5b1f7dd | 2010-05-03 08:25:52 +0100 | [diff] [blame^] | 25 | #include <mach/devices.h> |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 26 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 27 | static struct platform_device *platform_devs[] __initdata = { |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 28 | &u8500_gpio_devs[0], |
| 29 | &u8500_gpio_devs[1], |
| 30 | &u8500_gpio_devs[2], |
| 31 | &u8500_gpio_devs[3], |
| 32 | &u8500_gpio_devs[4], |
| 33 | &u8500_gpio_devs[5], |
| 34 | &u8500_gpio_devs[6], |
| 35 | &u8500_gpio_devs[7], |
| 36 | &u8500_gpio_devs[8], |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 37 | }; |
| 38 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 39 | /* minimum static i/o mapping required to boot U8500 platforms */ |
| 40 | static struct map_desc u8500_io_desc[] __initdata = { |
Rabin Vincent | 1df20af | 2010-03-01 05:07:47 +0100 | [diff] [blame] | 41 | __IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K), |
Rabin Vincent | c9c0957 | 2010-05-03 07:34:53 +0100 | [diff] [blame] | 42 | __IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K), |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 43 | __IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K), |
| 44 | __IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K), |
| 45 | __IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K), |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 46 | }; |
| 47 | |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 48 | static struct map_desc u8500ed_io_desc[] __initdata = { |
| 49 | __IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K), |
Rabin Vincent | 1df20af | 2010-03-01 05:07:47 +0100 | [diff] [blame] | 50 | __IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K), |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | static struct map_desc u8500v1_io_desc[] __initdata = { |
Rabin Vincent | c9c0957 | 2010-05-03 07:34:53 +0100 | [diff] [blame] | 54 | __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K), |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 55 | }; |
| 56 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 57 | void __init u8500_map_io(void) |
| 58 | { |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 59 | ux500_map_io(); |
| 60 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 61 | iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc)); |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 62 | |
| 63 | if (cpu_is_u8500ed()) |
| 64 | iotable_init(u8500ed_io_desc, ARRAY_SIZE(u8500ed_io_desc)); |
| 65 | else |
| 66 | iotable_init(u8500v1_io_desc, ARRAY_SIZE(u8500v1_io_desc)); |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 69 | /* |
| 70 | * This function is called from the board init |
| 71 | */ |
| 72 | void __init u8500_init_devices(void) |
| 73 | { |
Rabin Vincent | d48fd00 | 2010-05-03 07:46:56 +0100 | [diff] [blame] | 74 | ux500_init_devices(); |
| 75 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 76 | /* Register the platform devices */ |
| 77 | platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs)); |
| 78 | |
| 79 | return ; |
| 80 | } |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 81 | |
| 82 | static void __init u8500_timer_init(void) |
| 83 | { |
| 84 | #ifdef CONFIG_LOCAL_TIMERS |
| 85 | /* Setup the local timer base */ |
| 86 | twd_base = __io_address(U8500_TWD_BASE); |
| 87 | #endif |
| 88 | /* Setup the MTU base */ |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 89 | if (cpu_is_u8500ed()) |
| 90 | mtu_base = __io_address(U8500_MTU0_BASE_ED); |
| 91 | else |
Rabin Vincent | c9c0957 | 2010-05-03 07:34:53 +0100 | [diff] [blame] | 92 | mtu_base = __io_address(U8500_MTU0_BASE); |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 93 | |
| 94 | nmdk_timer_init(); |
| 95 | } |
| 96 | |
| 97 | struct sys_timer u8500_timer = { |
| 98 | .init = u8500_timer_init, |
| 99 | }; |