Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright STMicroelectronics, 2007. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | */ |
| 18 | |
| 19 | #include <linux/types.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/device.h> |
Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 22 | #include <linux/amba/bus.h> |
Rabin Vincent | 3e3c62c | 2010-03-03 04:52:34 +0100 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
Russell King | 35b47a405 | 2011-11-28 10:48:02 +0000 | [diff] [blame] | 24 | #include <linux/io.h> |
Linus Walleij | 7c77852 | 2012-01-09 12:40:02 +0100 | [diff] [blame] | 25 | #include <linux/slab.h> |
| 26 | #include <linux/irq.h> |
| 27 | #include <linux/dma-mapping.h> |
Linus Walleij | 4a31bd2 | 2012-01-11 13:52:34 +0100 | [diff] [blame] | 28 | #include <linux/platform_data/clk-nomadik.h> |
Linus Walleij | bb16bd9 | 2012-10-10 14:27:58 +0200 | [diff] [blame] | 29 | #include <linux/platform_data/pinctrl-nomadik.h> |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 30 | |
| 31 | #include <mach/hardware.h> |
| 32 | #include <mach/irqs.h> |
| 33 | #include <asm/mach/map.h> |
| 34 | #include <asm/hardware/vic.h> |
| 35 | |
Alessandro Rubini | 0b260fd | 2009-07-02 15:29:43 +0100 | [diff] [blame] | 36 | #include <asm/cacheflush.h> |
| 37 | #include <asm/hardware/cache-l2x0.h> |
| 38 | |
Linus Walleij | 61b3875 | 2011-11-28 12:20:53 +0100 | [diff] [blame] | 39 | #include "cpu-8815.h" |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 40 | |
Linus Walleij | 056c78d | 2012-01-09 11:42:39 +0100 | [diff] [blame] | 41 | /* The 8815 has 4 GPIO blocks, let's register them immediately */ |
| 42 | static resource_size_t __initdata cpu8815_gpio_base[] = { |
| 43 | NOMADIK_GPIO0_BASE, |
| 44 | NOMADIK_GPIO1_BASE, |
| 45 | NOMADIK_GPIO2_BASE, |
| 46 | NOMADIK_GPIO3_BASE, |
| 47 | }; |
| 48 | |
| 49 | static struct platform_device * |
| 50 | cpu8815_add_gpio(int id, resource_size_t addr, int irq, |
| 51 | struct nmk_gpio_platform_data *pdata) |
| 52 | { |
| 53 | struct resource resources[] = { |
| 54 | { |
| 55 | .start = addr, |
| 56 | .end = addr + 127, |
| 57 | .flags = IORESOURCE_MEM, |
| 58 | }, |
| 59 | { |
| 60 | .start = irq, |
| 61 | .end = irq, |
| 62 | .flags = IORESOURCE_IRQ, |
| 63 | } |
| 64 | }; |
| 65 | |
| 66 | return platform_device_register_resndata(NULL, "gpio", id, |
| 67 | resources, ARRAY_SIZE(resources), |
| 68 | pdata, sizeof(*pdata)); |
| 69 | } |
| 70 | |
| 71 | void cpu8815_add_gpios(resource_size_t *base, int num, int irq, |
| 72 | struct nmk_gpio_platform_data *pdata) |
| 73 | { |
| 74 | int first = 0; |
| 75 | int i; |
| 76 | |
| 77 | for (i = 0; i < num; i++, first += 32, irq++) { |
| 78 | pdata->first_gpio = first; |
| 79 | pdata->first_irq = NOMADIK_GPIO_TO_IRQ(first); |
| 80 | pdata->num_gpio = 32; |
| 81 | |
| 82 | cpu8815_add_gpio(i, base[i], irq, pdata); |
| 83 | } |
| 84 | } |
| 85 | |
Linus Walleij | 2601ccf | 2012-08-10 00:43:40 +0200 | [diff] [blame] | 86 | static inline void |
| 87 | cpu8815_add_pinctrl(struct device *parent, const char *name) |
| 88 | { |
| 89 | struct platform_device_info pdevinfo = { |
| 90 | .parent = parent, |
| 91 | .name = name, |
| 92 | .id = -1, |
| 93 | }; |
| 94 | |
| 95 | platform_device_register_full(&pdevinfo); |
| 96 | } |
| 97 | |
Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 98 | static int __init cpu8815_init(void) |
| 99 | { |
Linus Walleij | 056c78d | 2012-01-09 11:42:39 +0100 | [diff] [blame] | 100 | struct nmk_gpio_platform_data pdata = { |
| 101 | /* No custom data yet */ |
| 102 | }; |
Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 103 | |
Linus Walleij | 056c78d | 2012-01-09 11:42:39 +0100 | [diff] [blame] | 104 | cpu8815_add_gpios(cpu8815_gpio_base, ARRAY_SIZE(cpu8815_gpio_base), |
| 105 | IRQ_GPIO0, &pdata); |
Linus Walleij | 2601ccf | 2012-08-10 00:43:40 +0200 | [diff] [blame] | 106 | cpu8815_add_pinctrl(NULL, "pinctrl-stn8815"); |
Linus Walleij | 7c77852 | 2012-01-09 12:40:02 +0100 | [diff] [blame] | 107 | amba_apb_device_add(NULL, "rng", NOMADIK_RNG_BASE, SZ_4K, 0, 0, NULL, 0); |
Linus Walleij | b5111d9 | 2012-01-09 14:17:01 +0100 | [diff] [blame] | 108 | amba_apb_device_add(NULL, "rtc-pl031", NOMADIK_RTC_BASE, SZ_4K, IRQ_RTC_RTT, 0, NULL, 0); |
Alessandro Rubini | 2ec1d35 | 2009-07-02 15:29:12 +0100 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | arch_initcall(cpu8815_init); |
| 112 | |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 113 | /* All SoC devices live in the same area (see hardware.h) */ |
| 114 | static struct map_desc nomadik_io_desc[] __initdata = { |
| 115 | { |
| 116 | .virtual = NOMADIK_IO_VIRTUAL, |
| 117 | .pfn = __phys_to_pfn(NOMADIK_IO_PHYSICAL), |
| 118 | .length = NOMADIK_IO_SIZE, |
| 119 | .type = MT_DEVICE, |
| 120 | } |
| 121 | /* static ram and secured ram may be added later */ |
| 122 | }; |
| 123 | |
| 124 | void __init cpu8815_map_io(void) |
| 125 | { |
| 126 | iotable_init(nomadik_io_desc, ARRAY_SIZE(nomadik_io_desc)); |
| 127 | } |
| 128 | |
| 129 | void __init cpu8815_init_irq(void) |
| 130 | { |
| 131 | /* This modified VIC cell has two register blocks, at 0 and 0x20 */ |
| 132 | vic_init(io_p2v(NOMADIK_IC_BASE + 0x00), IRQ_VIC_START + 0, ~0, 0); |
| 133 | vic_init(io_p2v(NOMADIK_IC_BASE + 0x20), IRQ_VIC_START + 32, ~0, 0); |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 134 | |
| 135 | /* |
| 136 | * Init clocks here so that they are available for system timer |
| 137 | * initialization. |
| 138 | */ |
Linus Walleij | 4a31bd2 | 2012-01-11 13:52:34 +0100 | [diff] [blame] | 139 | nomadik_clk_init(); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* |
| 143 | * This function is called from the board init ("init_machine"). |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 144 | */ |
| 145 | void __init cpu8815_platform_init(void) |
| 146 | { |
Alessandro Rubini | 0b260fd | 2009-07-02 15:29:43 +0100 | [diff] [blame] | 147 | #ifdef CONFIG_CACHE_L2X0 |
| 148 | /* At full speed latency must be >=2, so 0x249 in low bits */ |
| 149 | l2x0_init(io_p2v(NOMADIK_L2CC_BASE), 0x00730249, 0xfe000fff); |
| 150 | #endif |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 151 | return; |
| 152 | } |
Russell King | 35b47a405 | 2011-11-28 10:48:02 +0000 | [diff] [blame] | 153 | |
| 154 | void cpu8815_restart(char mode, const char *cmd) |
| 155 | { |
| 156 | void __iomem *src_rstsr = io_p2v(NOMADIK_SRC_BASE + 0x18); |
| 157 | |
| 158 | /* FIXME: use egpio when implemented */ |
| 159 | |
| 160 | /* Write anything to Reset status register */ |
| 161 | writel(1, src_rstsr); |
| 162 | } |