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> |
| 16 | #include <linux/platform_device.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame^] | 17 | #include <linux/io.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 18 | |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame^] | 19 | #include <asm/localtimer.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 20 | #include <asm/hardware/gic.h> |
| 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> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 25 | |
| 26 | /* add any platform devices here - TODO */ |
| 27 | static struct platform_device *platform_devs[] __initdata = { |
| 28 | /* yet to be added, add i2c0, gpio.. */ |
| 29 | }; |
| 30 | |
| 31 | #define __IO_DEV_DESC(x, sz) { \ |
| 32 | .virtual = IO_ADDRESS(x), \ |
| 33 | .pfn = __phys_to_pfn(x), \ |
| 34 | .length = sz, \ |
| 35 | .type = MT_DEVICE, \ |
| 36 | } |
| 37 | |
| 38 | /* minimum static i/o mapping required to boot U8500 platforms */ |
| 39 | static struct map_desc u8500_io_desc[] __initdata = { |
Rabin Vincent | 59778fb | 2010-02-12 06:23:07 +0100 | [diff] [blame] | 40 | __IO_DEV_DESC(U8500_UART2_BASE, SZ_4K), |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 41 | __IO_DEV_DESC(U8500_GIC_CPU_BASE, SZ_4K), |
| 42 | __IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K), |
| 43 | __IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K), |
| 44 | __IO_DEV_DESC(U8500_TWD_BASE, SZ_4K), |
| 45 | __IO_DEV_DESC(U8500_SCU_BASE, SZ_4K), |
| 46 | __IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K), |
| 47 | }; |
| 48 | |
| 49 | void __init u8500_map_io(void) |
| 50 | { |
| 51 | iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc)); |
| 52 | } |
| 53 | |
| 54 | void __init u8500_init_irq(void) |
| 55 | { |
| 56 | gic_dist_init(0, __io_address(U8500_GIC_DIST_BASE), 29); |
| 57 | gic_cpu_init(0, __io_address(U8500_GIC_CPU_BASE)); |
| 58 | } |
| 59 | |
| 60 | /* |
| 61 | * This function is called from the board init |
| 62 | */ |
| 63 | void __init u8500_init_devices(void) |
| 64 | { |
| 65 | /* Register the platform devices */ |
| 66 | platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs)); |
| 67 | |
| 68 | return ; |
| 69 | } |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame^] | 70 | |
| 71 | static void __init u8500_timer_init(void) |
| 72 | { |
| 73 | #ifdef CONFIG_LOCAL_TIMERS |
| 74 | /* Setup the local timer base */ |
| 75 | twd_base = __io_address(U8500_TWD_BASE); |
| 76 | #endif |
| 77 | /* Setup the MTU base */ |
| 78 | mtu_base = __io_address(U8500_MTU0_BASE); |
| 79 | |
| 80 | nmdk_timer_init(); |
| 81 | } |
| 82 | |
| 83 | struct sys_timer u8500_timer = { |
| 84 | .init = u8500_timer_init, |
| 85 | }; |