diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/hw_random/Kconfig | 2 | ||||
-rw-r--r-- | drivers/clk/ux500/u8500_clk.c | 11 | ||||
-rw-r--r-- | drivers/clocksource/Kconfig | 17 | ||||
-rw-r--r-- | drivers/clocksource/Makefile | 1 | ||||
-rw-r--r-- | drivers/clocksource/nomadik-mtu.c | 230 | ||||
-rw-r--r-- | drivers/crypto/ux500/cryp/cryp_core.c | 3 | ||||
-rw-r--r-- | drivers/dma/ste_dma40.c | 3 | ||||
-rw-r--r-- | drivers/dma/ste_dma40_ll.c | 2 | ||||
-rw-r--r-- | drivers/input/keyboard/Kconfig | 2 | ||||
-rw-r--r-- | drivers/mfd/ab8500-core.c | 13 | ||||
-rw-r--r-- | drivers/mfd/db8500-prcmu.c | 12 | ||||
-rw-r--r-- | drivers/mtd/nand/Kconfig | 2 | ||||
-rw-r--r-- | drivers/pinctrl/pinctrl-nomadik.c | 3 |
13 files changed, 271 insertions, 30 deletions
diff --git a/drivers/char/hw_random/Kconfig b/drivers/char/hw_random/Kconfig index c58ea9b80b1a..c5a0262251bc 100644 --- a/drivers/char/hw_random/Kconfig +++ b/drivers/char/hw_random/Kconfig | |||
@@ -216,7 +216,7 @@ config HW_RANDOM_MXC_RNGA | |||
216 | 216 | ||
217 | config HW_RANDOM_NOMADIK | 217 | config HW_RANDOM_NOMADIK |
218 | tristate "ST-Ericsson Nomadik Random Number Generator support" | 218 | tristate "ST-Ericsson Nomadik Random Number Generator support" |
219 | depends on HW_RANDOM && PLAT_NOMADIK | 219 | depends on HW_RANDOM && ARCH_NOMADIK |
220 | ---help--- | 220 | ---help--- |
221 | This driver provides kernel-side support for the Random Number | 221 | This driver provides kernel-side support for the Random Number |
222 | Generator hardware found on ST-Ericsson SoCs (8815 and 8500). | 222 | Generator hardware found on ST-Ericsson SoCs (8815 and 8500). |
diff --git a/drivers/clk/ux500/u8500_clk.c b/drivers/clk/ux500/u8500_clk.c index 7d0e0258f204..6b889a0e90b3 100644 --- a/drivers/clk/ux500/u8500_clk.c +++ b/drivers/clk/ux500/u8500_clk.c | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <linux/clk-provider.h> | 12 | #include <linux/clk-provider.h> |
13 | #include <linux/mfd/dbx500-prcmu.h> | 13 | #include <linux/mfd/dbx500-prcmu.h> |
14 | #include <linux/platform_data/clk-ux500.h> | 14 | #include <linux/platform_data/clk-ux500.h> |
15 | 15 | #include <mach/db8500-regs.h> | |
16 | #include "clk.h" | 16 | #include "clk.h" |
17 | 17 | ||
18 | void u8500_clk_init(void) | 18 | void u8500_clk_init(void) |
@@ -160,12 +160,6 @@ void u8500_clk_init(void) | |||
160 | clk = clk_reg_prcmu_gate("uiccclk", NULL, PRCMU_UICCCLK, CLK_IS_ROOT); | 160 | clk = clk_reg_prcmu_gate("uiccclk", NULL, PRCMU_UICCCLK, CLK_IS_ROOT); |
161 | clk_register_clkdev(clk, NULL, "uicc"); | 161 | clk_register_clkdev(clk, NULL, "uicc"); |
162 | 162 | ||
163 | /* | ||
164 | * FIXME: The MTU clocks might need some kind of "parent muxed join" | ||
165 | * and these have no K-clocks. For now, we ignore the missing | ||
166 | * connection to the corresponding P-clocks, p6_mtu0_clk and | ||
167 | * p6_mtu1_clk. Instead timclk is used which is the valid parent. | ||
168 | */ | ||
169 | clk = clk_reg_prcmu_gate("timclk", NULL, PRCMU_TIMCLK, CLK_IS_ROOT); | 163 | clk = clk_reg_prcmu_gate("timclk", NULL, PRCMU_TIMCLK, CLK_IS_ROOT); |
170 | clk_register_clkdev(clk, NULL, "mtu0"); | 164 | clk_register_clkdev(clk, NULL, "mtu0"); |
171 | clk_register_clkdev(clk, NULL, "mtu1"); | 165 | clk_register_clkdev(clk, NULL, "mtu1"); |
@@ -405,8 +399,11 @@ void u8500_clk_init(void) | |||
405 | 399 | ||
406 | clk = clk_reg_prcc_pclk("p6_pclk6", "per6clk", U8500_CLKRST6_BASE, | 400 | clk = clk_reg_prcc_pclk("p6_pclk6", "per6clk", U8500_CLKRST6_BASE, |
407 | BIT(6), 0); | 401 | BIT(6), 0); |
402 | clk_register_clkdev(clk, "apb_pclk", "mtu0"); | ||
403 | |||
408 | clk = clk_reg_prcc_pclk("p6_pclk7", "per6clk", U8500_CLKRST6_BASE, | 404 | clk = clk_reg_prcc_pclk("p6_pclk7", "per6clk", U8500_CLKRST6_BASE, |
409 | BIT(7), 0); | 405 | BIT(7), 0); |
406 | clk_register_clkdev(clk, "apb_pclk", "mtu1"); | ||
410 | 407 | ||
411 | /* PRCC K-clocks | 408 | /* PRCC K-clocks |
412 | * | 409 | * |
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig index a0985732f1e2..7fdcbd3f4da5 100644 --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig | |||
@@ -25,6 +25,21 @@ config ARMADA_370_XP_TIMER | |||
25 | config SUNXI_TIMER | 25 | config SUNXI_TIMER |
26 | bool | 26 | bool |
27 | 27 | ||
28 | config CLKSRC_NOMADIK_MTU | ||
29 | bool | ||
30 | depends on (ARCH_NOMADIK || ARCH_U8500) | ||
31 | select CLKSRC_MMIO | ||
32 | help | ||
33 | Support for Multi Timer Unit. MTU provides access | ||
34 | to multiple interrupt generating programmable | ||
35 | 32-bit free running decrementing counters. | ||
36 | |||
37 | config CLKSRC_NOMADIK_MTU_SCHED_CLOCK | ||
38 | bool | ||
39 | depends on CLKSRC_NOMADIK_MTU | ||
40 | help | ||
41 | Use the Multi Timer Unit as the sched_clock. | ||
42 | |||
28 | config CLKSRC_DBX500_PRCMU | 43 | config CLKSRC_DBX500_PRCMU |
29 | bool "Clocksource PRCMU Timer" | 44 | bool "Clocksource PRCMU Timer" |
30 | depends on UX500_SOC_DB8500 | 45 | depends on UX500_SOC_DB8500 |
@@ -34,7 +49,7 @@ config CLKSRC_DBX500_PRCMU | |||
34 | 49 | ||
35 | config CLKSRC_DBX500_PRCMU_SCHED_CLOCK | 50 | config CLKSRC_DBX500_PRCMU_SCHED_CLOCK |
36 | bool "Clocksource PRCMU Timer sched_clock" | 51 | bool "Clocksource PRCMU Timer sched_clock" |
37 | depends on (CLKSRC_DBX500_PRCMU && !NOMADIK_MTU_SCHED_CLOCK) | 52 | depends on (CLKSRC_DBX500_PRCMU && !CLKSRC_NOMADIK_MTU_SCHED_CLOCK) |
38 | default y | 53 | default y |
39 | help | 54 | help |
40 | Use the always on PRCMU Timer as sched_clock | 55 | Use the always on PRCMU Timer as sched_clock |
diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile index 36f06de4c5ab..f93453d01673 100644 --- a/drivers/clocksource/Makefile +++ b/drivers/clocksource/Makefile | |||
@@ -11,6 +11,7 @@ obj-$(CONFIG_CLKBLD_I8253) += i8253.o | |||
11 | obj-$(CONFIG_CLKSRC_MMIO) += mmio.o | 11 | obj-$(CONFIG_CLKSRC_MMIO) += mmio.o |
12 | obj-$(CONFIG_DW_APB_TIMER) += dw_apb_timer.o | 12 | obj-$(CONFIG_DW_APB_TIMER) += dw_apb_timer.o |
13 | obj-$(CONFIG_DW_APB_TIMER_OF) += dw_apb_timer_of.o | 13 | obj-$(CONFIG_DW_APB_TIMER_OF) += dw_apb_timer_of.o |
14 | obj-$(CONFIG_CLKSRC_NOMADIK_MTU) += nomadik-mtu.o | ||
14 | obj-$(CONFIG_CLKSRC_DBX500_PRCMU) += clksrc-dbx500-prcmu.o | 15 | obj-$(CONFIG_CLKSRC_DBX500_PRCMU) += clksrc-dbx500-prcmu.o |
15 | obj-$(CONFIG_ARMADA_370_XP_TIMER) += time-armada-370-xp.o | 16 | obj-$(CONFIG_ARMADA_370_XP_TIMER) += time-armada-370-xp.o |
16 | obj-$(CONFIG_ARCH_BCM2835) += bcm2835_timer.o | 17 | obj-$(CONFIG_ARCH_BCM2835) += bcm2835_timer.o |
diff --git a/drivers/clocksource/nomadik-mtu.c b/drivers/clocksource/nomadik-mtu.c new file mode 100644 index 000000000000..8914c3c1c88b --- /dev/null +++ b/drivers/clocksource/nomadik-mtu.c | |||
@@ -0,0 +1,230 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2008 STMicroelectronics | ||
3 | * Copyright (C) 2010 Alessandro Rubini | ||
4 | * Copyright (C) 2010 Linus Walleij for ST-Ericsson | ||
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 | #include <linux/init.h> | ||
11 | #include <linux/interrupt.h> | ||
12 | #include <linux/irq.h> | ||
13 | #include <linux/io.h> | ||
14 | #include <linux/clockchips.h> | ||
15 | #include <linux/clocksource.h> | ||
16 | #include <linux/clk.h> | ||
17 | #include <linux/jiffies.h> | ||
18 | #include <linux/err.h> | ||
19 | #include <linux/platform_data/clocksource-nomadik-mtu.h> | ||
20 | #include <asm/mach/time.h> | ||
21 | #include <asm/sched_clock.h> | ||
22 | |||
23 | /* | ||
24 | * The MTU device hosts four different counters, with 4 set of | ||
25 | * registers. These are register names. | ||
26 | */ | ||
27 | |||
28 | #define MTU_IMSC 0x00 /* Interrupt mask set/clear */ | ||
29 | #define MTU_RIS 0x04 /* Raw interrupt status */ | ||
30 | #define MTU_MIS 0x08 /* Masked interrupt status */ | ||
31 | #define MTU_ICR 0x0C /* Interrupt clear register */ | ||
32 | |||
33 | /* per-timer registers take 0..3 as argument */ | ||
34 | #define MTU_LR(x) (0x10 + 0x10 * (x) + 0x00) /* Load value */ | ||
35 | #define MTU_VAL(x) (0x10 + 0x10 * (x) + 0x04) /* Current value */ | ||
36 | #define MTU_CR(x) (0x10 + 0x10 * (x) + 0x08) /* Control reg */ | ||
37 | #define MTU_BGLR(x) (0x10 + 0x10 * (x) + 0x0c) /* At next overflow */ | ||
38 | |||
39 | /* bits for the control register */ | ||
40 | #define MTU_CRn_ENA 0x80 | ||
41 | #define MTU_CRn_PERIODIC 0x40 /* if 0 = free-running */ | ||
42 | #define MTU_CRn_PRESCALE_MASK 0x0c | ||
43 | #define MTU_CRn_PRESCALE_1 0x00 | ||
44 | #define MTU_CRn_PRESCALE_16 0x04 | ||
45 | #define MTU_CRn_PRESCALE_256 0x08 | ||
46 | #define MTU_CRn_32BITS 0x02 | ||
47 | #define MTU_CRn_ONESHOT 0x01 /* if 0 = wraps reloading from BGLR*/ | ||
48 | |||
49 | /* Other registers are usual amba/primecell registers, currently not used */ | ||
50 | #define MTU_ITCR 0xff0 | ||
51 | #define MTU_ITOP 0xff4 | ||
52 | |||
53 | #define MTU_PERIPH_ID0 0xfe0 | ||
54 | #define MTU_PERIPH_ID1 0xfe4 | ||
55 | #define MTU_PERIPH_ID2 0xfe8 | ||
56 | #define MTU_PERIPH_ID3 0xfeC | ||
57 | |||
58 | #define MTU_PCELL0 0xff0 | ||
59 | #define MTU_PCELL1 0xff4 | ||
60 | #define MTU_PCELL2 0xff8 | ||
61 | #define MTU_PCELL3 0xffC | ||
62 | |||
63 | static void __iomem *mtu_base; | ||
64 | static bool clkevt_periodic; | ||
65 | static u32 clk_prescale; | ||
66 | static u32 nmdk_cycle; /* write-once */ | ||
67 | |||
68 | #ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK | ||
69 | /* | ||
70 | * Override the global weak sched_clock symbol with this | ||
71 | * local implementation which uses the clocksource to get some | ||
72 | * better resolution when scheduling the kernel. | ||
73 | */ | ||
74 | static u32 notrace nomadik_read_sched_clock(void) | ||
75 | { | ||
76 | if (unlikely(!mtu_base)) | ||
77 | return 0; | ||
78 | |||
79 | return -readl(mtu_base + MTU_VAL(0)); | ||
80 | } | ||
81 | #endif | ||
82 | |||
83 | /* Clockevent device: use one-shot mode */ | ||
84 | static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev) | ||
85 | { | ||
86 | writel(1 << 1, mtu_base + MTU_IMSC); | ||
87 | writel(evt, mtu_base + MTU_LR(1)); | ||
88 | /* Load highest value, enable device, enable interrupts */ | ||
89 | writel(MTU_CRn_ONESHOT | clk_prescale | | ||
90 | MTU_CRn_32BITS | MTU_CRn_ENA, | ||
91 | mtu_base + MTU_CR(1)); | ||
92 | |||
93 | return 0; | ||
94 | } | ||
95 | |||
96 | void nmdk_clkevt_reset(void) | ||
97 | { | ||
98 | if (clkevt_periodic) { | ||
99 | /* Timer: configure load and background-load, and fire it up */ | ||
100 | writel(nmdk_cycle, mtu_base + MTU_LR(1)); | ||
101 | writel(nmdk_cycle, mtu_base + MTU_BGLR(1)); | ||
102 | |||
103 | writel(MTU_CRn_PERIODIC | clk_prescale | | ||
104 | MTU_CRn_32BITS | MTU_CRn_ENA, | ||
105 | mtu_base + MTU_CR(1)); | ||
106 | writel(1 << 1, mtu_base + MTU_IMSC); | ||
107 | } else { | ||
108 | /* Generate an interrupt to start the clockevent again */ | ||
109 | (void) nmdk_clkevt_next(nmdk_cycle, NULL); | ||
110 | } | ||
111 | } | ||
112 | |||
113 | static void nmdk_clkevt_mode(enum clock_event_mode mode, | ||
114 | struct clock_event_device *dev) | ||
115 | { | ||
116 | switch (mode) { | ||
117 | case CLOCK_EVT_MODE_PERIODIC: | ||
118 | clkevt_periodic = true; | ||
119 | nmdk_clkevt_reset(); | ||
120 | break; | ||
121 | case CLOCK_EVT_MODE_ONESHOT: | ||
122 | clkevt_periodic = false; | ||
123 | break; | ||
124 | case CLOCK_EVT_MODE_SHUTDOWN: | ||
125 | case CLOCK_EVT_MODE_UNUSED: | ||
126 | writel(0, mtu_base + MTU_IMSC); | ||
127 | /* disable timer */ | ||
128 | writel(0, mtu_base + MTU_CR(1)); | ||
129 | /* load some high default value */ | ||
130 | writel(0xffffffff, mtu_base + MTU_LR(1)); | ||
131 | break; | ||
132 | case CLOCK_EVT_MODE_RESUME: | ||
133 | break; | ||
134 | } | ||
135 | } | ||
136 | |||
137 | static struct clock_event_device nmdk_clkevt = { | ||
138 | .name = "mtu_1", | ||
139 | .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC, | ||
140 | .rating = 200, | ||
141 | .set_mode = nmdk_clkevt_mode, | ||
142 | .set_next_event = nmdk_clkevt_next, | ||
143 | }; | ||
144 | |||
145 | /* | ||
146 | * IRQ Handler for timer 1 of the MTU block. | ||
147 | */ | ||
148 | static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id) | ||
149 | { | ||
150 | struct clock_event_device *evdev = dev_id; | ||
151 | |||
152 | writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */ | ||
153 | evdev->event_handler(evdev); | ||
154 | return IRQ_HANDLED; | ||
155 | } | ||
156 | |||
157 | static struct irqaction nmdk_timer_irq = { | ||
158 | .name = "Nomadik Timer Tick", | ||
159 | .flags = IRQF_DISABLED | IRQF_TIMER, | ||
160 | .handler = nmdk_timer_interrupt, | ||
161 | .dev_id = &nmdk_clkevt, | ||
162 | }; | ||
163 | |||
164 | void nmdk_clksrc_reset(void) | ||
165 | { | ||
166 | /* Disable */ | ||
167 | writel(0, mtu_base + MTU_CR(0)); | ||
168 | |||
169 | /* ClockSource: configure load and background-load, and fire it up */ | ||
170 | writel(nmdk_cycle, mtu_base + MTU_LR(0)); | ||
171 | writel(nmdk_cycle, mtu_base + MTU_BGLR(0)); | ||
172 | |||
173 | writel(clk_prescale | MTU_CRn_32BITS | MTU_CRn_ENA, | ||
174 | mtu_base + MTU_CR(0)); | ||
175 | } | ||
176 | |||
177 | void __init nmdk_timer_init(void __iomem *base, int irq) | ||
178 | { | ||
179 | unsigned long rate; | ||
180 | struct clk *clk0, *pclk0; | ||
181 | |||
182 | mtu_base = base; | ||
183 | |||
184 | pclk0 = clk_get_sys("mtu0", "apb_pclk"); | ||
185 | BUG_ON(IS_ERR(pclk0)); | ||
186 | BUG_ON(clk_prepare(pclk0) < 0); | ||
187 | BUG_ON(clk_enable(pclk0) < 0); | ||
188 | |||
189 | clk0 = clk_get_sys("mtu0", NULL); | ||
190 | BUG_ON(IS_ERR(clk0)); | ||
191 | BUG_ON(clk_prepare(clk0) < 0); | ||
192 | BUG_ON(clk_enable(clk0) < 0); | ||
193 | |||
194 | /* | ||
195 | * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz | ||
196 | * for ux500. | ||
197 | * Use a divide-by-16 counter if the tick rate is more than 32MHz. | ||
198 | * At 32 MHz, the timer (with 32 bit counter) can be programmed | ||
199 | * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer | ||
200 | * with 16 gives too low timer resolution. | ||
201 | */ | ||
202 | rate = clk_get_rate(clk0); | ||
203 | if (rate > 32000000) { | ||
204 | rate /= 16; | ||
205 | clk_prescale = MTU_CRn_PRESCALE_16; | ||
206 | } else { | ||
207 | clk_prescale = MTU_CRn_PRESCALE_1; | ||
208 | } | ||
209 | |||
210 | /* Cycles for periodic mode */ | ||
211 | nmdk_cycle = DIV_ROUND_CLOSEST(rate, HZ); | ||
212 | |||
213 | |||
214 | /* Timer 0 is the free running clocksource */ | ||
215 | nmdk_clksrc_reset(); | ||
216 | |||
217 | if (clocksource_mmio_init(mtu_base + MTU_VAL(0), "mtu_0", | ||
218 | rate, 200, 32, clocksource_mmio_readl_down)) | ||
219 | pr_err("timer: failed to initialize clock source %s\n", | ||
220 | "mtu_0"); | ||
221 | |||
222 | #ifdef CONFIG_NOMADIK_MTU_SCHED_CLOCK | ||
223 | setup_sched_clock(nomadik_read_sched_clock, 32, rate); | ||
224 | #endif | ||
225 | |||
226 | /* Timer 1 is used for events, register irq and clockevents */ | ||
227 | setup_irq(irq, &nmdk_timer_irq); | ||
228 | nmdk_clkevt.cpumask = cpumask_of(0); | ||
229 | clockevents_config_and_register(&nmdk_clkevt, rate, 2, 0xffffffffU); | ||
230 | } | ||
diff --git a/drivers/crypto/ux500/cryp/cryp_core.c b/drivers/crypto/ux500/cryp/cryp_core.c index bc615cc56266..8bc5fef07e7a 100644 --- a/drivers/crypto/ux500/cryp/cryp_core.c +++ b/drivers/crypto/ux500/cryp/cryp_core.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
24 | #include <linux/regulator/consumer.h> | 24 | #include <linux/regulator/consumer.h> |
25 | #include <linux/semaphore.h> | 25 | #include <linux/semaphore.h> |
26 | #include <linux/platform_data/dma-ste-dma40.h> | ||
26 | 27 | ||
27 | #include <crypto/aes.h> | 28 | #include <crypto/aes.h> |
28 | #include <crypto/algapi.h> | 29 | #include <crypto/algapi.h> |
@@ -30,8 +31,6 @@ | |||
30 | #include <crypto/des.h> | 31 | #include <crypto/des.h> |
31 | #include <crypto/scatterwalk.h> | 32 | #include <crypto/scatterwalk.h> |
32 | 33 | ||
33 | #include <plat/ste_dma40.h> | ||
34 | |||
35 | #include <linux/platform_data/crypto-ux500.h> | 34 | #include <linux/platform_data/crypto-ux500.h> |
36 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
37 | 36 | ||
diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index ae55091c2272..23c5573e62dd 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c | |||
@@ -19,8 +19,7 @@ | |||
19 | #include <linux/err.h> | 19 | #include <linux/err.h> |
20 | #include <linux/amba/bus.h> | 20 | #include <linux/amba/bus.h> |
21 | #include <linux/regulator/consumer.h> | 21 | #include <linux/regulator/consumer.h> |
22 | 22 | #include <linux/platform_data/dma-ste-dma40.h> | |
23 | #include <plat/ste_dma40.h> | ||
24 | 23 | ||
25 | #include "dmaengine.h" | 24 | #include "dmaengine.h" |
26 | #include "ste_dma40_ll.h" | 25 | #include "ste_dma40_ll.h" |
diff --git a/drivers/dma/ste_dma40_ll.c b/drivers/dma/ste_dma40_ll.c index cad9e1daedff..851ad56e8409 100644 --- a/drivers/dma/ste_dma40_ll.c +++ b/drivers/dma/ste_dma40_ll.c | |||
@@ -6,7 +6,7 @@ | |||
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/kernel.h> | 8 | #include <linux/kernel.h> |
9 | #include <plat/ste_dma40.h> | 9 | #include <linux/platform_data/dma-ste-dma40.h> |
10 | 10 | ||
11 | #include "ste_dma40_ll.h" | 11 | #include "ste_dma40_ll.h" |
12 | 12 | ||
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig index de0874054e9f..77629d33f03f 100644 --- a/drivers/input/keyboard/Kconfig +++ b/drivers/input/keyboard/Kconfig | |||
@@ -409,7 +409,7 @@ config KEYBOARD_NEWTON | |||
409 | 409 | ||
410 | config KEYBOARD_NOMADIK | 410 | config KEYBOARD_NOMADIK |
411 | tristate "ST-Ericsson Nomadik SKE keyboard" | 411 | tristate "ST-Ericsson Nomadik SKE keyboard" |
412 | depends on PLAT_NOMADIK | 412 | depends on (ARCH_NOMADIK || ARCH_U8500) |
413 | select INPUT_MATRIXKMAP | 413 | select INPUT_MATRIXKMAP |
414 | help | 414 | help |
415 | Say Y here if you want to use a keypad provided on the SKE controller | 415 | Say Y here if you want to use a keypad provided on the SKE controller |
diff --git a/drivers/mfd/ab8500-core.c b/drivers/mfd/ab8500-core.c index 127b00aadae3..3e27c031aeaa 100644 --- a/drivers/mfd/ab8500-core.c +++ b/drivers/mfd/ab8500-core.c | |||
@@ -565,15 +565,10 @@ static int ab8500_irq_init(struct ab8500 *ab8500, struct device_node *np) | |||
565 | else | 565 | else |
566 | num_irqs = AB8500_NR_IRQS; | 566 | num_irqs = AB8500_NR_IRQS; |
567 | 567 | ||
568 | if (ab8500->irq_base) { | 568 | /* If ->irq_base is zero this will give a linear mapping */ |
569 | ab8500->domain = irq_domain_add_legacy( | 569 | ab8500->domain = irq_domain_add_simple(NULL, |
570 | NULL, num_irqs, ab8500->irq_base, | 570 | num_irqs, ab8500->irq_base, |
571 | 0, &ab8500_irq_ops, ab8500); | 571 | &ab8500_irq_ops, ab8500); |
572 | } | ||
573 | else { | ||
574 | ab8500->domain = irq_domain_add_linear( | ||
575 | np, num_irqs, &ab8500_irq_ops, ab8500); | ||
576 | } | ||
577 | 572 | ||
578 | if (!ab8500->domain) { | 573 | if (!ab8500->domain) { |
579 | dev_err(ab8500->dev, "Failed to create irqdomain\n"); | 574 | dev_err(ab8500->dev, "Failed to create irqdomain\n"); |
diff --git a/drivers/mfd/db8500-prcmu.c b/drivers/mfd/db8500-prcmu.c index dc5691569370..29710565a08f 100644 --- a/drivers/mfd/db8500-prcmu.c +++ b/drivers/mfd/db8500-prcmu.c | |||
@@ -2743,9 +2743,15 @@ static struct irq_domain_ops db8500_irq_ops = { | |||
2743 | 2743 | ||
2744 | static int db8500_irq_init(struct device_node *np) | 2744 | static int db8500_irq_init(struct device_node *np) |
2745 | { | 2745 | { |
2746 | db8500_irq_domain = irq_domain_add_legacy( | 2746 | int irq_base = -1; |
2747 | np, NUM_PRCMU_WAKEUPS, IRQ_PRCMU_BASE, | 2747 | |
2748 | 0, &db8500_irq_ops, NULL); | 2748 | /* In the device tree case, just take some IRQs */ |
2749 | if (!np) | ||
2750 | irq_base = IRQ_PRCMU_BASE; | ||
2751 | |||
2752 | db8500_irq_domain = irq_domain_add_simple( | ||
2753 | np, NUM_PRCMU_WAKEUPS, irq_base, | ||
2754 | &db8500_irq_ops, NULL); | ||
2749 | 2755 | ||
2750 | if (!db8500_irq_domain) { | 2756 | if (!db8500_irq_domain) { |
2751 | pr_err("Failed to create irqdomain\n"); | 2757 | pr_err("Failed to create irqdomain\n"); |
diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig index 531807dec6b3..dae191b3c081 100644 --- a/drivers/mtd/nand/Kconfig +++ b/drivers/mtd/nand/Kconfig | |||
@@ -546,7 +546,7 @@ config MTD_NAND_JZ4740 | |||
546 | 546 | ||
547 | config MTD_NAND_FSMC | 547 | config MTD_NAND_FSMC |
548 | tristate "Support for NAND on ST Micros FSMC" | 548 | tristate "Support for NAND on ST Micros FSMC" |
549 | depends on PLAT_SPEAR || PLAT_NOMADIK || MACH_U300 | 549 | depends on PLAT_SPEAR || ARCH_NOMADIK || ARCH_U8500 || MACH_U300 |
550 | help | 550 | help |
551 | Enables support for NAND Flash chips on the ST Microelectronics | 551 | Enables support for NAND Flash chips on the ST Microelectronics |
552 | Flexible Static Memory Controller (FSMC) | 552 | Flexible Static Memory Controller (FSMC) |
diff --git a/drivers/pinctrl/pinctrl-nomadik.c b/drivers/pinctrl/pinctrl-nomadik.c index 8ef3e85cb011..ef66f98e9202 100644 --- a/drivers/pinctrl/pinctrl-nomadik.c +++ b/drivers/pinctrl/pinctrl-nomadik.c | |||
@@ -31,9 +31,8 @@ | |||
31 | /* Since we request GPIOs from ourself */ | 31 | /* Since we request GPIOs from ourself */ |
32 | #include <linux/pinctrl/consumer.h> | 32 | #include <linux/pinctrl/consumer.h> |
33 | #include <linux/platform_data/pinctrl-nomadik.h> | 33 | #include <linux/platform_data/pinctrl-nomadik.h> |
34 | |||
35 | #include <asm/mach/irq.h> | 34 | #include <asm/mach/irq.h> |
36 | 35 | #include <mach/irqs.h> | |
37 | #include "pinctrl-nomadik.h" | 36 | #include "pinctrl-nomadik.h" |
38 | 37 | ||
39 | /* | 38 | /* |