Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 5 | * Author: Lee Jones <lee.jones@linaro.org> for ST-Ericsson |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 6 | * License terms: GNU General Public License (GPL) version 2 |
| 7 | */ |
| 8 | |
| 9 | #include <linux/platform_device.h> |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 10 | #include <linux/io.h> |
Linus Walleij | 9a47a8d | 2013-03-21 12:27:25 +0100 | [diff] [blame] | 11 | #include <linux/mfd/dbx500-prcmu.h> |
Mattias Wallin | 7ed00af | 2011-05-27 10:30:34 +0200 | [diff] [blame] | 12 | #include <linux/clksrc-dbx500-prcmu.h> |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 13 | #include <linux/sys_soc.h> |
| 14 | #include <linux/err.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/stat.h> |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 17 | #include <linux/of.h> |
| 18 | #include <linux/of_irq.h> |
Lee Jones | 1ae3255 | 2012-10-23 15:55:05 +0100 | [diff] [blame] | 19 | #include <linux/irq.h> |
Rob Herring | 0529e315 | 2012-11-05 16:18:28 -0600 | [diff] [blame] | 20 | #include <linux/irqchip.h> |
Rob Herring | 520f7bd | 2012-12-27 13:10:24 -0600 | [diff] [blame] | 21 | #include <linux/irqchip/arm-gic.h> |
Ulf Hansson | ebc96db | 2012-08-27 15:45:53 +0200 | [diff] [blame] | 22 | #include <linux/platform_data/clk-ux500.h> |
Linus Walleij | 1e22a8c | 2013-03-19 15:36:12 +0100 | [diff] [blame] | 23 | #include <linux/platform_data/arm-ux500-pm.h> |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 24 | |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 25 | #include <asm/mach/map.h> |
| 26 | |
Arnd Bergmann | e657bcf | 2013-03-21 22:51:12 +0100 | [diff] [blame] | 27 | #include "setup.h" |
| 28 | #include "devices.h" |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 29 | |
Lee Jones | 0ddf855 | 2012-09-25 16:03:45 +0100 | [diff] [blame] | 30 | #include "board-mop500.h" |
Linus Walleij | 174e779 | 2013-03-19 15:41:55 +0100 | [diff] [blame] | 31 | #include "db8500-regs.h" |
Linus Walleij | 7a4f260 | 2012-09-19 19:31:19 +0200 | [diff] [blame] | 32 | #include "id.h" |
Lee Jones | 0ddf855 | 2012-09-25 16:03:45 +0100 | [diff] [blame] | 33 | |
Lee Jones | a60b57e | 2012-04-19 21:36:31 +0100 | [diff] [blame] | 34 | /* |
| 35 | * FIXME: Should we set up the GPIO domain here? |
| 36 | * |
| 37 | * The problem is that we cannot put the interrupt resources into the platform |
| 38 | * device until the irqdomain has been added. Right now, we set the GIC interrupt |
| 39 | * domain from init_irq(), then load the gpio driver from |
| 40 | * core_initcall(nmk_gpio_init) and add the platform devices from |
| 41 | * arch_initcall(customize_machine). |
| 42 | * |
| 43 | * This feels fragile because it depends on the gpio device getting probed |
| 44 | * _before_ any device uses the gpio interrupts. |
| 45 | */ |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 46 | void __init ux500_init_irq(void) |
| 47 | { |
Rabin Vincent | 92389ca | 2010-12-08 11:07:57 +0530 | [diff] [blame] | 48 | void __iomem *dist_base; |
| 49 | void __iomem *cpu_base; |
| 50 | |
Linus Walleij | 7e1f97e | 2012-08-22 10:55:03 +0200 | [diff] [blame] | 51 | gic_arch_extn.flags = IRQCHIP_SKIP_SET_WAKE | IRQCHIP_MASK_ON_SUSPEND; |
| 52 | |
Linus Walleij | e1bbb55 | 2012-08-09 17:10:36 +0200 | [diff] [blame] | 53 | if (cpu_is_u8500_family() || cpu_is_ux540_family()) { |
Rabin Vincent | 92389ca | 2010-12-08 11:07:57 +0530 | [diff] [blame] | 54 | dist_base = __io_address(U8500_GIC_DIST_BASE); |
| 55 | cpu_base = __io_address(U8500_GIC_CPU_BASE); |
| 56 | } else |
| 57 | ux500_unknown_soc(); |
| 58 | |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 59 | #ifdef CONFIG_OF |
| 60 | if (of_have_populated_dt()) |
Rob Herring | 0529e315 | 2012-11-05 16:18:28 -0600 | [diff] [blame] | 61 | irqchip_init(); |
Lee Jones | dab6487 | 2012-03-07 17:22:30 +0000 | [diff] [blame] | 62 | else |
| 63 | #endif |
| 64 | gic_init(0, 29, dist_base, cpu_base); |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 65 | |
| 66 | /* |
| 67 | * Init clocks here so that they are available for system timer |
| 68 | * initialization. |
| 69 | */ |
Linus Walleij | 9a47a8d | 2013-03-21 12:27:25 +0100 | [diff] [blame] | 70 | if (cpu_is_u8500_family()) { |
| 71 | prcmu_early_init(U8500_PRCMU_BASE, SZ_8K - 1); |
Linus Walleij | 1e22a8c | 2013-03-19 15:36:12 +0100 | [diff] [blame] | 72 | ux500_pm_init(U8500_PRCMU_BASE, SZ_8K - 1); |
Linus Walleij | 9b81906 | 2013-03-19 11:21:56 +0100 | [diff] [blame] | 73 | u8500_clk_init(U8500_CLKRST1_BASE, U8500_CLKRST2_BASE, |
| 74 | U8500_CLKRST3_BASE, U8500_CLKRST5_BASE, |
| 75 | U8500_CLKRST6_BASE); |
Linus Walleij | 9a47a8d | 2013-03-21 12:27:25 +0100 | [diff] [blame] | 76 | } else if (cpu_is_u9540()) { |
| 77 | prcmu_early_init(U8500_PRCMU_BASE, SZ_8K - 1); |
Linus Walleij | 1e22a8c | 2013-03-19 15:36:12 +0100 | [diff] [blame] | 78 | ux500_pm_init(U8500_PRCMU_BASE, SZ_8K - 1); |
Philippe Begnic | 1237e59 | 2013-05-27 14:41:29 +0200 | [diff] [blame] | 79 | u9540_clk_init(U8500_CLKRST1_BASE, U8500_CLKRST2_BASE, |
Linus Walleij | 9b81906 | 2013-03-19 11:21:56 +0100 | [diff] [blame] | 80 | U8500_CLKRST3_BASE, U8500_CLKRST5_BASE, |
| 81 | U8500_CLKRST6_BASE); |
Linus Walleij | 9a47a8d | 2013-03-21 12:27:25 +0100 | [diff] [blame] | 82 | } else if (cpu_is_u8540()) { |
| 83 | prcmu_early_init(U8500_PRCMU_BASE, SZ_8K + SZ_4K - 1); |
Linus Walleij | 1e22a8c | 2013-03-19 15:36:12 +0100 | [diff] [blame] | 84 | ux500_pm_init(U8500_PRCMU_BASE, SZ_8K + SZ_4K - 1); |
Philippe Begnic | 1237e59 | 2013-05-27 14:41:29 +0200 | [diff] [blame] | 85 | u8540_clk_init(U8500_CLKRST1_BASE, U8500_CLKRST2_BASE, |
| 86 | U8500_CLKRST3_BASE, U8500_CLKRST5_BASE, |
| 87 | U8500_CLKRST6_BASE); |
Linus Walleij | 9a47a8d | 2013-03-21 12:27:25 +0100 | [diff] [blame] | 88 | } |
Rabin Vincent | 178980f | 2010-05-03 07:39:02 +0100 | [diff] [blame] | 89 | } |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 90 | |
Shawn Guo | a010bc2 | 2012-05-02 17:10:07 +0800 | [diff] [blame] | 91 | void __init ux500_init_late(void) |
| 92 | { |
Lee Jones | 0ddf855 | 2012-09-25 16:03:45 +0100 | [diff] [blame] | 93 | mop500_uib_init(); |
Shawn Guo | a010bc2 | 2012-05-02 17:10:07 +0800 | [diff] [blame] | 94 | } |
| 95 | |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 96 | static const char * __init ux500_get_machine(void) |
| 97 | { |
| 98 | return kasprintf(GFP_KERNEL, "DB%4x", dbx500_partnumber()); |
| 99 | } |
| 100 | |
| 101 | static const char * __init ux500_get_family(void) |
| 102 | { |
| 103 | return kasprintf(GFP_KERNEL, "ux500"); |
| 104 | } |
| 105 | |
| 106 | static const char * __init ux500_get_revision(void) |
| 107 | { |
| 108 | unsigned int rev = dbx500_revision(); |
| 109 | |
| 110 | if (rev == 0x01) |
| 111 | return kasprintf(GFP_KERNEL, "%s", "ED"); |
| 112 | else if (rev >= 0xA0) |
| 113 | return kasprintf(GFP_KERNEL, "%d.%d", |
| 114 | (rev >> 4) - 0xA + 1, rev & 0xf); |
| 115 | |
| 116 | return kasprintf(GFP_KERNEL, "%s", "Unknown"); |
| 117 | } |
| 118 | |
| 119 | static ssize_t ux500_get_process(struct device *dev, |
| 120 | struct device_attribute *attr, |
| 121 | char *buf) |
| 122 | { |
| 123 | if (dbx500_id.process == 0x00) |
| 124 | return sprintf(buf, "Standard\n"); |
| 125 | |
| 126 | return sprintf(buf, "%02xnm\n", dbx500_id.process); |
| 127 | } |
| 128 | |
| 129 | static void __init soc_info_populate(struct soc_device_attribute *soc_dev_attr, |
| 130 | const char *soc_id) |
| 131 | { |
| 132 | soc_dev_attr->soc_id = soc_id; |
| 133 | soc_dev_attr->machine = ux500_get_machine(); |
| 134 | soc_dev_attr->family = ux500_get_family(); |
| 135 | soc_dev_attr->revision = ux500_get_revision(); |
| 136 | } |
| 137 | |
| 138 | struct device_attribute ux500_soc_attr = |
| 139 | __ATTR(process, S_IRUGO, ux500_get_process, NULL); |
| 140 | |
| 141 | struct device * __init ux500_soc_device_init(const char *soc_id) |
| 142 | { |
| 143 | struct device *parent; |
| 144 | struct soc_device *soc_dev; |
| 145 | struct soc_device_attribute *soc_dev_attr; |
| 146 | |
| 147 | soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL); |
| 148 | if (!soc_dev_attr) |
| 149 | return ERR_PTR(-ENOMEM); |
| 150 | |
| 151 | soc_info_populate(soc_dev_attr, soc_id); |
| 152 | |
| 153 | soc_dev = soc_device_register(soc_dev_attr); |
Russell King | b269b17 | 2013-02-24 10:42:27 +0000 | [diff] [blame] | 154 | if (IS_ERR(soc_dev)) { |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 155 | kfree(soc_dev_attr); |
| 156 | return NULL; |
| 157 | } |
| 158 | |
| 159 | parent = soc_device_to_device(soc_dev); |
Russell King | b269b17 | 2013-02-24 10:42:27 +0000 | [diff] [blame] | 160 | device_create_file(parent, &ux500_soc_attr); |
Lee Jones | eda413c | 2012-02-06 11:22:24 -0800 | [diff] [blame] | 161 | |
| 162 | return parent; |
| 163 | } |