blob: 947ef7981d92e42013257649a63dd2484644bcd4 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02003 * linux/arch/arm/common/sa1111.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * SA1111 support
6 *
7 * Original code by John Dorsey
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This file contains all generic SA1111 support.
10 *
11 * All initialization functions provided here are intended to be called
12 * from machine specific code with proper arguments when required.
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Russell King17cf5012016-08-31 08:49:45 +010015#include <linux/gpio/driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
Russell King36d31212012-01-24 21:25:20 +000017#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/errno.h>
21#include <linux/ioport.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/slab.h>
24#include <linux/spinlock.h>
25#include <linux/dma-mapping.h>
Russell King97d654f2006-03-15 15:54:37 +000026#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010027#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/mach/irq.h>
Russell King36d31212012-01-24 21:25:20 +000031#include <asm/mach-types.h>
Masahiro Yamada87dfb312019-05-14 15:46:51 -070032#include <linux/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/hardware/sa1111.h>
35
Eric Miao19851c52009-12-26 16:23:02 +080036/* SA1111 IRQs */
37#define IRQ_GPAIN0 (0)
38#define IRQ_GPAIN1 (1)
39#define IRQ_GPAIN2 (2)
40#define IRQ_GPAIN3 (3)
41#define IRQ_GPBIN0 (4)
42#define IRQ_GPBIN1 (5)
43#define IRQ_GPBIN2 (6)
44#define IRQ_GPBIN3 (7)
45#define IRQ_GPBIN4 (8)
46#define IRQ_GPBIN5 (9)
47#define IRQ_GPCIN0 (10)
48#define IRQ_GPCIN1 (11)
49#define IRQ_GPCIN2 (12)
50#define IRQ_GPCIN3 (13)
51#define IRQ_GPCIN4 (14)
52#define IRQ_GPCIN5 (15)
53#define IRQ_GPCIN6 (16)
54#define IRQ_GPCIN7 (17)
55#define IRQ_MSTXINT (18)
56#define IRQ_MSRXINT (19)
57#define IRQ_MSSTOPERRINT (20)
58#define IRQ_TPTXINT (21)
59#define IRQ_TPRXINT (22)
60#define IRQ_TPSTOPERRINT (23)
61#define SSPXMTINT (24)
62#define SSPRCVINT (25)
63#define SSPROR (26)
64#define AUDXMTDMADONEA (32)
65#define AUDRCVDMADONEA (33)
66#define AUDXMTDMADONEB (34)
67#define AUDRCVDMADONEB (35)
68#define AUDTFSR (36)
69#define AUDRFSR (37)
70#define AUDTUR (38)
71#define AUDROR (39)
72#define AUDDTS (40)
73#define AUDRDD (41)
74#define AUDSTO (42)
75#define IRQ_USBPWR (43)
76#define IRQ_HCIM (44)
77#define IRQ_HCIBUFFACC (45)
78#define IRQ_HCIRMTWKP (46)
79#define IRQ_NHCIMFCIR (47)
80#define IRQ_USB_PORT_RESUME (48)
81#define IRQ_S0_READY_NINT (49)
82#define IRQ_S1_READY_NINT (50)
83#define IRQ_S0_CD_VALID (51)
84#define IRQ_S1_CD_VALID (52)
85#define IRQ_S0_BVD1_STSCHG (53)
86#define IRQ_S1_BVD1_STSCHG (54)
Russell King36d31212012-01-24 21:25:20 +000087#define SA1111_IRQ_NR (55)
Eric Miao19851c52009-12-26 16:23:02 +080088
Russell King29c140b2012-02-03 19:03:31 +000089extern void sa1110_mb_enable(void);
90extern void sa1110_mb_disable(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * We keep the following data for the overall SA1111. Note that the
94 * struct device and struct resource are "fake"; they should be supplied
95 * by the bus above us. However, in the interests of getting all SA1111
96 * drivers converted over to the device model, we provide this as an
97 * anchor point for all the other drivers.
98 */
99struct sa1111 {
100 struct device *dev;
Russell King97d654f2006-03-15 15:54:37 +0000101 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned long phys;
103 int irq;
Eric Miao19851c52009-12-26 16:23:02 +0800104 int irq_base; /* base for cascaded on-chip IRQs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 spinlock_t lock;
106 void __iomem *base;
Russell Kingae99ddb2012-01-26 13:25:47 +0000107 struct sa1111_platform_data *pdata;
Russell King4c9f6d32016-09-07 13:50:27 +0100108 struct irq_domain *irqdomain;
Russell King17cf5012016-08-31 08:49:45 +0100109 struct gpio_chip gc;
Rafael J. Wysocki93160c62007-07-09 11:39:19 -0700110#ifdef CONFIG_PM
111 void *saved_state;
112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
115/*
116 * We _really_ need to eliminate this. Its only users
117 * are the PWM and DMA checking code.
118 */
119static struct sa1111 *g_sa1111;
120
121struct sa1111_dev_info {
122 unsigned long offset;
123 unsigned long skpcr_mask;
Russell King21d1c772012-01-29 10:22:49 +0000124 bool dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned int devid;
Russell Kingbe2bedb2016-09-06 10:11:46 +0100126 unsigned int hwirq[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
129static struct sa1111_dev_info sa1111_devices[] = {
130 {
131 .offset = SA1111_USB,
132 .skpcr_mask = SKPCR_UCLKEN,
Russell King21d1c772012-01-29 10:22:49 +0000133 .dma = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .devid = SA1111_DEVID_USB,
Russell Kingbe2bedb2016-09-06 10:11:46 +0100135 .hwirq = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 IRQ_USBPWR,
137 IRQ_HCIM,
138 IRQ_HCIBUFFACC,
139 IRQ_HCIRMTWKP,
140 IRQ_NHCIMFCIR,
141 IRQ_USB_PORT_RESUME
142 },
143 },
144 {
145 .offset = 0x0600,
146 .skpcr_mask = SKPCR_I2SCLKEN | SKPCR_L3CLKEN,
Russell King21d1c772012-01-29 10:22:49 +0000147 .dma = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .devid = SA1111_DEVID_SAC,
Russell Kingbe2bedb2016-09-06 10:11:46 +0100149 .hwirq = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 AUDXMTDMADONEA,
151 AUDXMTDMADONEB,
152 AUDRCVDMADONEA,
153 AUDRCVDMADONEB
154 },
155 },
156 {
157 .offset = 0x0800,
158 .skpcr_mask = SKPCR_SCLKEN,
159 .devid = SA1111_DEVID_SSP,
160 },
161 {
162 .offset = SA1111_KBD,
163 .skpcr_mask = SKPCR_PTCLKEN,
Russell Kinge5c0fc42012-01-25 10:42:52 +0000164 .devid = SA1111_DEVID_PS2_KBD,
Russell Kingbe2bedb2016-09-06 10:11:46 +0100165 .hwirq = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 IRQ_TPRXINT,
167 IRQ_TPTXINT
168 },
169 },
170 {
171 .offset = SA1111_MSE,
172 .skpcr_mask = SKPCR_PMCLKEN,
Russell Kinge5c0fc42012-01-25 10:42:52 +0000173 .devid = SA1111_DEVID_PS2_MSE,
Russell Kingbe2bedb2016-09-06 10:11:46 +0100174 .hwirq = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 IRQ_MSRXINT,
176 IRQ_MSTXINT
177 },
178 },
179 {
180 .offset = 0x1800,
181 .skpcr_mask = 0,
182 .devid = SA1111_DEVID_PCMCIA,
Russell Kingbe2bedb2016-09-06 10:11:46 +0100183 .hwirq = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 IRQ_S0_READY_NINT,
185 IRQ_S0_CD_VALID,
186 IRQ_S0_BVD1_STSCHG,
187 IRQ_S1_READY_NINT,
188 IRQ_S1_CD_VALID,
189 IRQ_S1_BVD1_STSCHG,
190 },
191 },
192};
193
Russell Kingbe2bedb2016-09-06 10:11:46 +0100194static int sa1111_map_irq(struct sa1111 *sachip, irq_hw_number_t hwirq)
195{
196 return irq_create_mapping(sachip->irqdomain, hwirq);
197}
198
Russell King4c9f6d32016-09-07 13:50:27 +0100199static void sa1111_handle_irqdomain(struct irq_domain *irqdomain, int irq)
200{
201 struct irq_desc *d = irq_to_desc(irq_linear_revmap(irqdomain, irq));
202
203 if (d)
204 generic_handle_irq_desc(d);
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
208 * SA1111 interrupt support. Since clearing an IRQ while there are
209 * active IRQs causes the interrupt output to pulse, the upper levels
210 * will call us again if there are more interrupts to process.
211 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200212static void sa1111_irq_handler(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 unsigned int stat0, stat1, i;
Jiang Liuf5753982015-06-04 12:13:19 +0800215 struct sa1111 *sachip = irq_desc_get_handler_data(desc);
Russell King4c9f6d32016-09-07 13:50:27 +0100216 struct irq_domain *irqdomain;
Eric Miao19851c52009-12-26 16:23:02 +0800217 void __iomem *mapbase = sachip->base + SA1111_INTC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Russell Kinga5b549e2016-09-07 15:11:14 +0100219 stat0 = readl_relaxed(mapbase + SA1111_INTSTATCLR0);
220 stat1 = readl_relaxed(mapbase + SA1111_INTSTATCLR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Russell Kinga5b549e2016-09-07 15:11:14 +0100222 writel_relaxed(stat0, mapbase + SA1111_INTSTATCLR0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100224 desc->irq_data.chip->irq_ack(&desc->irq_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Russell Kinga5b549e2016-09-07 15:11:14 +0100226 writel_relaxed(stat1, mapbase + SA1111_INTSTATCLR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 if (stat0 == 0 && stat1 == 0) {
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200229 do_bad_IRQ(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return;
231 }
232
Russell King4c9f6d32016-09-07 13:50:27 +0100233 irqdomain = sachip->irqdomain;
234
Eric Miao19851c52009-12-26 16:23:02 +0800235 for (i = 0; stat0; i++, stat0 >>= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (stat0 & 1)
Russell King4c9f6d32016-09-07 13:50:27 +0100237 sa1111_handle_irqdomain(irqdomain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Eric Miao19851c52009-12-26 16:23:02 +0800239 for (i = 32; stat1; i++, stat1 >>= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (stat1 & 1)
Russell King4c9f6d32016-09-07 13:50:27 +0100241 sa1111_handle_irqdomain(irqdomain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* For level-based interrupts */
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100244 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Russell King1629c9a2016-09-06 18:43:28 +0100247static u32 sa1111_irqmask(struct irq_data *d)
248{
Russell King4c9f6d32016-09-07 13:50:27 +0100249 return BIT(irqd_to_hwirq(d) & 31);
Russell King1629c9a2016-09-06 18:43:28 +0100250}
251
252static int sa1111_irqbank(struct irq_data *d)
253{
Russell King4c9f6d32016-09-07 13:50:27 +0100254 return (irqd_to_hwirq(d) / 32) * 4;
Russell King1629c9a2016-09-06 18:43:28 +0100255}
256
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100257static void sa1111_ack_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259}
260
Russell King1629c9a2016-09-06 18:43:28 +0100261static void sa1111_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100263 struct sa1111 *sachip = irq_data_get_irq_chip_data(d);
Russell King1629c9a2016-09-06 18:43:28 +0100264 void __iomem *mapbase = sachip->base + SA1111_INTC + sa1111_irqbank(d);
265 u32 ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Russell Kinga5b549e2016-09-07 15:11:14 +0100267 ie = readl_relaxed(mapbase + SA1111_INTEN0);
Russell King1629c9a2016-09-06 18:43:28 +0100268 ie &= ~sa1111_irqmask(d);
Russell Kinga5b549e2016-09-07 15:11:14 +0100269 writel(ie, mapbase + SA1111_INTEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Russell King1629c9a2016-09-06 18:43:28 +0100272static void sa1111_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100274 struct sa1111 *sachip = irq_data_get_irq_chip_data(d);
Russell King1629c9a2016-09-06 18:43:28 +0100275 void __iomem *mapbase = sachip->base + SA1111_INTC + sa1111_irqbank(d);
276 u32 ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Russell Kinga5b549e2016-09-07 15:11:14 +0100278 ie = readl_relaxed(mapbase + SA1111_INTEN0);
Russell King1629c9a2016-09-06 18:43:28 +0100279 ie |= sa1111_irqmask(d);
Russell Kinga5b549e2016-09-07 15:11:14 +0100280 writel_relaxed(ie, mapbase + SA1111_INTEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/*
284 * Attempt to re-trigger the interrupt. The SA1111 contains a register
285 * (INTSET) which claims to do this. However, in practice no amount of
286 * manipulation of INTEN and INTSET guarantees that the interrupt will
287 * be triggered. In fact, its very difficult, if not impossible to get
288 * INTSET to re-trigger the interrupt.
289 */
Russell King1629c9a2016-09-06 18:43:28 +0100290static int sa1111_retrigger_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100292 struct sa1111 *sachip = irq_data_get_irq_chip_data(d);
Russell King1629c9a2016-09-06 18:43:28 +0100293 void __iomem *mapbase = sachip->base + SA1111_INTC + sa1111_irqbank(d);
294 u32 ip, mask = sa1111_irqmask(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int i;
296
Russell Kinga5b549e2016-09-07 15:11:14 +0100297 ip = readl_relaxed(mapbase + SA1111_INTPOL0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 for (i = 0; i < 8; i++) {
Russell Kinga5b549e2016-09-07 15:11:14 +0100299 writel_relaxed(ip ^ mask, mapbase + SA1111_INTPOL0);
300 writel_relaxed(ip, mapbase + SA1111_INTPOL0);
301 if (readl_relaxed(mapbase + SA1111_INTSTATCLR0) & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 }
304
305 if (i == 8)
Russell King4ed89f22014-10-28 11:26:42 +0000306 pr_err("Danger Will Robinson: failed to re-trigger IRQ%d\n",
307 d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return i == 8 ? -1 : 0;
309}
310
Russell King1629c9a2016-09-06 18:43:28 +0100311static int sa1111_type_irq(struct irq_data *d, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100313 struct sa1111 *sachip = irq_data_get_irq_chip_data(d);
Russell King1629c9a2016-09-06 18:43:28 +0100314 void __iomem *mapbase = sachip->base + SA1111_INTC + sa1111_irqbank(d);
315 u32 ip, mask = sa1111_irqmask(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100317 if (flags == IRQ_TYPE_PROBE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100320 if ((!(flags & IRQ_TYPE_EDGE_RISING) ^ !(flags & IRQ_TYPE_EDGE_FALLING)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
322
Russell Kinga5b549e2016-09-07 15:11:14 +0100323 ip = readl_relaxed(mapbase + SA1111_INTPOL0);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100324 if (flags & IRQ_TYPE_EDGE_RISING)
Russell King1629c9a2016-09-06 18:43:28 +0100325 ip &= ~mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 else
Russell King1629c9a2016-09-06 18:43:28 +0100327 ip |= mask;
Russell Kinga5b549e2016-09-07 15:11:14 +0100328 writel_relaxed(ip, mapbase + SA1111_INTPOL0);
329 writel_relaxed(ip, mapbase + SA1111_WAKEPOL0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 return 0;
332}
333
Russell King1629c9a2016-09-06 18:43:28 +0100334static int sa1111_wake_irq(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100336 struct sa1111 *sachip = irq_data_get_irq_chip_data(d);
Russell King1629c9a2016-09-06 18:43:28 +0100337 void __iomem *mapbase = sachip->base + SA1111_INTC + sa1111_irqbank(d);
338 u32 we, mask = sa1111_irqmask(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Russell Kinga5b549e2016-09-07 15:11:14 +0100340 we = readl_relaxed(mapbase + SA1111_WAKEEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (on)
Russell King1629c9a2016-09-06 18:43:28 +0100342 we |= mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 else
Russell King1629c9a2016-09-06 18:43:28 +0100344 we &= ~mask;
Russell Kinga5b549e2016-09-07 15:11:14 +0100345 writel_relaxed(we, mapbase + SA1111_WAKEEN0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 return 0;
348}
349
Russell King1629c9a2016-09-06 18:43:28 +0100350static struct irq_chip sa1111_irq_chip = {
351 .name = "SA1111",
Lennert Buytenhek8231e742010-11-29 10:20:06 +0100352 .irq_ack = sa1111_ack_irq,
Russell King1629c9a2016-09-06 18:43:28 +0100353 .irq_mask = sa1111_mask_irq,
354 .irq_unmask = sa1111_unmask_irq,
355 .irq_retrigger = sa1111_retrigger_irq,
356 .irq_set_type = sa1111_type_irq,
357 .irq_set_wake = sa1111_wake_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
Russell King4c9f6d32016-09-07 13:50:27 +0100360static int sa1111_irqdomain_map(struct irq_domain *d, unsigned int irq,
361 irq_hw_number_t hwirq)
362{
363 struct sa1111 *sachip = d->host_data;
364
Russell Kingbe2bedb2016-09-06 10:11:46 +0100365 /* Disallow unavailable interrupts */
366 if (hwirq > SSPROR && hwirq < AUDXMTDMADONEA)
367 return -EINVAL;
368
Russell King4c9f6d32016-09-07 13:50:27 +0100369 irq_set_chip_data(irq, sachip);
370 irq_set_chip_and_handler(irq, &sa1111_irq_chip, handle_edge_irq);
371 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
372
373 return 0;
374}
375
376static const struct irq_domain_ops sa1111_irqdomain_ops = {
377 .map = sa1111_irqdomain_map,
378 .xlate = irq_domain_xlate_twocell,
379};
380
Russell King36d31212012-01-24 21:25:20 +0000381static int sa1111_setup_irq(struct sa1111 *sachip, unsigned irq_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 void __iomem *irqbase = sachip->base + SA1111_INTC;
Russell King36d31212012-01-24 21:25:20 +0000384 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /*
387 * We're guaranteed that this region hasn't been taken.
388 */
389 request_mem_region(sachip->phys + SA1111_INTC, 512, "irq");
390
Russell King36d31212012-01-24 21:25:20 +0000391 ret = irq_alloc_descs(-1, irq_base, SA1111_IRQ_NR, -1);
392 if (ret <= 0) {
393 dev_err(sachip->dev, "unable to allocate %u irqs: %d\n",
394 SA1111_IRQ_NR, ret);
395 if (ret == 0)
396 ret = -EINVAL;
397 return ret;
398 }
399
400 sachip->irq_base = ret;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* disable all IRQs */
Russell Kinga5b549e2016-09-07 15:11:14 +0100403 writel_relaxed(0, irqbase + SA1111_INTEN0);
404 writel_relaxed(0, irqbase + SA1111_INTEN1);
405 writel_relaxed(0, irqbase + SA1111_WAKEEN0);
406 writel_relaxed(0, irqbase + SA1111_WAKEEN1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /*
409 * detect on rising edge. Note: Feb 2001 Errata for SA1111
410 * specifies that S0ReadyInt and S1ReadyInt should be '1'.
411 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100412 writel_relaxed(0, irqbase + SA1111_INTPOL0);
413 writel_relaxed(BIT(IRQ_S0_READY_NINT & 31) |
414 BIT(IRQ_S1_READY_NINT & 31),
415 irqbase + SA1111_INTPOL1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* clear all IRQs */
Russell Kinga5b549e2016-09-07 15:11:14 +0100418 writel_relaxed(~0, irqbase + SA1111_INTSTATCLR0);
419 writel_relaxed(~0, irqbase + SA1111_INTSTATCLR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Russell King4c9f6d32016-09-07 13:50:27 +0100421 sachip->irqdomain = irq_domain_add_linear(NULL, SA1111_IRQ_NR,
422 &sa1111_irqdomain_ops,
423 sachip);
424 if (!sachip->irqdomain) {
425 irq_free_descs(sachip->irq_base, SA1111_IRQ_NR);
426 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428
Russell King4c9f6d32016-09-07 13:50:27 +0100429 irq_domain_associate_many(sachip->irqdomain,
430 sachip->irq_base + IRQ_GPAIN0,
431 IRQ_GPAIN0, SSPROR + 1 - IRQ_GPAIN0);
432 irq_domain_associate_many(sachip->irqdomain,
433 sachip->irq_base + AUDXMTDMADONEA,
434 AUDXMTDMADONEA,
435 IRQ_S1_BVD1_STSCHG + 1 - AUDXMTDMADONEA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /*
438 * Register SA1111 interrupt
439 */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100440 irq_set_irq_type(sachip->irq, IRQ_TYPE_EDGE_RISING);
Russell King056c0ac2015-06-16 23:06:25 +0100441 irq_set_chained_handler_and_data(sachip->irq, sa1111_irq_handler,
442 sachip);
Russell King36d31212012-01-24 21:25:20 +0000443
444 dev_info(sachip->dev, "Providing IRQ%u-%u\n",
445 sachip->irq_base, sachip->irq_base + SA1111_IRQ_NR - 1);
446
447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Russell Kingccb7d852016-09-06 16:01:32 +0100450static void sa1111_remove_irq(struct sa1111 *sachip)
451{
Russell Kingbe2bedb2016-09-06 10:11:46 +0100452 struct irq_domain *domain = sachip->irqdomain;
Russell Kingccb7d852016-09-06 16:01:32 +0100453 void __iomem *irqbase = sachip->base + SA1111_INTC;
Russell Kingbe2bedb2016-09-06 10:11:46 +0100454 int i;
Russell Kingccb7d852016-09-06 16:01:32 +0100455
456 /* disable all IRQs */
Russell Kinga5b549e2016-09-07 15:11:14 +0100457 writel_relaxed(0, irqbase + SA1111_INTEN0);
458 writel_relaxed(0, irqbase + SA1111_INTEN1);
459 writel_relaxed(0, irqbase + SA1111_WAKEEN0);
460 writel_relaxed(0, irqbase + SA1111_WAKEEN1);
Russell Kingccb7d852016-09-06 16:01:32 +0100461
Russell King4c9f6d32016-09-07 13:50:27 +0100462 irq_set_chained_handler_and_data(sachip->irq, NULL, NULL);
Russell Kingbe2bedb2016-09-06 10:11:46 +0100463 for (i = 0; i < SA1111_IRQ_NR; i++)
464 irq_dispose_mapping(irq_find_mapping(domain, i));
465 irq_domain_remove(domain);
Russell King4c9f6d32016-09-07 13:50:27 +0100466
467 release_mem_region(sachip->phys + SA1111_INTC, 512);
Russell Kingccb7d852016-09-06 16:01:32 +0100468}
469
Russell King17cf5012016-08-31 08:49:45 +0100470enum {
471 SA1111_GPIO_PXDDR = (SA1111_GPIO_PADDR - SA1111_GPIO_PADDR),
472 SA1111_GPIO_PXDRR = (SA1111_GPIO_PADRR - SA1111_GPIO_PADDR),
473 SA1111_GPIO_PXDWR = (SA1111_GPIO_PADWR - SA1111_GPIO_PADDR),
474 SA1111_GPIO_PXSDR = (SA1111_GPIO_PASDR - SA1111_GPIO_PADDR),
475 SA1111_GPIO_PXSSR = (SA1111_GPIO_PASSR - SA1111_GPIO_PADDR),
476};
477
478static struct sa1111 *gc_to_sa1111(struct gpio_chip *gc)
479{
480 return container_of(gc, struct sa1111, gc);
481}
482
483static void __iomem *sa1111_gpio_map_reg(struct sa1111 *sachip, unsigned offset)
484{
485 void __iomem *reg = sachip->base + SA1111_GPIO;
486
487 if (offset < 4)
488 return reg + SA1111_GPIO_PADDR;
489 if (offset < 10)
490 return reg + SA1111_GPIO_PBDDR;
491 if (offset < 18)
492 return reg + SA1111_GPIO_PCDDR;
493 return NULL;
494}
495
496static u32 sa1111_gpio_map_bit(unsigned offset)
497{
498 if (offset < 4)
499 return BIT(offset);
500 if (offset < 10)
501 return BIT(offset - 4);
502 if (offset < 18)
503 return BIT(offset - 10);
504 return 0;
505}
506
507static void sa1111_gpio_modify(void __iomem *reg, u32 mask, u32 set)
508{
509 u32 val;
510
511 val = readl_relaxed(reg);
512 val &= ~mask;
513 val |= mask & set;
514 writel_relaxed(val, reg);
515}
516
517static int sa1111_gpio_get_direction(struct gpio_chip *gc, unsigned offset)
518{
519 struct sa1111 *sachip = gc_to_sa1111(gc);
520 void __iomem *reg = sa1111_gpio_map_reg(sachip, offset);
521 u32 mask = sa1111_gpio_map_bit(offset);
522
523 return !!(readl_relaxed(reg + SA1111_GPIO_PXDDR) & mask);
524}
525
526static int sa1111_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
527{
528 struct sa1111 *sachip = gc_to_sa1111(gc);
529 unsigned long flags;
530 void __iomem *reg = sa1111_gpio_map_reg(sachip, offset);
531 u32 mask = sa1111_gpio_map_bit(offset);
532
533 spin_lock_irqsave(&sachip->lock, flags);
534 sa1111_gpio_modify(reg + SA1111_GPIO_PXDDR, mask, mask);
535 sa1111_gpio_modify(reg + SA1111_GPIO_PXSDR, mask, mask);
536 spin_unlock_irqrestore(&sachip->lock, flags);
537
538 return 0;
539}
540
541static int sa1111_gpio_direction_output(struct gpio_chip *gc, unsigned offset,
542 int value)
543{
544 struct sa1111 *sachip = gc_to_sa1111(gc);
545 unsigned long flags;
546 void __iomem *reg = sa1111_gpio_map_reg(sachip, offset);
547 u32 mask = sa1111_gpio_map_bit(offset);
548
549 spin_lock_irqsave(&sachip->lock, flags);
550 sa1111_gpio_modify(reg + SA1111_GPIO_PXDWR, mask, value ? mask : 0);
551 sa1111_gpio_modify(reg + SA1111_GPIO_PXSSR, mask, value ? mask : 0);
552 sa1111_gpio_modify(reg + SA1111_GPIO_PXDDR, mask, 0);
553 sa1111_gpio_modify(reg + SA1111_GPIO_PXSDR, mask, 0);
554 spin_unlock_irqrestore(&sachip->lock, flags);
555
556 return 0;
557}
558
559static int sa1111_gpio_get(struct gpio_chip *gc, unsigned offset)
560{
561 struct sa1111 *sachip = gc_to_sa1111(gc);
562 void __iomem *reg = sa1111_gpio_map_reg(sachip, offset);
563 u32 mask = sa1111_gpio_map_bit(offset);
564
565 return !!(readl_relaxed(reg + SA1111_GPIO_PXDRR) & mask);
566}
567
568static void sa1111_gpio_set(struct gpio_chip *gc, unsigned offset, int value)
569{
570 struct sa1111 *sachip = gc_to_sa1111(gc);
571 unsigned long flags;
572 void __iomem *reg = sa1111_gpio_map_reg(sachip, offset);
573 u32 mask = sa1111_gpio_map_bit(offset);
574
575 spin_lock_irqsave(&sachip->lock, flags);
576 sa1111_gpio_modify(reg + SA1111_GPIO_PXDWR, mask, value ? mask : 0);
577 sa1111_gpio_modify(reg + SA1111_GPIO_PXSSR, mask, value ? mask : 0);
578 spin_unlock_irqrestore(&sachip->lock, flags);
579}
580
581static void sa1111_gpio_set_multiple(struct gpio_chip *gc, unsigned long *mask,
582 unsigned long *bits)
583{
584 struct sa1111 *sachip = gc_to_sa1111(gc);
585 unsigned long flags;
586 void __iomem *reg = sachip->base + SA1111_GPIO;
587 u32 msk, val;
588
589 msk = *mask;
590 val = *bits;
591
592 spin_lock_irqsave(&sachip->lock, flags);
593 sa1111_gpio_modify(reg + SA1111_GPIO_PADWR, msk & 15, val);
594 sa1111_gpio_modify(reg + SA1111_GPIO_PASSR, msk & 15, val);
595 sa1111_gpio_modify(reg + SA1111_GPIO_PBDWR, (msk >> 4) & 255, val >> 4);
596 sa1111_gpio_modify(reg + SA1111_GPIO_PBSSR, (msk >> 4) & 255, val >> 4);
597 sa1111_gpio_modify(reg + SA1111_GPIO_PCDWR, (msk >> 12) & 255, val >> 12);
598 sa1111_gpio_modify(reg + SA1111_GPIO_PCSSR, (msk >> 12) & 255, val >> 12);
599 spin_unlock_irqrestore(&sachip->lock, flags);
600}
601
602static int sa1111_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
603{
604 struct sa1111 *sachip = gc_to_sa1111(gc);
605
Russell Kingbe2bedb2016-09-06 10:11:46 +0100606 return sa1111_map_irq(sachip, offset);
Russell King17cf5012016-08-31 08:49:45 +0100607}
608
609static int sa1111_setup_gpios(struct sa1111 *sachip)
610{
611 sachip->gc.label = "sa1111";
612 sachip->gc.parent = sachip->dev;
613 sachip->gc.owner = THIS_MODULE;
614 sachip->gc.get_direction = sa1111_gpio_get_direction;
615 sachip->gc.direction_input = sa1111_gpio_direction_input;
616 sachip->gc.direction_output = sa1111_gpio_direction_output;
617 sachip->gc.get = sa1111_gpio_get;
618 sachip->gc.set = sa1111_gpio_set;
619 sachip->gc.set_multiple = sa1111_gpio_set_multiple;
620 sachip->gc.to_irq = sa1111_gpio_to_irq;
621 sachip->gc.base = -1;
622 sachip->gc.ngpio = 18;
623
624 return devm_gpiochip_add_data(sachip->dev, &sachip->gc, sachip);
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * Bring the SA1111 out of reset. This requires a set procedure:
629 * 1. nRESET asserted (by hardware)
630 * 2. CLK turned on from SA1110
631 * 3. nRESET deasserted
632 * 4. VCO turned on, PLL_BYPASS turned off
633 * 5. Wait lock time, then assert RCLKEn
634 * 7. PCR set to allow clocking of individual functions
635 *
636 * Until we've done this, the only registers we can access are:
637 * SBI_SKCR
638 * SBI_SMCR
639 * SBI_SKID
640 */
641static void sa1111_wake(struct sa1111 *sachip)
642{
643 unsigned long flags, r;
644
645 spin_lock_irqsave(&sachip->lock, flags);
646
Russell King97d654f2006-03-15 15:54:37 +0000647 clk_enable(sachip->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /*
650 * Turn VCO on, and disable PLL Bypass.
651 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100652 r = readl_relaxed(sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 r &= ~SKCR_VCO_OFF;
Russell Kinga5b549e2016-09-07 15:11:14 +0100654 writel_relaxed(r, sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 r |= SKCR_PLL_BYPASS | SKCR_OE_EN;
Russell Kinga5b549e2016-09-07 15:11:14 +0100656 writel_relaxed(r, sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /*
659 * Wait lock time. SA1111 manual _doesn't_
660 * specify a figure for this! We choose 100us.
661 */
662 udelay(100);
663
664 /*
665 * Enable RCLK. We also ensure that RDYEN is set.
666 */
667 r |= SKCR_RCLKEN | SKCR_RDYEN;
Russell Kinga5b549e2016-09-07 15:11:14 +0100668 writel_relaxed(r, sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /*
671 * Wait 14 RCLK cycles for the chip to finish coming out
672 * of reset. (RCLK=24MHz). This is 590ns.
673 */
674 udelay(1);
675
676 /*
677 * Ensure all clocks are initially off.
678 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100679 writel_relaxed(0, sachip->base + SA1111_SKPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 spin_unlock_irqrestore(&sachip->lock, flags);
682}
683
684#ifdef CONFIG_ARCH_SA1100
685
686static u32 sa1111_dma_mask[] = {
687 ~0,
688 ~(1 << 20),
689 ~(1 << 23),
690 ~(1 << 24),
691 ~(1 << 25),
692 ~(1 << 20),
693 ~(1 << 20),
694 0,
695};
696
697/*
698 * Configure the SA1111 shared memory controller.
699 */
700void
701sa1111_configure_smc(struct sa1111 *sachip, int sdram, unsigned int drac,
702 unsigned int cas_latency)
703{
704 unsigned int smcr = SMCR_DTIM | SMCR_MBGE | FInsrt(drac, SMCR_DRAC);
705
706 if (cas_latency == 3)
707 smcr |= SMCR_CLAT;
708
Russell Kinga5b549e2016-09-07 15:11:14 +0100709 writel_relaxed(smcr, sachip->base + SA1111_SMCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 /*
712 * Now clear the bits in the DMA mask to work around the SA1111
713 * DMA erratum (Intel StrongARM SA-1111 Microprocessor Companion
714 * Chip Specification Update, June 2000, Erratum #7).
715 */
716 if (sachip->dev->dma_mask)
717 *sachip->dev->dma_mask &= sa1111_dma_mask[drac >> 2];
718
719 sachip->dev->coherent_dma_mask &= sa1111_dma_mask[drac >> 2];
720}
Russell King0703ed22011-07-04 08:32:21 +0100721#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static void sa1111_dev_release(struct device *_dev)
724{
Russell Kingb60752f2016-09-06 13:46:46 +0100725 struct sa1111_dev *dev = to_sa1111_device(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 kfree(dev);
728}
729
730static int
731sa1111_init_one_child(struct sa1111 *sachip, struct resource *parent,
732 struct sa1111_dev_info *info)
733{
734 struct sa1111_dev *dev;
Russell Kingf03ecaa2012-01-16 00:09:22 +0000735 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 int ret;
737
Russell Kingd2a02b92006-03-20 19:46:41 +0000738 dev = kzalloc(sizeof(struct sa1111_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!dev) {
740 ret = -ENOMEM;
Russell King924e1d42012-01-29 10:20:00 +0000741 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Russell King924e1d42012-01-29 10:20:00 +0000744 device_initialize(&dev->dev);
Kay Sievers3f978702008-05-30 17:42:11 +0200745 dev_set_name(&dev->dev, "%4.4lx", info->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 dev->devid = info->devid;
747 dev->dev.parent = sachip->dev;
748 dev->dev.bus = &sa1111_bus_type;
749 dev->dev.release = sa1111_dev_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 dev->res.start = sachip->phys + info->offset;
751 dev->res.end = dev->res.start + 511;
Kay Sievers3f978702008-05-30 17:42:11 +0200752 dev->res.name = dev_name(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dev->res.flags = IORESOURCE_MEM;
754 dev->mapbase = sachip->base + info->offset;
755 dev->skpcr_mask = info->skpcr_mask;
Russell Kingf03ecaa2012-01-16 00:09:22 +0000756
Russell Kingbe2bedb2016-09-06 10:11:46 +0100757 for (i = 0; i < ARRAY_SIZE(info->hwirq); i++)
758 dev->hwirq[i] = info->hwirq[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Russell King09a2ba22012-01-29 09:31:31 +0000760 /*
Russell King21d1c772012-01-29 10:22:49 +0000761 * If the parent device has a DMA mask associated with it, and
762 * this child supports DMA, propagate it down to the children.
Russell King09a2ba22012-01-29 09:31:31 +0000763 */
Russell King21d1c772012-01-29 10:22:49 +0000764 if (info->dma && sachip->dev->dma_mask) {
Russell King09a2ba22012-01-29 09:31:31 +0000765 dev->dma_mask = *sachip->dev->dma_mask;
766 dev->dev.dma_mask = &dev->dma_mask;
767 dev->dev.coherent_dma_mask = sachip->dev->coherent_dma_mask;
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 ret = request_resource(parent, &dev->res);
771 if (ret) {
Russell King22eeaff2012-01-29 10:28:09 +0000772 dev_err(sachip->dev, "failed to allocate resource for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 dev->res.name);
Russell King924e1d42012-01-29 10:20:00 +0000774 goto err_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Russell King924e1d42012-01-29 10:20:00 +0000777 ret = device_add(&dev->dev);
778 if (ret)
779 goto err_add;
780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Russell King924e1d42012-01-29 10:20:00 +0000782 err_add:
783 release_resource(&dev->res);
784 err_resource:
785 put_device(&dev->dev);
786 err_alloc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return ret;
788}
789
790/**
791 * sa1111_probe - probe for a single SA1111 chip.
792 * @phys_addr: physical address of device.
793 *
794 * Probe for a SA1111 chip. This must be called
795 * before any other SA1111-specific code.
796 *
797 * Returns:
798 * %-ENODEV device not found.
799 * %-EBUSY physical address already marked in-use.
Russell Kingf03ecaa2012-01-16 00:09:22 +0000800 * %-EINVAL no platform data passed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * %0 successful.
802 */
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -0800803static int __sa1111_probe(struct device *me, struct resource *mem, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Russell Kingf03ecaa2012-01-16 00:09:22 +0000805 struct sa1111_platform_data *pd = me->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct sa1111 *sachip;
807 unsigned long id;
David Brownell416112f2006-08-27 13:09:14 +0100808 unsigned int has_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int i, ret = -ENODEV;
810
Russell Kingf03ecaa2012-01-16 00:09:22 +0000811 if (!pd)
812 return -EINVAL;
813
Russell King7d53c1f2016-09-06 15:29:26 +0100814 sachip = devm_kzalloc(me, sizeof(struct sa1111), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (!sachip)
816 return -ENOMEM;
817
Russell Kingdeee8562016-08-30 22:47:35 +0100818 sachip->clk = devm_clk_get(me, "SA1111_CLK");
819 if (IS_ERR(sachip->clk))
820 return PTR_ERR(sachip->clk);
Russell King97d654f2006-03-15 15:54:37 +0000821
Russell King72ae00c2011-09-22 11:41:07 +0100822 ret = clk_prepare(sachip->clk);
823 if (ret)
Russell Kingdeee8562016-08-30 22:47:35 +0100824 return ret;
Russell King72ae00c2011-09-22 11:41:07 +0100825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 spin_lock_init(&sachip->lock);
827
828 sachip->dev = me;
829 dev_set_drvdata(sachip->dev, sachip);
830
Russell Kingae99ddb2012-01-26 13:25:47 +0000831 sachip->pdata = pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 sachip->phys = mem->start;
833 sachip->irq = irq;
834
835 /*
836 * Map the whole region. This also maps the
837 * registers for our children.
838 */
839 sachip->base = ioremap(mem->start, PAGE_SIZE * 2);
840 if (!sachip->base) {
841 ret = -ENOMEM;
Russell King72ae00c2011-09-22 11:41:07 +0100842 goto err_clk_unprep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844
845 /*
846 * Probe for the chip. Only touch the SBI registers.
847 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100848 id = readl_relaxed(sachip->base + SA1111_SKID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if ((id & SKID_ID_MASK) != SKID_SA1111_ID) {
850 printk(KERN_DEBUG "SA1111 not detected: ID = %08lx\n", id);
851 ret = -ENODEV;
Russell King97d654f2006-03-15 15:54:37 +0000852 goto err_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Russell King4ed89f22014-10-28 11:26:42 +0000855 pr_info("SA1111 Microprocessor Companion Chip: silicon revision %lx, metal revision %lx\n",
856 (id & SKID_SIREV_MASK) >> 4, id & SKID_MTREV_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /*
859 * We found it. Wake the chip up, and initialise.
860 */
861 sa1111_wake(sachip);
862
Russell King36d31212012-01-24 21:25:20 +0000863 /*
864 * The interrupt controller must be initialised before any
865 * other device to ensure that the interrupts are available.
866 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100867 ret = sa1111_setup_irq(sachip, pd->irq_base);
868 if (ret)
869 goto err_clk;
Russell King36d31212012-01-24 21:25:20 +0000870
Russell King17cf5012016-08-31 08:49:45 +0100871 /* Setup the GPIOs - should really be done after the IRQ setup */
872 ret = sa1111_setup_gpios(sachip);
873 if (ret)
874 goto err_irq;
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#ifdef CONFIG_ARCH_SA1100
David Brownell416112f2006-08-27 13:09:14 +0100877 {
878 unsigned int val;
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /*
881 * The SDRAM configuration of the SA1110 and the SA1111 must
882 * match. This is very important to ensure that SA1111 accesses
883 * don't corrupt the SDRAM. Note that this ungates the SA1111's
884 * MBGNT signal, so we must have called sa1110_mb_disable()
885 * beforehand.
886 */
887 sa1111_configure_smc(sachip, 1,
888 FExtr(MDCNFG, MDCNFG_SA1110_DRAC0),
889 FExtr(MDCNFG, MDCNFG_SA1110_TDL0));
890
891 /*
892 * We only need to turn on DCLK whenever we want to use the
893 * DMA. It can otherwise be held firmly in the off position.
894 * (currently, we always enable it.)
895 */
Russell Kinga5b549e2016-09-07 15:11:14 +0100896 val = readl_relaxed(sachip->base + SA1111_SKPCR);
897 writel_relaxed(val | SKPCR_DCLKEN, sachip->base + SA1111_SKPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /*
900 * Enable the SA1110 memory bus request and grant signals.
901 */
902 sa1110_mb_enable();
David Brownell416112f2006-08-27 13:09:14 +0100903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904#endif
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 g_sa1111 = sachip;
907
908 has_devs = ~0;
Russell King07be45f2012-01-26 13:34:21 +0000909 if (pd)
910 has_devs &= ~pd->disable_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 for (i = 0; i < ARRAY_SIZE(sa1111_devices); i++)
Russell Kinge5c0fc42012-01-25 10:42:52 +0000913 if (sa1111_devices[i].devid & has_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 sa1111_init_one_child(sachip, mem, &sa1111_devices[i]);
915
916 return 0;
917
Russell King17cf5012016-08-31 08:49:45 +0100918 err_irq:
919 sa1111_remove_irq(sachip);
Russell King87d5dd62016-09-06 16:09:17 +0100920 err_clk:
921 clk_disable(sachip->clk);
Russell King97d654f2006-03-15 15:54:37 +0000922 err_unmap:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 iounmap(sachip->base);
Russell King72ae00c2011-09-22 11:41:07 +0100924 err_clk_unprep:
925 clk_unprepare(sachip->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return ret;
927}
928
Russell King522c37b2005-06-22 09:52:26 +0100929static int sa1111_remove_one(struct device *dev, void *data)
930{
Russell Kingb60752f2016-09-06 13:46:46 +0100931 struct sa1111_dev *sadev = to_sa1111_device(dev);
Russell Kingeac8dbf2016-09-03 09:14:58 +0100932 if (dev->bus != &sa1111_bus_type)
933 return 0;
Russell King924e1d42012-01-29 10:20:00 +0000934 device_del(&sadev->dev);
935 release_resource(&sadev->res);
936 put_device(&sadev->dev);
Russell King522c37b2005-06-22 09:52:26 +0100937 return 0;
938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940static void __sa1111_remove(struct sa1111 *sachip)
941{
Russell King522c37b2005-06-22 09:52:26 +0100942 device_for_each_child(sachip->dev, NULL, sa1111_remove_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Russell Kingccb7d852016-09-06 16:01:32 +0100944 sa1111_remove_irq(sachip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Russell King97d654f2006-03-15 15:54:37 +0000946 clk_disable(sachip->clk);
Russell King72ae00c2011-09-22 11:41:07 +0100947 clk_unprepare(sachip->clk);
Russell King97d654f2006-03-15 15:54:37 +0000948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 iounmap(sachip->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952struct sa1111_save_data {
953 unsigned int skcr;
954 unsigned int skpcr;
955 unsigned int skcdr;
956 unsigned char skaud;
957 unsigned char skpwm0;
958 unsigned char skpwm1;
959
960 /*
961 * Interrupt controller
962 */
963 unsigned int intpol0;
964 unsigned int intpol1;
965 unsigned int inten0;
966 unsigned int inten1;
967 unsigned int wakepol0;
968 unsigned int wakepol1;
969 unsigned int wakeen0;
970 unsigned int wakeen1;
971};
972
973#ifdef CONFIG_PM
974
Russell King06dfe5c2016-09-06 14:34:05 +0100975static int sa1111_suspend_noirq(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Russell King06dfe5c2016-09-06 14:34:05 +0100977 struct sa1111 *sachip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 struct sa1111_save_data *save;
979 unsigned long flags;
980 unsigned int val;
981 void __iomem *base;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 save = kmalloc(sizeof(struct sa1111_save_data), GFP_KERNEL);
984 if (!save)
985 return -ENOMEM;
Rafael J. Wysocki93160c62007-07-09 11:39:19 -0700986 sachip->saved_state = save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 spin_lock_irqsave(&sachip->lock, flags);
989
990 /*
991 * Save state.
992 */
993 base = sachip->base;
Russell Kinga5b549e2016-09-07 15:11:14 +0100994 save->skcr = readl_relaxed(base + SA1111_SKCR);
995 save->skpcr = readl_relaxed(base + SA1111_SKPCR);
996 save->skcdr = readl_relaxed(base + SA1111_SKCDR);
997 save->skaud = readl_relaxed(base + SA1111_SKAUD);
998 save->skpwm0 = readl_relaxed(base + SA1111_SKPWM0);
999 save->skpwm1 = readl_relaxed(base + SA1111_SKPWM1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Russell Kinga5b549e2016-09-07 15:11:14 +01001001 writel_relaxed(0, sachip->base + SA1111_SKPWM0);
1002 writel_relaxed(0, sachip->base + SA1111_SKPWM1);
Russell Kinga22db0f32012-02-03 19:05:13 +00001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 base = sachip->base + SA1111_INTC;
Russell Kinga5b549e2016-09-07 15:11:14 +01001005 save->intpol0 = readl_relaxed(base + SA1111_INTPOL0);
1006 save->intpol1 = readl_relaxed(base + SA1111_INTPOL1);
1007 save->inten0 = readl_relaxed(base + SA1111_INTEN0);
1008 save->inten1 = readl_relaxed(base + SA1111_INTEN1);
1009 save->wakepol0 = readl_relaxed(base + SA1111_WAKEPOL0);
1010 save->wakepol1 = readl_relaxed(base + SA1111_WAKEPOL1);
1011 save->wakeen0 = readl_relaxed(base + SA1111_WAKEEN0);
1012 save->wakeen1 = readl_relaxed(base + SA1111_WAKEEN1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /*
1015 * Disable.
1016 */
Russell Kinga5b549e2016-09-07 15:11:14 +01001017 val = readl_relaxed(sachip->base + SA1111_SKCR);
1018 writel_relaxed(val | SKCR_SLEEP, sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Russell King97d654f2006-03-15 15:54:37 +00001020 clk_disable(sachip->clk);
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 spin_unlock_irqrestore(&sachip->lock, flags);
1023
Russell King29c140b2012-02-03 19:03:31 +00001024#ifdef CONFIG_ARCH_SA1100
1025 sa1110_mb_disable();
1026#endif
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return 0;
1029}
1030
1031/*
1032 * sa1111_resume - Restore the SA1111 device state.
1033 * @dev: device to restore
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 *
1035 * Restore the general state of the SA1111; clock control and
1036 * interrupt controller. Other parts of the SA1111 must be
1037 * restored by their respective drivers, and must be called
1038 * via LDM after this function.
1039 */
Russell King06dfe5c2016-09-06 14:34:05 +01001040static int sa1111_resume_noirq(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Russell King06dfe5c2016-09-06 14:34:05 +01001042 struct sa1111 *sachip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 struct sa1111_save_data *save;
1044 unsigned long flags, id;
1045 void __iomem *base;
1046
Rafael J. Wysocki93160c62007-07-09 11:39:19 -07001047 save = sachip->saved_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (!save)
1049 return 0;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /*
1052 * Ensure that the SA1111 is still here.
1053 * FIXME: shouldn't do this here.
1054 */
Russell Kinga5b549e2016-09-07 15:11:14 +01001055 id = readl_relaxed(sachip->base + SA1111_SKID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if ((id & SKID_ID_MASK) != SKID_SA1111_ID) {
1057 __sa1111_remove(sachip);
Russell King06dfe5c2016-09-06 14:34:05 +01001058 dev_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 kfree(save);
1060 return 0;
1061 }
1062
1063 /*
1064 * First of all, wake up the chip.
1065 */
1066 sa1111_wake(sachip);
Marek Vašut3defb242010-05-26 23:53:09 +01001067
Russell King29c140b2012-02-03 19:03:31 +00001068#ifdef CONFIG_ARCH_SA1100
1069 /* Enable the memory bus request/grant signals */
1070 sa1110_mb_enable();
1071#endif
1072
Marek Vašut3defb242010-05-26 23:53:09 +01001073 /*
1074 * Only lock for write ops. Also, sa1111_wake must be called with
1075 * released spinlock!
1076 */
1077 spin_lock_irqsave(&sachip->lock, flags);
1078
Russell Kinga5b549e2016-09-07 15:11:14 +01001079 writel_relaxed(0, sachip->base + SA1111_INTC + SA1111_INTEN0);
1080 writel_relaxed(0, sachip->base + SA1111_INTC + SA1111_INTEN1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 base = sachip->base;
Russell Kinga5b549e2016-09-07 15:11:14 +01001083 writel_relaxed(save->skcr, base + SA1111_SKCR);
1084 writel_relaxed(save->skpcr, base + SA1111_SKPCR);
1085 writel_relaxed(save->skcdr, base + SA1111_SKCDR);
1086 writel_relaxed(save->skaud, base + SA1111_SKAUD);
1087 writel_relaxed(save->skpwm0, base + SA1111_SKPWM0);
1088 writel_relaxed(save->skpwm1, base + SA1111_SKPWM1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 base = sachip->base + SA1111_INTC;
Russell Kinga5b549e2016-09-07 15:11:14 +01001091 writel_relaxed(save->intpol0, base + SA1111_INTPOL0);
1092 writel_relaxed(save->intpol1, base + SA1111_INTPOL1);
1093 writel_relaxed(save->inten0, base + SA1111_INTEN0);
1094 writel_relaxed(save->inten1, base + SA1111_INTEN1);
1095 writel_relaxed(save->wakepol0, base + SA1111_WAKEPOL0);
1096 writel_relaxed(save->wakepol1, base + SA1111_WAKEPOL1);
1097 writel_relaxed(save->wakeen0, base + SA1111_WAKEEN0);
1098 writel_relaxed(save->wakeen1, base + SA1111_WAKEEN1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 spin_unlock_irqrestore(&sachip->lock, flags);
1101
Rafael J. Wysocki93160c62007-07-09 11:39:19 -07001102 sachip->saved_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 kfree(save);
1104
1105 return 0;
1106}
1107
1108#else
Russell King06dfe5c2016-09-06 14:34:05 +01001109#define sa1111_suspend_noirq NULL
1110#define sa1111_resume_noirq NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111#endif
1112
Greg Kroah-Hartman351a1022012-12-21 14:02:24 -08001113static int sa1111_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 struct resource *mem;
1116 int irq;
1117
1118 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1119 if (!mem)
1120 return -EINVAL;
1121 irq = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +00001122 if (irq < 0)
Russell Kingcb034402016-09-03 10:21:51 +01001123 return irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Russell King3ae5eae2005-11-09 22:32:44 +00001125 return __sa1111_probe(&pdev->dev, mem, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Russell King3ae5eae2005-11-09 22:32:44 +00001128static int sa1111_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Russell King3ae5eae2005-11-09 22:32:44 +00001130 struct sa1111 *sachip = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (sachip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133#ifdef CONFIG_PM
Rafael J. Wysocki93160c62007-07-09 11:39:19 -07001134 kfree(sachip->saved_state);
1135 sachip->saved_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136#endif
Julia Lawallf2d24202010-07-30 17:17:28 +02001137 __sa1111_remove(sachip);
1138 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141 return 0;
1142}
1143
Russell King06dfe5c2016-09-06 14:34:05 +01001144static struct dev_pm_ops sa1111_pm_ops = {
1145 .suspend_noirq = sa1111_suspend_noirq,
1146 .resume_noirq = sa1111_resume_noirq,
1147};
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149/*
1150 * Not sure if this should be on the system bus or not yet.
1151 * We really want some way to register a system device at
1152 * the per-machine level, and then have this driver pick
1153 * up the registered devices.
1154 *
1155 * We also need to handle the SDRAM configuration for
1156 * PXA250/SA1110 machine classes.
1157 */
Russell King3ae5eae2005-11-09 22:32:44 +00001158static struct platform_driver sa1111_device_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 .probe = sa1111_probe,
1160 .remove = sa1111_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00001161 .driver = {
1162 .name = "sa1111",
Russell King06dfe5c2016-09-06 14:34:05 +01001163 .pm = &sa1111_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00001164 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165};
1166
1167/*
1168 * Get the parent device driver (us) structure
1169 * from a child function device
1170 */
1171static inline struct sa1111 *sa1111_chip_driver(struct sa1111_dev *sadev)
1172{
1173 return (struct sa1111 *)dev_get_drvdata(sadev->dev.parent);
1174}
1175
1176/*
1177 * The bits in the opdiv field are non-linear.
1178 */
1179static unsigned char opdiv_table[] = { 1, 4, 2, 8 };
1180
1181static unsigned int __sa1111_pll_clock(struct sa1111 *sachip)
1182{
1183 unsigned int skcdr, fbdiv, ipdiv, opdiv;
1184
Russell Kinga5b549e2016-09-07 15:11:14 +01001185 skcdr = readl_relaxed(sachip->base + SA1111_SKCDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 fbdiv = (skcdr & 0x007f) + 2;
1188 ipdiv = ((skcdr & 0x0f80) >> 7) + 2;
1189 opdiv = opdiv_table[(skcdr & 0x3000) >> 12];
1190
1191 return 3686400 * fbdiv / (ipdiv * opdiv);
1192}
1193
1194/**
1195 * sa1111_pll_clock - return the current PLL clock frequency.
1196 * @sadev: SA1111 function block
1197 *
1198 * BUG: we should look at SKCR. We also blindly believe that
1199 * the chip is being fed with the 3.6864MHz clock.
1200 *
1201 * Returns the PLL clock in Hz.
1202 */
1203unsigned int sa1111_pll_clock(struct sa1111_dev *sadev)
1204{
1205 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1206
1207 return __sa1111_pll_clock(sachip);
1208}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001209EXPORT_SYMBOL(sa1111_pll_clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211/**
1212 * sa1111_select_audio_mode - select I2S or AC link mode
1213 * @sadev: SA1111 function block
1214 * @mode: One of %SA1111_AUDIO_ACLINK or %SA1111_AUDIO_I2S
1215 *
1216 * Frob the SKCR to select AC Link mode or I2S mode for
1217 * the audio block.
1218 */
1219void sa1111_select_audio_mode(struct sa1111_dev *sadev, int mode)
1220{
1221 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1222 unsigned long flags;
1223 unsigned int val;
1224
1225 spin_lock_irqsave(&sachip->lock, flags);
1226
Russell Kinga5b549e2016-09-07 15:11:14 +01001227 val = readl_relaxed(sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (mode == SA1111_AUDIO_I2S) {
1229 val &= ~SKCR_SELAC;
1230 } else {
1231 val |= SKCR_SELAC;
1232 }
Russell Kinga5b549e2016-09-07 15:11:14 +01001233 writel_relaxed(val, sachip->base + SA1111_SKCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 spin_unlock_irqrestore(&sachip->lock, flags);
1236}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001237EXPORT_SYMBOL(sa1111_select_audio_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239/**
1240 * sa1111_set_audio_rate - set the audio sample rate
1241 * @sadev: SA1111 SAC function block
1242 * @rate: sample rate to select
1243 */
1244int sa1111_set_audio_rate(struct sa1111_dev *sadev, int rate)
1245{
1246 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1247 unsigned int div;
1248
1249 if (sadev->devid != SA1111_DEVID_SAC)
1250 return -EINVAL;
1251
1252 div = (__sa1111_pll_clock(sachip) / 256 + rate / 2) / rate;
1253 if (div == 0)
1254 div = 1;
1255 if (div > 128)
1256 div = 128;
1257
Russell Kinga5b549e2016-09-07 15:11:14 +01001258 writel_relaxed(div - 1, sachip->base + SA1111_SKAUD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 return 0;
1261}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001262EXPORT_SYMBOL(sa1111_set_audio_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264/**
1265 * sa1111_get_audio_rate - get the audio sample rate
1266 * @sadev: SA1111 SAC function block device
1267 */
1268int sa1111_get_audio_rate(struct sa1111_dev *sadev)
1269{
1270 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1271 unsigned long div;
1272
1273 if (sadev->devid != SA1111_DEVID_SAC)
1274 return -EINVAL;
1275
Russell Kinga5b549e2016-09-07 15:11:14 +01001276 div = readl_relaxed(sachip->base + SA1111_SKAUD) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 return __sa1111_pll_clock(sachip) / (256 * div);
1279}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001280EXPORT_SYMBOL(sa1111_get_audio_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282/*
1283 * Individual device operations.
1284 */
1285
1286/**
1287 * sa1111_enable_device - enable an on-chip SA1111 function block
1288 * @sadev: SA1111 function block device to enable
1289 */
Russell Kingae99ddb2012-01-26 13:25:47 +00001290int sa1111_enable_device(struct sa1111_dev *sadev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1293 unsigned long flags;
1294 unsigned int val;
Russell Kingae99ddb2012-01-26 13:25:47 +00001295 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Russell Kingae99ddb2012-01-26 13:25:47 +00001297 if (sachip->pdata && sachip->pdata->enable)
1298 ret = sachip->pdata->enable(sachip->pdata->data, sadev->devid);
1299
1300 if (ret == 0) {
1301 spin_lock_irqsave(&sachip->lock, flags);
Russell Kinga5b549e2016-09-07 15:11:14 +01001302 val = readl_relaxed(sachip->base + SA1111_SKPCR);
1303 writel_relaxed(val | sadev->skpcr_mask, sachip->base + SA1111_SKPCR);
Russell Kingae99ddb2012-01-26 13:25:47 +00001304 spin_unlock_irqrestore(&sachip->lock, flags);
1305 }
1306 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001308EXPORT_SYMBOL(sa1111_enable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310/**
1311 * sa1111_disable_device - disable an on-chip SA1111 function block
1312 * @sadev: SA1111 function block device to disable
1313 */
1314void sa1111_disable_device(struct sa1111_dev *sadev)
1315{
1316 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1317 unsigned long flags;
1318 unsigned int val;
1319
1320 spin_lock_irqsave(&sachip->lock, flags);
Russell Kinga5b549e2016-09-07 15:11:14 +01001321 val = readl_relaxed(sachip->base + SA1111_SKPCR);
1322 writel_relaxed(val & ~sadev->skpcr_mask, sachip->base + SA1111_SKPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 spin_unlock_irqrestore(&sachip->lock, flags);
Russell Kingae99ddb2012-01-26 13:25:47 +00001324
1325 if (sachip->pdata && sachip->pdata->disable)
1326 sachip->pdata->disable(sachip->pdata->data, sadev->devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001328EXPORT_SYMBOL(sa1111_disable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Russell Kingcf6e4ca2016-09-06 00:45:33 +01001330int sa1111_get_irq(struct sa1111_dev *sadev, unsigned num)
1331{
Russell Kingbe2bedb2016-09-06 10:11:46 +01001332 struct sa1111 *sachip = sa1111_chip_driver(sadev);
1333 if (num >= ARRAY_SIZE(sadev->hwirq))
Russell Kingcf6e4ca2016-09-06 00:45:33 +01001334 return -EINVAL;
Russell Kingbe2bedb2016-09-06 10:11:46 +01001335 return sa1111_map_irq(sachip, sadev->hwirq[num]);
Russell Kingcf6e4ca2016-09-06 00:45:33 +01001336}
1337EXPORT_SYMBOL_GPL(sa1111_get_irq);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339/*
1340 * SA1111 "Register Access Bus."
1341 *
1342 * We model this as a regular bus type, and hang devices directly
1343 * off this.
1344 */
1345static int sa1111_match(struct device *_dev, struct device_driver *_drv)
1346{
Russell Kingb60752f2016-09-06 13:46:46 +01001347 struct sa1111_dev *dev = to_sa1111_device(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct sa1111_driver *drv = SA1111_DRV(_drv);
1349
Marek Szyprowski17f29d362016-02-15 09:24:05 +01001350 return !!(dev->devid & drv->devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static int sa1111_bus_probe(struct device *dev)
1354{
Russell Kingb60752f2016-09-06 13:46:46 +01001355 struct sa1111_dev *sadev = to_sa1111_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1357 int ret = -ENODEV;
1358
1359 if (drv->probe)
1360 ret = drv->probe(sadev);
1361 return ret;
1362}
1363
1364static int sa1111_bus_remove(struct device *dev)
1365{
Russell Kingb60752f2016-09-06 13:46:46 +01001366 struct sa1111_dev *sadev = to_sa1111_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 struct sa1111_driver *drv = SA1111_DRV(dev->driver);
1368 int ret = 0;
1369
1370 if (drv->remove)
1371 ret = drv->remove(sadev);
1372 return ret;
1373}
1374
1375struct bus_type sa1111_bus_type = {
1376 .name = "sa1111-rab",
1377 .match = sa1111_match,
Russell King2876ba42006-01-05 14:32:32 +00001378 .probe = sa1111_bus_probe,
1379 .remove = sa1111_bus_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380};
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001381EXPORT_SYMBOL(sa1111_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383int sa1111_driver_register(struct sa1111_driver *driver)
1384{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 driver->drv.bus = &sa1111_bus_type;
1386 return driver_register(&driver->drv);
1387}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001388EXPORT_SYMBOL(sa1111_driver_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390void sa1111_driver_unregister(struct sa1111_driver *driver)
1391{
1392 driver_unregister(&driver->drv);
1393}
Hartley Sweeten0a4bc5e2009-09-29 23:49:02 +01001394EXPORT_SYMBOL(sa1111_driver_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Russell King09a2ba22012-01-29 09:31:31 +00001396#ifdef CONFIG_DMABOUNCE
1397/*
1398 * According to the "Intel StrongARM SA-1111 Microprocessor Companion
1399 * Chip Specification Update" (June 2000), erratum #7, there is a
1400 * significant bug in the SA1111 SDRAM shared memory controller. If
1401 * an access to a region of memory above 1MB relative to the bank base,
1402 * it is important that address bit 10 _NOT_ be asserted. Depending
1403 * on the configuration of the RAM, bit 10 may correspond to one
1404 * of several different (processor-relative) address bits.
1405 *
1406 * This routine only identifies whether or not a given DMA address
1407 * is susceptible to the bug.
1408 *
1409 * This should only get called for sa1111_device types due to the
1410 * way we configure our device dma_masks.
1411 */
1412static int sa1111_needs_bounce(struct device *dev, dma_addr_t addr, size_t size)
1413{
1414 /*
1415 * Section 4.6 of the "Intel StrongARM SA-1111 Development Module
1416 * User's Guide" mentions that jumpers R51 and R52 control the
1417 * target of SA-1111 DMA (either SDRAM bank 0 on Assabet, or
1418 * SDRAM bank 1 on Neponset). The default configuration selects
1419 * Assabet, so any address in bank 1 is necessarily invalid.
1420 */
1421 return (machine_is_assabet() || machine_is_pfs168()) &&
1422 (addr >= 0xc8000000 || (addr + size) >= 0xc8000000);
1423}
1424
1425static int sa1111_notifier_call(struct notifier_block *n, unsigned long action,
1426 void *data)
1427{
Russell Kingb60752f2016-09-06 13:46:46 +01001428 struct sa1111_dev *dev = to_sa1111_device(data);
Russell King09a2ba22012-01-29 09:31:31 +00001429
1430 switch (action) {
1431 case BUS_NOTIFY_ADD_DEVICE:
1432 if (dev->dev.dma_mask && dev->dma_mask < 0xffffffffUL) {
1433 int ret = dmabounce_register_dev(&dev->dev, 1024, 4096,
1434 sa1111_needs_bounce);
1435 if (ret)
1436 dev_err(&dev->dev, "failed to register with dmabounce: %d\n", ret);
1437 }
1438 break;
1439
1440 case BUS_NOTIFY_DEL_DEVICE:
1441 if (dev->dev.dma_mask && dev->dma_mask < 0xffffffffUL)
1442 dmabounce_unregister_dev(&dev->dev);
1443 break;
1444 }
1445 return NOTIFY_OK;
1446}
1447
1448static struct notifier_block sa1111_bus_notifier = {
1449 .notifier_call = sa1111_notifier_call,
1450};
1451#endif
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453static int __init sa1111_init(void)
1454{
1455 int ret = bus_register(&sa1111_bus_type);
Russell King09a2ba22012-01-29 09:31:31 +00001456#ifdef CONFIG_DMABOUNCE
1457 if (ret == 0)
1458 bus_register_notifier(&sa1111_bus_type, &sa1111_bus_notifier);
1459#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (ret == 0)
Russell King3ae5eae2005-11-09 22:32:44 +00001461 platform_driver_register(&sa1111_device_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return ret;
1463}
1464
1465static void __exit sa1111_exit(void)
1466{
Russell King3ae5eae2005-11-09 22:32:44 +00001467 platform_driver_unregister(&sa1111_device_driver);
Russell King09a2ba22012-01-29 09:31:31 +00001468#ifdef CONFIG_DMABOUNCE
1469 bus_unregister_notifier(&sa1111_bus_type, &sa1111_bus_notifier);
1470#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 bus_unregister(&sa1111_bus_type);
1472}
1473
Russell King72724382005-11-15 19:04:22 +00001474subsys_initcall(sa1111_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475module_exit(sa1111_exit);
1476
1477MODULE_DESCRIPTION("Intel Corporation SA1111 core driver");
1478MODULE_LICENSE("GPL");