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/hardware/gic.h> |
| 22 | #include <asm/mach/map.h> |
Srinidhi Kasagar | 8e797a7 | 2010-04-03 19:10:45 +0100 | [diff] [blame^] | 23 | #include <asm/hardware/cache-l2x0.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 24 | #include <plat/mtu.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 25 | #include <mach/hardware.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 26 | #include <mach/setup.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 27 | |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 28 | #define GPIO_RESOURCE(block) \ |
| 29 | { \ |
| 30 | .start = U8500_GPIOBANK##block##_BASE, \ |
| 31 | .end = U8500_GPIOBANK##block##_BASE + 127, \ |
| 32 | .flags = IORESOURCE_MEM, \ |
| 33 | }, \ |
| 34 | { \ |
| 35 | .start = IRQ_GPIO##block, \ |
| 36 | .end = IRQ_GPIO##block, \ |
| 37 | .flags = IORESOURCE_IRQ, \ |
| 38 | } |
| 39 | |
| 40 | #define GPIO_DEVICE(block) \ |
| 41 | { \ |
| 42 | .name = "gpio", \ |
| 43 | .id = block, \ |
| 44 | .num_resources = 2, \ |
| 45 | .resource = &u8500_gpio_resources[block * 2], \ |
| 46 | .dev = { \ |
| 47 | .platform_data = &u8500_gpio_data[block], \ |
| 48 | }, \ |
| 49 | } |
| 50 | |
| 51 | #define GPIO_DATA(_name, first) \ |
| 52 | { \ |
| 53 | .name = _name, \ |
| 54 | .first_gpio = first, \ |
| 55 | .first_irq = NOMADIK_GPIO_TO_IRQ(first), \ |
| 56 | } |
| 57 | |
| 58 | static struct nmk_gpio_platform_data u8500_gpio_data[] = { |
| 59 | GPIO_DATA("GPIO-0-31", 0), |
| 60 | GPIO_DATA("GPIO-32-63", 32), /* 37..63 not routed to pin */ |
| 61 | GPIO_DATA("GPIO-64-95", 64), |
| 62 | GPIO_DATA("GPIO-96-127", 96), /* 97..127 not routed to pin */ |
| 63 | GPIO_DATA("GPIO-128-159", 128), |
| 64 | GPIO_DATA("GPIO-160-191", 160), /* 172..191 not routed to pin */ |
| 65 | GPIO_DATA("GPIO-192-223", 192), |
| 66 | GPIO_DATA("GPIO-224-255", 224), /* 231..255 not routed to pin */ |
| 67 | GPIO_DATA("GPIO-256-288", 256), /* 258..288 not routed to pin */ |
| 68 | }; |
| 69 | |
| 70 | static struct resource u8500_gpio_resources[] = { |
| 71 | GPIO_RESOURCE(0), |
| 72 | GPIO_RESOURCE(1), |
| 73 | GPIO_RESOURCE(2), |
| 74 | GPIO_RESOURCE(3), |
| 75 | GPIO_RESOURCE(4), |
| 76 | GPIO_RESOURCE(5), |
| 77 | GPIO_RESOURCE(6), |
| 78 | GPIO_RESOURCE(7), |
| 79 | GPIO_RESOURCE(8), |
| 80 | }; |
| 81 | |
| 82 | static struct platform_device u8500_gpio_devs[] = { |
| 83 | GPIO_DEVICE(0), |
| 84 | GPIO_DEVICE(1), |
| 85 | GPIO_DEVICE(2), |
| 86 | GPIO_DEVICE(3), |
| 87 | GPIO_DEVICE(4), |
| 88 | GPIO_DEVICE(5), |
| 89 | GPIO_DEVICE(6), |
| 90 | GPIO_DEVICE(7), |
| 91 | GPIO_DEVICE(8), |
| 92 | }; |
| 93 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 94 | static struct platform_device *platform_devs[] __initdata = { |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 95 | &u8500_gpio_devs[0], |
| 96 | &u8500_gpio_devs[1], |
| 97 | &u8500_gpio_devs[2], |
| 98 | &u8500_gpio_devs[3], |
| 99 | &u8500_gpio_devs[4], |
| 100 | &u8500_gpio_devs[5], |
| 101 | &u8500_gpio_devs[6], |
| 102 | &u8500_gpio_devs[7], |
| 103 | &u8500_gpio_devs[8], |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | #define __IO_DEV_DESC(x, sz) { \ |
| 107 | .virtual = IO_ADDRESS(x), \ |
| 108 | .pfn = __phys_to_pfn(x), \ |
| 109 | .length = sz, \ |
| 110 | .type = MT_DEVICE, \ |
| 111 | } |
| 112 | |
| 113 | /* minimum static i/o mapping required to boot U8500 platforms */ |
| 114 | static struct map_desc u8500_io_desc[] __initdata = { |
Rabin Vincent | 59778fb | 2010-02-12 06:23:07 +0100 | [diff] [blame] | 115 | __IO_DEV_DESC(U8500_UART2_BASE, SZ_4K), |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 116 | __IO_DEV_DESC(U8500_GIC_CPU_BASE, SZ_4K), |
| 117 | __IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K), |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 118 | __IO_DEV_DESC(U8500_TWD_BASE, SZ_4K), |
| 119 | __IO_DEV_DESC(U8500_SCU_BASE, SZ_4K), |
| 120 | __IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K), |
Rabin Vincent | 1df20af | 2010-03-01 05:07:47 +0100 | [diff] [blame] | 121 | __IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K), |
| 122 | __IO_DEV_DESC(U8500_CLKRST1_BASE, SZ_4K), |
| 123 | __IO_DEV_DESC(U8500_CLKRST2_BASE, SZ_4K), |
| 124 | __IO_DEV_DESC(U8500_CLKRST3_BASE, SZ_4K), |
| 125 | __IO_DEV_DESC(U8500_CLKRST5_BASE, SZ_4K), |
| 126 | __IO_DEV_DESC(U8500_CLKRST6_BASE, SZ_4K), |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 127 | __IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K), |
| 128 | __IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K), |
| 129 | __IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K), |
| 130 | __IO_DEV_DESC(U8500_GPIO5_BASE, SZ_4K), |
Srinidhi Kasagar | 8e797a7 | 2010-04-03 19:10:45 +0100 | [diff] [blame^] | 131 | __IO_DEV_DESC(U8500_L2CC_BASE, SZ_4K), |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 132 | }; |
| 133 | |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 134 | static struct map_desc u8500ed_io_desc[] __initdata = { |
| 135 | __IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K), |
Rabin Vincent | 1df20af | 2010-03-01 05:07:47 +0100 | [diff] [blame] | 136 | __IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K), |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 137 | }; |
| 138 | |
| 139 | static struct map_desc u8500v1_io_desc[] __initdata = { |
| 140 | __IO_DEV_DESC(U8500_MTU0_BASE_V1, SZ_4K), |
| 141 | }; |
| 142 | |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 143 | void __init u8500_map_io(void) |
| 144 | { |
| 145 | iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc)); |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 146 | |
| 147 | if (cpu_is_u8500ed()) |
| 148 | iotable_init(u8500ed_io_desc, ARRAY_SIZE(u8500ed_io_desc)); |
| 149 | else |
| 150 | iotable_init(u8500v1_io_desc, ARRAY_SIZE(u8500v1_io_desc)); |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | void __init u8500_init_irq(void) |
| 154 | { |
| 155 | gic_dist_init(0, __io_address(U8500_GIC_DIST_BASE), 29); |
| 156 | gic_cpu_init(0, __io_address(U8500_GIC_CPU_BASE)); |
| 157 | } |
| 158 | |
| 159 | /* |
| 160 | * This function is called from the board init |
| 161 | */ |
| 162 | void __init u8500_init_devices(void) |
| 163 | { |
| 164 | /* Register the platform devices */ |
| 165 | platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs)); |
| 166 | |
| 167 | return ; |
| 168 | } |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 169 | |
| 170 | static void __init u8500_timer_init(void) |
| 171 | { |
| 172 | #ifdef CONFIG_LOCAL_TIMERS |
| 173 | /* Setup the local timer base */ |
| 174 | twd_base = __io_address(U8500_TWD_BASE); |
| 175 | #endif |
| 176 | /* Setup the MTU base */ |
Rabin Vincent | 75a36ee | 2010-03-01 05:05:56 +0100 | [diff] [blame] | 177 | if (cpu_is_u8500ed()) |
| 178 | mtu_base = __io_address(U8500_MTU0_BASE_ED); |
| 179 | else |
| 180 | mtu_base = __io_address(U8500_MTU0_BASE_V1); |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 181 | |
| 182 | nmdk_timer_init(); |
| 183 | } |
| 184 | |
| 185 | struct sys_timer u8500_timer = { |
| 186 | .init = u8500_timer_init, |
| 187 | }; |
Srinidhi Kasagar | 8e797a7 | 2010-04-03 19:10:45 +0100 | [diff] [blame^] | 188 | |
| 189 | #ifdef CONFIG_CACHE_L2X0 |
| 190 | static int u8500_l2x0_init(void) |
| 191 | { |
| 192 | void __iomem *l2x0_base; |
| 193 | |
| 194 | l2x0_base = __io_address(U8500_L2CC_BASE); |
| 195 | |
| 196 | /* 64KB way size, 8 way associativity, force WA */ |
| 197 | l2x0_init(l2x0_base, 0x3e060000, 0xc0000fff); |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | early_initcall(u8500_l2x0_init); |
| 202 | #endif |