blob: 1531302a50ec3590ad5dbd204b5417339fbbe619 [file] [log] [blame]
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001/*
2 * driver/mfd/asic3.c
3 *
4 * Compaq ASIC3 support.
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 * Copyright 2001 Compaq Computer Corporation.
11 * Copyright 2004-2005 Phil Blundell
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020012 * Copyright 2007-2008 OpenedHand Ltd.
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080013 *
14 * Authors: Phil Blundell <pb@handhelds.org>,
15 * Samuel Ortiz <sameo@openedhand.com>
16 *
17 */
18
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080019#include <linux/kernel.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020020#include <linux/delay.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080021#include <linux/irq.h>
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020022#include <linux/gpio.h>
Paul Gortmaker5d4a3572011-07-10 12:41:10 -040023#include <linux/export.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080024#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080026#include <linux/spinlock.h>
27#include <linux/platform_device.h>
28
29#include <linux/mfd/asic3.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020030#include <linux/mfd/core.h>
31#include <linux/mfd/ds1wm.h>
Philipp Zabel09f05ce2009-06-15 12:10:25 +020032#include <linux/mfd/tmio.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080033
Robert Jarzmik4eb1d7f2018-05-26 11:31:50 +020034#include <linux/mmc/host.h>
35
Philipp Zabele956a2a2009-06-05 18:31:02 +020036enum {
37 ASIC3_CLOCK_SPI,
38 ASIC3_CLOCK_OWM,
39 ASIC3_CLOCK_PWM0,
40 ASIC3_CLOCK_PWM1,
41 ASIC3_CLOCK_LED0,
42 ASIC3_CLOCK_LED1,
43 ASIC3_CLOCK_LED2,
44 ASIC3_CLOCK_SD_HOST,
45 ASIC3_CLOCK_SD_BUS,
46 ASIC3_CLOCK_SMBUS,
47 ASIC3_CLOCK_EX0,
48 ASIC3_CLOCK_EX1,
49};
50
51struct asic3_clk {
52 int enabled;
53 unsigned int cdex;
54 unsigned long rate;
55};
56
57#define INIT_CDEX(_name, _rate) \
58 [ASIC3_CLOCK_##_name] = { \
59 .cdex = CLOCK_CDEX_##_name, \
60 .rate = _rate, \
61 }
62
Mark Brown59f2ad22010-12-11 12:59:35 +000063static struct asic3_clk asic3_clk_init[] __initdata = {
Philipp Zabele956a2a2009-06-05 18:31:02 +020064 INIT_CDEX(SPI, 0),
65 INIT_CDEX(OWM, 5000000),
66 INIT_CDEX(PWM0, 0),
67 INIT_CDEX(PWM1, 0),
68 INIT_CDEX(LED0, 0),
69 INIT_CDEX(LED1, 0),
70 INIT_CDEX(LED2, 0),
71 INIT_CDEX(SD_HOST, 24576000),
72 INIT_CDEX(SD_BUS, 12288000),
73 INIT_CDEX(SMBUS, 0),
74 INIT_CDEX(EX0, 32768),
75 INIT_CDEX(EX1, 24576000),
76};
77
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020078struct asic3 {
79 void __iomem *mapping;
80 unsigned int bus_shift;
81 unsigned int irq_nr;
82 unsigned int irq_base;
Julia Cartwright93ad4472017-03-21 17:43:04 -050083 raw_spinlock_t lock;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020084 u16 irq_bothedge[4];
85 struct gpio_chip gpio;
86 struct device *dev;
Ian Molton64e88672010-01-06 13:51:48 +010087 void __iomem *tmio_cnf;
Philipp Zabele956a2a2009-06-05 18:31:02 +020088
89 struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)];
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020090};
91
92static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset);
93
Paul Parsons13ca4f62011-05-13 18:53:03 +000094void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080095{
Al Virob32661e2008-03-29 03:10:58 +000096 iowrite16(value, asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080097 (reg >> asic->bus_shift));
98}
Paul Parsons13ca4f62011-05-13 18:53:03 +000099EXPORT_SYMBOL_GPL(asic3_write_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800100
Paul Parsons13ca4f62011-05-13 18:53:03 +0000101u32 asic3_read_register(struct asic3 *asic, unsigned int reg)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800102{
Al Virob32661e2008-03-29 03:10:58 +0000103 return ioread16(asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800104 (reg >> asic->bus_shift));
105}
Paul Parsons13ca4f62011-05-13 18:53:03 +0000106EXPORT_SYMBOL_GPL(asic3_read_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800107
Mark Brown59f2ad22010-12-11 12:59:35 +0000108static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200109{
110 unsigned long flags;
111 u32 val;
112
Julia Cartwright93ad4472017-03-21 17:43:04 -0500113 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200114 val = asic3_read_register(asic, reg);
115 if (set)
116 val |= bits;
117 else
118 val &= ~bits;
119 asic3_write_register(asic, reg, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500120 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200121}
122
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800123/* IRQs */
124#define MAX_ASIC_ISR_LOOPS 20
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200125#define ASIC3_GPIO_BASE_INCR \
126 (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800127
128static void asic3_irq_flip_edge(struct asic3 *asic,
129 u32 base, int bit)
130{
131 u16 edge;
132 unsigned long flags;
133
Julia Cartwright93ad4472017-03-21 17:43:04 -0500134 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800135 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200136 base + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800137 edge ^= bit;
138 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200139 base + ASIC3_GPIO_EDGE_TRIGGER, edge);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500140 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800141}
142
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200143static void asic3_irq_demux(struct irq_desc *desc)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800144{
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000145 struct asic3 *asic = irq_desc_get_handler_data(desc);
146 struct irq_data *data = irq_desc_get_irq_data(desc);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800147 int iter, i;
148 unsigned long flags;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800149
Axel Lina09aee82011-04-14 22:43:47 +0800150 data->chip->irq_ack(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800151
152 for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
153 u32 status;
154 int bank;
155
Julia Cartwright93ad4472017-03-21 17:43:04 -0500156 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800157 status = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200158 ASIC3_OFFSET(INTR, P_INT_STAT));
Julia Cartwright93ad4472017-03-21 17:43:04 -0500159 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800160
161 /* Check all ten register bits */
162 if ((status & 0x3ff) == 0)
163 break;
164
165 /* Handle GPIO IRQs */
166 for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) {
167 if (status & (1 << bank)) {
168 unsigned long base, istat;
169
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200170 base = ASIC3_GPIO_A_BASE
171 + bank * ASIC3_GPIO_BASE_INCR;
Julia Cartwright93ad4472017-03-21 17:43:04 -0500172 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800173 istat = asic3_read_register(asic,
174 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200175 ASIC3_GPIO_INT_STATUS);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800176 /* Clearing IntStatus */
177 asic3_write_register(asic,
178 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200179 ASIC3_GPIO_INT_STATUS, 0);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500180 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800181
182 for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) {
183 int bit = (1 << i);
184 unsigned int irqnr;
185
186 if (!(istat & bit))
187 continue;
188
189 irqnr = asic->irq_base +
190 (ASIC3_GPIOS_PER_BANK * bank)
191 + i;
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000192 generic_handle_irq(irqnr);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800193 if (asic->irq_bothedge[bank] & bit)
194 asic3_irq_flip_edge(asic, base,
195 bit);
196 }
197 }
198 }
199
200 /* Handle remaining IRQs in the status register */
201 for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) {
202 /* They start at bit 4 and go up */
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000203 if (status & (1 << (i - ASIC3_NUM_GPIOS + 4)))
204 generic_handle_irq(asic->irq_base + i);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800205 }
206 }
207
208 if (iter >= MAX_ASIC_ISR_LOOPS)
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200209 dev_err(asic->dev, "interrupt processing overrun\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800210}
211
212static inline int asic3_irq_to_bank(struct asic3 *asic, int irq)
213{
214 int n;
215
216 n = (irq - asic->irq_base) >> 4;
217
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200218 return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800219}
220
221static inline int asic3_irq_to_index(struct asic3 *asic, int irq)
222{
223 return (irq - asic->irq_base) & 0xf;
224}
225
Mark Brown0f76aae2010-12-11 13:08:57 +0000226static void asic3_mask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800227{
Mark Brown0f76aae2010-12-11 13:08:57 +0000228 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800229 u32 val, bank, index;
230 unsigned long flags;
231
Mark Brown0f76aae2010-12-11 13:08:57 +0000232 bank = asic3_irq_to_bank(asic, data->irq);
233 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800234
Julia Cartwright93ad4472017-03-21 17:43:04 -0500235 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200236 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800237 val |= 1 << index;
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200238 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500239 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800240}
241
Mark Brown0f76aae2010-12-11 13:08:57 +0000242static void asic3_mask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800243{
Mark Brown0f76aae2010-12-11 13:08:57 +0000244 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800245 int regval;
246 unsigned long flags;
247
Julia Cartwright93ad4472017-03-21 17:43:04 -0500248 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800249 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200250 ASIC3_INTR_BASE +
251 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800252
253 regval &= ~(ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000254 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800255
256 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200257 ASIC3_INTR_BASE +
258 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800259 regval);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500260 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800261}
262
Mark Brown0f76aae2010-12-11 13:08:57 +0000263static void asic3_unmask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800264{
Mark Brown0f76aae2010-12-11 13:08:57 +0000265 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800266 u32 val, bank, index;
267 unsigned long flags;
268
Mark Brown0f76aae2010-12-11 13:08:57 +0000269 bank = asic3_irq_to_bank(asic, data->irq);
270 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800271
Julia Cartwright93ad4472017-03-21 17:43:04 -0500272 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200273 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800274 val &= ~(1 << index);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200275 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500276 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800277}
278
Mark Brown0f76aae2010-12-11 13:08:57 +0000279static void asic3_unmask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800280{
Mark Brown0f76aae2010-12-11 13:08:57 +0000281 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800282 int regval;
283 unsigned long flags;
284
Julia Cartwright93ad4472017-03-21 17:43:04 -0500285 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800286 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200287 ASIC3_INTR_BASE +
288 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800289
290 regval |= (ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000291 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800292
293 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200294 ASIC3_INTR_BASE +
295 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800296 regval);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500297 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800298}
299
Mark Brown0f76aae2010-12-11 13:08:57 +0000300static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800301{
Mark Brown0f76aae2010-12-11 13:08:57 +0000302 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800303 u32 bank, index;
304 u16 trigger, level, edge, bit;
305 unsigned long flags;
306
Mark Brown0f76aae2010-12-11 13:08:57 +0000307 bank = asic3_irq_to_bank(asic, data->irq);
308 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800309 bit = 1<<index;
310
Julia Cartwright93ad4472017-03-21 17:43:04 -0500311 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800312 level = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200313 bank + ASIC3_GPIO_LEVEL_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800314 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200315 bank + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800316 trigger = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200317 bank + ASIC3_GPIO_TRIGGER_TYPE);
Mark Brown0f76aae2010-12-11 13:08:57 +0000318 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800319
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100320 if (type == IRQ_TYPE_EDGE_RISING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800321 trigger |= bit;
322 edge |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100323 } else if (type == IRQ_TYPE_EDGE_FALLING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800324 trigger |= bit;
325 edge &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100326 } else if (type == IRQ_TYPE_EDGE_BOTH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800327 trigger |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000328 if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base))
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800329 edge &= ~bit;
330 else
331 edge |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000332 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100333 } else if (type == IRQ_TYPE_LEVEL_LOW) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800334 trigger &= ~bit;
335 level &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100336 } else if (type == IRQ_TYPE_LEVEL_HIGH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800337 trigger &= ~bit;
338 level |= bit;
339 } else {
340 /*
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100341 * if type == IRQ_TYPE_NONE, we should mask interrupts, but
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800342 * be careful to not unmask them if mask was also called.
343 * Probably need internal state for mask.
344 */
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200345 dev_notice(asic->dev, "irq type not changed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800346 }
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200347 asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800348 level);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200349 asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800350 edge);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200351 asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800352 trigger);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500353 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800354 return 0;
355}
356
Paul Parsons2fe372f2012-04-11 00:35:34 +0100357static int asic3_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
358{
359 struct asic3 *asic = irq_data_get_irq_chip_data(data);
360 u32 bank, index;
361 u16 bit;
362
363 bank = asic3_irq_to_bank(asic, data->irq);
364 index = asic3_irq_to_index(asic, data->irq);
365 bit = 1<<index;
366
367 asic3_set_register(asic, bank + ASIC3_GPIO_SLEEP_MASK, bit, !on);
368
369 return 0;
370}
371
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800372static struct irq_chip asic3_gpio_irq_chip = {
373 .name = "ASIC3-GPIO",
Mark Brown0f76aae2010-12-11 13:08:57 +0000374 .irq_ack = asic3_mask_gpio_irq,
375 .irq_mask = asic3_mask_gpio_irq,
376 .irq_unmask = asic3_unmask_gpio_irq,
377 .irq_set_type = asic3_gpio_irq_type,
Paul Parsons2fe372f2012-04-11 00:35:34 +0100378 .irq_set_wake = asic3_gpio_irq_set_wake,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800379};
380
381static struct irq_chip asic3_irq_chip = {
382 .name = "ASIC3",
Mark Brown0f76aae2010-12-11 13:08:57 +0000383 .irq_ack = asic3_mask_irq,
384 .irq_mask = asic3_mask_irq,
385 .irq_unmask = asic3_unmask_irq,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800386};
387
Philipp Zabel065032f2008-06-21 00:51:38 +0200388static int __init asic3_irq_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800389{
390 struct asic3 *asic = platform_get_drvdata(pdev);
391 unsigned long clksel = 0;
392 unsigned int irq, irq_base;
Roel Kluinc491b2f2008-07-25 19:44:41 -0700393 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800394
Roel Kluinc491b2f2008-07-25 19:44:41 -0700395 ret = platform_get_irq(pdev, 0);
396 if (ret < 0)
397 return ret;
398 asic->irq_nr = ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800399
400 /* turn on clock to IRQ controller */
401 clksel |= CLOCK_SEL_CX;
402 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
403 clksel);
404
405 irq_base = asic->irq_base;
406
407 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
408 if (irq < asic->irq_base + ASIC3_NUM_GPIOS)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000409 irq_set_chip(irq, &asic3_gpio_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800410 else
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000411 irq_set_chip(irq, &asic3_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800412
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000413 irq_set_chip_data(irq, asic);
414 irq_set_handler(irq, handle_level_irq);
Rob Herring9bd09f32015-07-27 15:55:20 -0500415 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800416 }
417
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200418 asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK),
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800419 ASIC3_INTMASK_GINTMASK);
420
Thomas Gleixnerc30e3042015-06-21 20:16:06 +0200421 irq_set_chained_handler_and_data(asic->irq_nr, asic3_irq_demux, asic);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000422 irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800423
424 return 0;
425}
426
427static void asic3_irq_remove(struct platform_device *pdev)
428{
429 struct asic3 *asic = platform_get_drvdata(pdev);
430 unsigned int irq, irq_base;
431
432 irq_base = asic->irq_base;
433
434 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
Rob Herring9bd09f32015-07-27 15:55:20 -0500435 irq_set_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
Thomas Gleixnerd6f7ce9f2011-03-25 11:12:35 +0000436 irq_set_chip_and_handler(irq, NULL, NULL);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000437 irq_set_chip_data(irq, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800438 }
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000439 irq_set_chained_handler(asic->irq_nr, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800440}
441
442/* GPIOs */
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200443static int asic3_gpio_direction(struct gpio_chip *chip,
444 unsigned offset, int out)
445{
446 u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg;
447 unsigned int gpio_base;
448 unsigned long flags;
449 struct asic3 *asic;
450
Linus Walleij082cc4682016-03-30 10:48:01 +0200451 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200452 gpio_base = ASIC3_GPIO_TO_BASE(offset);
453
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200454 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200455 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
456 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200457 return -EINVAL;
458 }
459
Julia Cartwright93ad4472017-03-21 17:43:04 -0500460 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200461
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200462 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200463
464 /* Input is 0, Output is 1 */
465 if (out)
466 out_reg |= mask;
467 else
468 out_reg &= ~mask;
469
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200470 asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200471
Julia Cartwright93ad4472017-03-21 17:43:04 -0500472 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200473
474 return 0;
475
476}
477
478static int asic3_gpio_direction_input(struct gpio_chip *chip,
479 unsigned offset)
480{
481 return asic3_gpio_direction(chip, offset, 0);
482}
483
484static int asic3_gpio_direction_output(struct gpio_chip *chip,
485 unsigned offset, int value)
486{
487 return asic3_gpio_direction(chip, offset, 1);
488}
489
490static int asic3_gpio_get(struct gpio_chip *chip,
491 unsigned offset)
492{
493 unsigned int gpio_base;
494 u32 mask = ASIC3_GPIO_TO_MASK(offset);
495 struct asic3 *asic;
496
Linus Walleij082cc4682016-03-30 10:48:01 +0200497 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200498 gpio_base = ASIC3_GPIO_TO_BASE(offset);
499
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200500 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200501 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
502 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200503 return -EINVAL;
504 }
505
Linus Walleijf8e3a512015-12-22 15:47:05 +0100506 return !!(asic3_read_register(asic,
507 gpio_base + ASIC3_GPIO_STATUS) & mask);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200508}
509
510static void asic3_gpio_set(struct gpio_chip *chip,
511 unsigned offset, int value)
512{
513 u32 mask, out_reg;
514 unsigned int gpio_base;
515 unsigned long flags;
516 struct asic3 *asic;
517
Linus Walleij082cc4682016-03-30 10:48:01 +0200518 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200519 gpio_base = ASIC3_GPIO_TO_BASE(offset);
520
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200521 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200522 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
523 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200524 return;
525 }
526
527 mask = ASIC3_GPIO_TO_MASK(offset);
528
Julia Cartwright93ad4472017-03-21 17:43:04 -0500529 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200530
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200531 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200532
533 if (value)
534 out_reg |= mask;
535 else
536 out_reg &= ~mask;
537
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200538 asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200539
Julia Cartwright93ad4472017-03-21 17:43:04 -0500540 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200541}
542
Paul Parsons450b1152012-01-31 01:18:35 +0000543static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
544{
Linus Walleij082cc4682016-03-30 10:48:01 +0200545 struct asic3 *asic = gpiochip_get_data(chip);
Dmitry Artamonow02269ab2012-04-12 15:33:34 +0400546
Samuel Ortiz12693f62012-04-16 21:28:29 +0200547 return asic->irq_base + offset;
Paul Parsons450b1152012-01-31 01:18:35 +0000548}
549
Philipp Zabel065032f2008-06-21 00:51:38 +0200550static __init int asic3_gpio_probe(struct platform_device *pdev,
551 u16 *gpio_config, int num)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800552{
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800553 struct asic3 *asic = platform_get_drvdata(pdev);
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200554 u16 alt_reg[ASIC3_NUM_GPIO_BANKS];
555 u16 out_reg[ASIC3_NUM_GPIO_BANKS];
556 u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
557 int i;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800558
Russell King59f0cb02008-10-27 11:24:09 +0000559 memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
560 memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
561 memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200562
563 /* Enable all GPIOs */
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200564 asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);
565 asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, MASK), 0xffff);
566 asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, MASK), 0xffff);
567 asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, MASK), 0xffff);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800568
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200569 for (i = 0; i < num; i++) {
570 u8 alt, pin, dir, init, bank_num, bit_num;
571 u16 config = gpio_config[i];
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800572
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200573 pin = ASIC3_CONFIG_GPIO_PIN(config);
574 alt = ASIC3_CONFIG_GPIO_ALT(config);
575 dir = ASIC3_CONFIG_GPIO_DIR(config);
576 init = ASIC3_CONFIG_GPIO_INIT(config);
577
578 bank_num = ASIC3_GPIO_TO_BANK(pin);
579 bit_num = ASIC3_GPIO_TO_BIT(pin);
580
581 alt_reg[bank_num] |= (alt << bit_num);
582 out_reg[bank_num] |= (init << bit_num);
583 dir_reg[bank_num] |= (dir << bit_num);
584 }
585
586 for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) {
587 asic3_write_register(asic,
588 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200589 ASIC3_GPIO_DIRECTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200590 dir_reg[i]);
591 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200592 ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200593 out_reg[i]);
594 asic3_write_register(asic,
595 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200596 ASIC3_GPIO_ALT_FUNCTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200597 alt_reg[i]);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800598 }
599
Linus Walleij082cc4682016-03-30 10:48:01 +0200600 return gpiochip_add_data(&asic->gpio, asic);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800601}
602
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200603static int asic3_gpio_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800604{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200605 struct asic3 *asic = platform_get_drvdata(pdev);
606
abdoulaye berthe88d5e522014-07-12 22:30:14 +0200607 gpiochip_remove(&asic->gpio);
608 return 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800609}
610
Paul Parsonsc29a8122011-08-09 16:27:43 +0000611static void asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk)
Philipp Zabele956a2a2009-06-05 18:31:02 +0200612{
613 unsigned long flags;
614 u32 cdex;
615
Julia Cartwright93ad4472017-03-21 17:43:04 -0500616 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200617 if (clk->enabled++ == 0) {
618 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
619 cdex |= clk->cdex;
620 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
621 }
Julia Cartwright93ad4472017-03-21 17:43:04 -0500622 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200623}
624
625static void asic3_clk_disable(struct asic3 *asic, struct asic3_clk *clk)
626{
627 unsigned long flags;
628 u32 cdex;
629
630 WARN_ON(clk->enabled == 0);
631
Julia Cartwright93ad4472017-03-21 17:43:04 -0500632 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200633 if (--clk->enabled == 0) {
634 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
635 cdex &= ~clk->cdex;
636 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
637 }
Julia Cartwright93ad4472017-03-21 17:43:04 -0500638 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200639}
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800640
Philipp Zabel9461f652009-06-15 12:10:24 +0200641/* MFD cells (SPI, PWM, LED, DS1WM, MMC) */
642static struct ds1wm_driver_data ds1wm_pdata = {
643 .active_high = 1,
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700644 .reset_recover_delay = 1,
Philipp Zabel9461f652009-06-15 12:10:24 +0200645};
646
647static struct resource ds1wm_resources[] = {
648 {
649 .start = ASIC3_OWM_BASE,
650 .end = ASIC3_OWM_BASE + 0x13,
651 .flags = IORESOURCE_MEM,
652 },
653 {
654 .start = ASIC3_IRQ_OWM,
Mark Brownfe421422010-12-11 13:00:34 +0000655 .end = ASIC3_IRQ_OWM,
Philipp Zabel9461f652009-06-15 12:10:24 +0200656 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
657 },
658};
659
660static int ds1wm_enable(struct platform_device *pdev)
661{
662 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
663
664 /* Turn on external clocks and the OWM clock */
665 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
666 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
667 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000668 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200669
670 /* Reset and enable DS1WM */
671 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
672 ASIC3_EXTCF_OWM_RESET, 1);
Lee Jonesd43c4292015-10-28 14:11:23 +0000673 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200674 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
675 ASIC3_EXTCF_OWM_RESET, 0);
Lee Jonesd43c4292015-10-28 14:11:23 +0000676 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200677 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
678 ASIC3_EXTCF_OWM_EN, 1);
Lee Jonesd43c4292015-10-28 14:11:23 +0000679 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200680
681 return 0;
682}
683
684static int ds1wm_disable(struct platform_device *pdev)
685{
686 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
687
688 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
689 ASIC3_EXTCF_OWM_EN, 0);
690
691 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
692 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
693 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
694
695 return 0;
696}
697
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100698static const struct mfd_cell asic3_cell_ds1wm = {
Philipp Zabel9461f652009-06-15 12:10:24 +0200699 .name = "ds1wm",
700 .enable = ds1wm_enable,
701 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200702 .platform_data = &ds1wm_pdata,
703 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel9461f652009-06-15 12:10:24 +0200704 .num_resources = ARRAY_SIZE(ds1wm_resources),
705 .resources = ds1wm_resources,
706};
707
Ian Molton64e88672010-01-06 13:51:48 +0100708static void asic3_mmc_pwr(struct platform_device *pdev, int state)
709{
710 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
711
712 tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state);
713}
714
715static void asic3_mmc_clk_div(struct platform_device *pdev, int state)
716{
717 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
718
719 tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state);
720}
721
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200722static struct tmio_mmc_data asic3_mmc_data = {
Ian Molton64e88672010-01-06 13:51:48 +0100723 .hclk = 24576000,
Robert Jarzmik4eb1d7f2018-05-26 11:31:50 +0200724 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
Ian Molton64e88672010-01-06 13:51:48 +0100725 .set_pwr = asic3_mmc_pwr,
726 .set_clk_div = asic3_mmc_clk_div,
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200727};
728
729static struct resource asic3_mmc_resources[] = {
730 {
731 .start = ASIC3_SD_CTRL_BASE,
732 .end = ASIC3_SD_CTRL_BASE + 0x3ff,
733 .flags = IORESOURCE_MEM,
734 },
735 {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200736 .start = 0,
737 .end = 0,
738 .flags = IORESOURCE_IRQ,
739 },
740};
741
742static int asic3_mmc_enable(struct platform_device *pdev)
743{
744 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
745
746 /* Not sure if it must be done bit by bit, but leaving as-is */
747 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
748 ASIC3_SDHWCTRL_LEVCD, 1);
749 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
750 ASIC3_SDHWCTRL_LEVWP, 1);
751 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
752 ASIC3_SDHWCTRL_SUSPEND, 0);
753 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
754 ASIC3_SDHWCTRL_PCLR, 0);
755
756 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
757 /* CLK32 used for card detection and for interruption detection
758 * when HCLK is stopped.
759 */
760 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000761 usleep_range(1000, 5000);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200762
763 /* HCLK 24.576 MHz, BCLK 12.288 MHz: */
764 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
765 CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL);
766
767 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
768 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000769 usleep_range(1000, 5000);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200770
771 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
772 ASIC3_EXTCF_SD_MEM_ENABLE, 1);
773
774 /* Enable SD card slot 3.3V power supply */
775 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
776 ASIC3_SDHWCTRL_SDPWR, 1);
777
Ian Molton64e88672010-01-06 13:51:48 +0100778 /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */
779 tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift,
780 ASIC3_SD_CTRL_BASE >> 1);
781
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200782 return 0;
783}
784
785static int asic3_mmc_disable(struct platform_device *pdev)
786{
787 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
788
789 /* Put in suspend mode */
790 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
791 ASIC3_SDHWCTRL_SUSPEND, 1);
792
793 /* Disable clocks */
794 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
795 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
796 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
797 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
798 return 0;
799}
800
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100801static const struct mfd_cell asic3_cell_mmc = {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200802 .name = "tmio-mmc",
803 .enable = asic3_mmc_enable,
804 .disable = asic3_mmc_disable,
Paul Parsons3c6e3652011-08-09 16:27:24 +0000805 .suspend = asic3_mmc_disable,
806 .resume = asic3_mmc_enable,
Samuel Ortizec719742011-04-06 11:38:14 +0200807 .platform_data = &asic3_mmc_data,
808 .pdata_size = sizeof(asic3_mmc_data),
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200809 .num_resources = ARRAY_SIZE(asic3_mmc_resources),
810 .resources = asic3_mmc_resources,
811};
812
Paul Parsons13ca4f62011-05-13 18:53:03 +0000813static const int clock_ledn[ASIC3_NUM_LEDS] = {
814 [0] = ASIC3_CLOCK_LED0,
815 [1] = ASIC3_CLOCK_LED1,
816 [2] = ASIC3_CLOCK_LED2,
817};
818
819static int asic3_leds_enable(struct platform_device *pdev)
820{
821 const struct mfd_cell *cell = mfd_get_cell(pdev);
822 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
823
824 asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]);
825
826 return 0;
827}
828
829static int asic3_leds_disable(struct platform_device *pdev)
830{
831 const struct mfd_cell *cell = mfd_get_cell(pdev);
832 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
833
834 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
835
836 return 0;
837}
838
Paul Parsonse0b13b52011-08-09 16:27:33 +0000839static int asic3_leds_suspend(struct platform_device *pdev)
840{
841 const struct mfd_cell *cell = mfd_get_cell(pdev);
842 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
843
844 while (asic3_gpio_get(&asic->gpio, ASIC3_GPIO(C, cell->id)) != 0)
Lee Jonesd43c4292015-10-28 14:11:23 +0000845 usleep_range(1000, 5000);
Paul Parsonse0b13b52011-08-09 16:27:33 +0000846
847 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
848
849 return 0;
850}
851
Paul Parsons13ca4f62011-05-13 18:53:03 +0000852static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = {
853 [0] = {
854 .name = "leds-asic3",
855 .id = 0,
856 .enable = asic3_leds_enable,
857 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000858 .suspend = asic3_leds_suspend,
859 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000860 },
861 [1] = {
862 .name = "leds-asic3",
863 .id = 1,
864 .enable = asic3_leds_enable,
865 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000866 .suspend = asic3_leds_suspend,
867 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000868 },
869 [2] = {
870 .name = "leds-asic3",
871 .id = 2,
872 .enable = asic3_leds_enable,
873 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000874 .suspend = asic3_leds_suspend,
875 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000876 },
877};
878
Philipp Zabel9461f652009-06-15 12:10:24 +0200879static int __init asic3_mfd_probe(struct platform_device *pdev,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000880 struct asic3_platform_data *pdata,
Philipp Zabel9461f652009-06-15 12:10:24 +0200881 struct resource *mem)
882{
883 struct asic3 *asic = platform_get_drvdata(pdev);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200884 struct resource *mem_sdio;
885 int irq, ret;
886
887 mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1);
888 if (!mem_sdio)
889 dev_dbg(asic->dev, "no SDIO MEM resource\n");
890
891 irq = platform_get_irq(pdev, 1);
892 if (irq < 0)
893 dev_dbg(asic->dev, "no SDIO IRQ resource\n");
Philipp Zabel9461f652009-06-15 12:10:24 +0200894
895 /* DS1WM */
896 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
897 ASIC3_EXTCF_OWM_SMB, 0);
898
899 ds1wm_resources[0].start >>= asic->bus_shift;
900 ds1wm_resources[0].end >>= asic->bus_shift;
901
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200902 /* MMC */
Sachin Kamat44b61a92014-06-10 15:30:34 +0530903 if (mem_sdio) {
Lee Jonesd43c4292015-10-28 14:11:23 +0000904 asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >>
905 asic->bus_shift) + mem_sdio->start,
Paul Parsons74e32d12011-05-15 14:13:11 +0000906 ASIC3_SD_CONFIG_SIZE >> asic->bus_shift);
Sachin Kamat44b61a92014-06-10 15:30:34 +0530907 if (!asic->tmio_cnf) {
908 ret = -ENOMEM;
909 dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n");
910 goto out;
911 }
Ian Molton64e88672010-01-06 13:51:48 +0100912 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200913 asic3_mmc_resources[0].start >>= asic->bus_shift;
914 asic3_mmc_resources[0].end >>= asic->bus_shift;
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200915
Paul Parsons4f304242012-04-09 13:18:31 +0100916 if (pdata->clock_rate) {
917 ds1wm_pdata.clock_rate = pdata->clock_rate;
918 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800919 &asic3_cell_ds1wm, 1, mem, asic->irq_base, NULL);
Paul Parsons4f304242012-04-09 13:18:31 +0100920 if (ret < 0)
921 goto out;
922 }
Philipp Zabel9461f652009-06-15 12:10:24 +0200923
Paul Parsons13ca4f62011-05-13 18:53:03 +0000924 if (mem_sdio && (irq >= 0)) {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200925 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800926 &asic3_cell_mmc, 1, mem_sdio, irq, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000927 if (ret < 0)
928 goto out;
929 }
930
Arnd Bergmannb2f0fa82012-08-04 06:20:49 +0000931 ret = 0;
Paul Parsons13ca4f62011-05-13 18:53:03 +0000932 if (pdata->leds) {
933 int i;
934
935 for (i = 0; i < ASIC3_NUM_LEDS; ++i) {
936 asic3_cell_leds[i].platform_data = &pdata->leds[i];
937 asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]);
938 }
939 ret = mfd_add_devices(&pdev->dev, 0,
Mark Brown0848c942012-09-11 15:16:36 +0800940 asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000941 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200942
943 out:
Philipp Zabel9461f652009-06-15 12:10:24 +0200944 return ret;
945}
946
947static void asic3_mfd_remove(struct platform_device *pdev)
948{
Ian Molton64e88672010-01-06 13:51:48 +0100949 struct asic3 *asic = platform_get_drvdata(pdev);
950
Philipp Zabel9461f652009-06-15 12:10:24 +0200951 mfd_remove_devices(&pdev->dev);
Ian Molton64e88672010-01-06 13:51:48 +0100952 iounmap(asic->tmio_cnf);
Philipp Zabel9461f652009-06-15 12:10:24 +0200953}
954
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800955/* Core */
Philipp Zabel065032f2008-06-21 00:51:38 +0200956static int __init asic3_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800957{
Jingoo Han334a41ce2013-07-30 17:10:05 +0900958 struct asic3_platform_data *pdata = dev_get_platdata(&pdev->dev);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800959 struct asic3 *asic;
960 struct resource *mem;
961 unsigned long clksel;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200962 int ret = 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800963
Lee Jones1cee87f2013-05-23 16:25:09 +0100964 asic = devm_kzalloc(&pdev->dev,
965 sizeof(struct asic3), GFP_KERNEL);
Lee Jonesd43c4292015-10-28 14:11:23 +0000966 if (!asic)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800967 return -ENOMEM;
968
Julia Cartwright93ad4472017-03-21 17:43:04 -0500969 raw_spin_lock_init(&asic->lock);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800970 platform_set_drvdata(pdev, asic);
971 asic->dev = &pdev->dev;
972
973 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
974 if (!mem) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200975 dev_err(asic->dev, "no MEM resource\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100976 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800977 }
978
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200979 asic->mapping = ioremap(mem->start, resource_size(mem));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800980 if (!asic->mapping) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200981 dev_err(asic->dev, "Couldn't ioremap\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100982 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800983 }
984
985 asic->irq_base = pdata->irq_base;
986
Philipp Zabel99cdb0c2008-07-10 02:17:02 +0200987 /* calculate bus shift from mem resource */
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200988 asic->bus_shift = 2 - (resource_size(mem) >> 12);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800989
990 clksel = 0;
991 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel);
992
993 ret = asic3_irq_probe(pdev);
994 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200995 dev_err(asic->dev, "Couldn't probe IRQs\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200996 goto out_unmap;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800997 }
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200998
Paul Parsonsd8e4a882011-08-09 16:27:50 +0000999 asic->gpio.label = "asic3";
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001000 asic->gpio.base = pdata->gpio_base;
1001 asic->gpio.ngpio = ASIC3_NUM_GPIOS;
1002 asic->gpio.get = asic3_gpio_get;
1003 asic->gpio.set = asic3_gpio_set;
1004 asic->gpio.direction_input = asic3_gpio_direction_input;
1005 asic->gpio.direction_output = asic3_gpio_direction_output;
Paul Parsons450b1152012-01-31 01:18:35 +00001006 asic->gpio.to_irq = asic3_gpio_to_irq;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001007
Samuel Ortiz3b26bf12008-06-20 11:09:51 +02001008 ret = asic3_gpio_probe(pdev,
1009 pdata->gpio_config,
1010 pdata->gpio_config_num);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001011 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001012 dev_err(asic->dev, "GPIO probe failed\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001013 goto out_irq;
1014 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001015
Philipp Zabele956a2a2009-06-05 18:31:02 +02001016 /* Making a per-device copy is only needed for the
1017 * theoretical case of multiple ASIC3s on one board:
1018 */
1019 memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init));
1020
Paul Parsons13ca4f62011-05-13 18:53:03 +00001021 asic3_mfd_probe(pdev, pdata, mem);
Philipp Zabel9461f652009-06-15 12:10:24 +02001022
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001023 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1024 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 1);
1025
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001026 dev_info(asic->dev, "ASIC3 Core driver\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001027
1028 return 0;
1029
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001030 out_irq:
1031 asic3_irq_remove(pdev);
1032
1033 out_unmap:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001034 iounmap(asic->mapping);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001035
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001036 return ret;
1037}
1038
Bill Pemberton4740f732012-11-19 13:26:01 -05001039static int asic3_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001040{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001041 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001042 struct asic3 *asic = platform_get_drvdata(pdev);
1043
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001044 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1045 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 0);
1046
Philipp Zabel9461f652009-06-15 12:10:24 +02001047 asic3_mfd_remove(pdev);
1048
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001049 ret = asic3_gpio_remove(pdev);
1050 if (ret < 0)
1051 return ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001052 asic3_irq_remove(pdev);
1053
1054 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0);
1055
1056 iounmap(asic->mapping);
1057
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001058 return 0;
1059}
1060
1061static void asic3_shutdown(struct platform_device *pdev)
1062{
1063}
1064
1065static struct platform_driver asic3_device_driver = {
1066 .driver = {
1067 .name = "asic3",
1068 },
Bill Pemberton84449212012-11-19 13:20:24 -05001069 .remove = asic3_remove,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001070 .shutdown = asic3_shutdown,
1071};
1072
1073static int __init asic3_init(void)
1074{
1075 int retval = 0;
Lee Jonesd43c4292015-10-28 14:11:23 +00001076
Philipp Zabel065032f2008-06-21 00:51:38 +02001077 retval = platform_driver_probe(&asic3_device_driver, asic3_probe);
Lee Jonesd43c4292015-10-28 14:11:23 +00001078
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001079 return retval;
1080}
1081
1082subsys_initcall(asic3_init);