blob: 8d58c8df46cfb83f6607faef636884725654e6a9 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08002/*
3 * driver/mfd/asic3.c
4 *
5 * Compaq ASIC3 support.
6 *
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08007 * Copyright 2001 Compaq Computer Corporation.
8 * Copyright 2004-2005 Phil Blundell
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02009 * Copyright 2007-2008 OpenedHand Ltd.
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080010 *
11 * Authors: Phil Blundell <pb@handhelds.org>,
12 * Samuel Ortiz <sameo@openedhand.com>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080013 */
14
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080015#include <linux/kernel.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020016#include <linux/delay.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080017#include <linux/irq.h>
Linus Walleij5cd690a2019-08-14 09:24:03 +020018#include <linux/gpio/driver.h>
Paul Gortmaker5d4a3572011-07-10 12:41:10 -040019#include <linux/export.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080020#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080022#include <linux/spinlock.h>
23#include <linux/platform_device.h>
24
25#include <linux/mfd/asic3.h>
Philipp Zabel9461f652009-06-15 12:10:24 +020026#include <linux/mfd/core.h>
27#include <linux/mfd/ds1wm.h>
Philipp Zabel09f05ce2009-06-15 12:10:25 +020028#include <linux/mfd/tmio.h>
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080029
Robert Jarzmik4eb1d7f2018-05-26 11:31:50 +020030#include <linux/mmc/host.h>
31
Philipp Zabele956a2a2009-06-05 18:31:02 +020032enum {
33 ASIC3_CLOCK_SPI,
34 ASIC3_CLOCK_OWM,
35 ASIC3_CLOCK_PWM0,
36 ASIC3_CLOCK_PWM1,
37 ASIC3_CLOCK_LED0,
38 ASIC3_CLOCK_LED1,
39 ASIC3_CLOCK_LED2,
40 ASIC3_CLOCK_SD_HOST,
41 ASIC3_CLOCK_SD_BUS,
42 ASIC3_CLOCK_SMBUS,
43 ASIC3_CLOCK_EX0,
44 ASIC3_CLOCK_EX1,
45};
46
47struct asic3_clk {
48 int enabled;
49 unsigned int cdex;
50 unsigned long rate;
51};
52
53#define INIT_CDEX(_name, _rate) \
54 [ASIC3_CLOCK_##_name] = { \
55 .cdex = CLOCK_CDEX_##_name, \
56 .rate = _rate, \
57 }
58
Mark Brown59f2ad22010-12-11 12:59:35 +000059static struct asic3_clk asic3_clk_init[] __initdata = {
Philipp Zabele956a2a2009-06-05 18:31:02 +020060 INIT_CDEX(SPI, 0),
61 INIT_CDEX(OWM, 5000000),
62 INIT_CDEX(PWM0, 0),
63 INIT_CDEX(PWM1, 0),
64 INIT_CDEX(LED0, 0),
65 INIT_CDEX(LED1, 0),
66 INIT_CDEX(LED2, 0),
67 INIT_CDEX(SD_HOST, 24576000),
68 INIT_CDEX(SD_BUS, 12288000),
69 INIT_CDEX(SMBUS, 0),
70 INIT_CDEX(EX0, 32768),
71 INIT_CDEX(EX1, 24576000),
72};
73
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020074struct asic3 {
75 void __iomem *mapping;
76 unsigned int bus_shift;
77 unsigned int irq_nr;
78 unsigned int irq_base;
Julia Cartwright93ad4472017-03-21 17:43:04 -050079 raw_spinlock_t lock;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020080 u16 irq_bothedge[4];
81 struct gpio_chip gpio;
82 struct device *dev;
Ian Molton64e88672010-01-06 13:51:48 +010083 void __iomem *tmio_cnf;
Philipp Zabele956a2a2009-06-05 18:31:02 +020084
85 struct asic3_clk clocks[ARRAY_SIZE(asic3_clk_init)];
Samuel Ortiz6f2384c2008-06-20 11:02:19 +020086};
87
88static int asic3_gpio_get(struct gpio_chip *chip, unsigned offset);
89
Paul Parsons13ca4f62011-05-13 18:53:03 +000090void asic3_write_register(struct asic3 *asic, unsigned int reg, u32 value)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080091{
Al Virob32661e2008-03-29 03:10:58 +000092 iowrite16(value, asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080093 (reg >> asic->bus_shift));
94}
Paul Parsons13ca4f62011-05-13 18:53:03 +000095EXPORT_SYMBOL_GPL(asic3_write_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080096
Paul Parsons13ca4f62011-05-13 18:53:03 +000097u32 asic3_read_register(struct asic3 *asic, unsigned int reg)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080098{
Al Virob32661e2008-03-29 03:10:58 +000099 return ioread16(asic->mapping +
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800100 (reg >> asic->bus_shift));
101}
Paul Parsons13ca4f62011-05-13 18:53:03 +0000102EXPORT_SYMBOL_GPL(asic3_read_register);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800103
Mark Brown59f2ad22010-12-11 12:59:35 +0000104static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200105{
106 unsigned long flags;
107 u32 val;
108
Julia Cartwright93ad4472017-03-21 17:43:04 -0500109 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200110 val = asic3_read_register(asic, reg);
111 if (set)
112 val |= bits;
113 else
114 val &= ~bits;
115 asic3_write_register(asic, reg, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500116 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabel6483c1b2009-06-05 18:31:01 +0200117}
118
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800119/* IRQs */
120#define MAX_ASIC_ISR_LOOPS 20
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200121#define ASIC3_GPIO_BASE_INCR \
122 (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800123
124static void asic3_irq_flip_edge(struct asic3 *asic,
125 u32 base, int bit)
126{
127 u16 edge;
128 unsigned long flags;
129
Julia Cartwright93ad4472017-03-21 17:43:04 -0500130 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800131 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200132 base + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800133 edge ^= bit;
134 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200135 base + ASIC3_GPIO_EDGE_TRIGGER, edge);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500136 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800137}
138
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200139static void asic3_irq_demux(struct irq_desc *desc)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800140{
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000141 struct asic3 *asic = irq_desc_get_handler_data(desc);
142 struct irq_data *data = irq_desc_get_irq_data(desc);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800143 int iter, i;
144 unsigned long flags;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800145
Axel Lina09aee82011-04-14 22:43:47 +0800146 data->chip->irq_ack(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800147
148 for (iter = 0 ; iter < MAX_ASIC_ISR_LOOPS; iter++) {
149 u32 status;
150 int bank;
151
Julia Cartwright93ad4472017-03-21 17:43:04 -0500152 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800153 status = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200154 ASIC3_OFFSET(INTR, P_INT_STAT));
Julia Cartwright93ad4472017-03-21 17:43:04 -0500155 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800156
157 /* Check all ten register bits */
158 if ((status & 0x3ff) == 0)
159 break;
160
161 /* Handle GPIO IRQs */
162 for (bank = 0; bank < ASIC3_NUM_GPIO_BANKS; bank++) {
163 if (status & (1 << bank)) {
164 unsigned long base, istat;
165
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200166 base = ASIC3_GPIO_A_BASE
167 + bank * ASIC3_GPIO_BASE_INCR;
Julia Cartwright93ad4472017-03-21 17:43:04 -0500168 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800169 istat = asic3_read_register(asic,
170 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200171 ASIC3_GPIO_INT_STATUS);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800172 /* Clearing IntStatus */
173 asic3_write_register(asic,
174 base +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200175 ASIC3_GPIO_INT_STATUS, 0);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500176 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800177
178 for (i = 0; i < ASIC3_GPIOS_PER_BANK; i++) {
179 int bit = (1 << i);
180 unsigned int irqnr;
181
182 if (!(istat & bit))
183 continue;
184
185 irqnr = asic->irq_base +
186 (ASIC3_GPIOS_PER_BANK * bank)
187 + i;
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000188 generic_handle_irq(irqnr);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800189 if (asic->irq_bothedge[bank] & bit)
190 asic3_irq_flip_edge(asic, base,
191 bit);
192 }
193 }
194 }
195
196 /* Handle remaining IRQs in the status register */
197 for (i = ASIC3_NUM_GPIOS; i < ASIC3_NR_IRQS; i++) {
198 /* They start at bit 4 and go up */
Thomas Gleixner52a7d602011-03-25 11:12:26 +0000199 if (status & (1 << (i - ASIC3_NUM_GPIOS + 4)))
200 generic_handle_irq(asic->irq_base + i);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800201 }
202 }
203
204 if (iter >= MAX_ASIC_ISR_LOOPS)
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200205 dev_err(asic->dev, "interrupt processing overrun\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800206}
207
208static inline int asic3_irq_to_bank(struct asic3 *asic, int irq)
209{
210 int n;
211
212 n = (irq - asic->irq_base) >> 4;
213
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200214 return (n * (ASIC3_GPIO_B_BASE - ASIC3_GPIO_A_BASE));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800215}
216
217static inline int asic3_irq_to_index(struct asic3 *asic, int irq)
218{
219 return (irq - asic->irq_base) & 0xf;
220}
221
Mark Brown0f76aae2010-12-11 13:08:57 +0000222static void asic3_mask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800223{
Mark Brown0f76aae2010-12-11 13:08:57 +0000224 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800225 u32 val, bank, index;
226 unsigned long flags;
227
Mark Brown0f76aae2010-12-11 13:08:57 +0000228 bank = asic3_irq_to_bank(asic, data->irq);
229 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800230
Julia Cartwright93ad4472017-03-21 17:43:04 -0500231 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200232 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800233 val |= 1 << index;
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200234 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500235 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800236}
237
Mark Brown0f76aae2010-12-11 13:08:57 +0000238static void asic3_mask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800239{
Mark Brown0f76aae2010-12-11 13:08:57 +0000240 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800241 int regval;
242 unsigned long flags;
243
Julia Cartwright93ad4472017-03-21 17:43:04 -0500244 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800245 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200246 ASIC3_INTR_BASE +
247 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800248
249 regval &= ~(ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000250 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800251
252 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200253 ASIC3_INTR_BASE +
254 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800255 regval);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500256 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800257}
258
Mark Brown0f76aae2010-12-11 13:08:57 +0000259static void asic3_unmask_gpio_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800260{
Mark Brown0f76aae2010-12-11 13:08:57 +0000261 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800262 u32 val, bank, index;
263 unsigned long flags;
264
Mark Brown0f76aae2010-12-11 13:08:57 +0000265 bank = asic3_irq_to_bank(asic, data->irq);
266 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800267
Julia Cartwright93ad4472017-03-21 17:43:04 -0500268 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200269 val = asic3_read_register(asic, bank + ASIC3_GPIO_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800270 val &= ~(1 << index);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200271 asic3_write_register(asic, bank + ASIC3_GPIO_MASK, val);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500272 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800273}
274
Mark Brown0f76aae2010-12-11 13:08:57 +0000275static void asic3_unmask_irq(struct irq_data *data)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800276{
Mark Brown0f76aae2010-12-11 13:08:57 +0000277 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800278 int regval;
279 unsigned long flags;
280
Julia Cartwright93ad4472017-03-21 17:43:04 -0500281 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800282 regval = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200283 ASIC3_INTR_BASE +
284 ASIC3_INTR_INT_MASK);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800285
286 regval |= (ASIC3_INTMASK_MASK0 <<
Mark Brown0f76aae2010-12-11 13:08:57 +0000287 (data->irq - (asic->irq_base + ASIC3_NUM_GPIOS)));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800288
289 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200290 ASIC3_INTR_BASE +
291 ASIC3_INTR_INT_MASK,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800292 regval);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500293 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800294}
295
Mark Brown0f76aae2010-12-11 13:08:57 +0000296static int asic3_gpio_irq_type(struct irq_data *data, unsigned int type)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800297{
Mark Brown0f76aae2010-12-11 13:08:57 +0000298 struct asic3 *asic = irq_data_get_irq_chip_data(data);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800299 u32 bank, index;
300 u16 trigger, level, edge, bit;
301 unsigned long flags;
302
Mark Brown0f76aae2010-12-11 13:08:57 +0000303 bank = asic3_irq_to_bank(asic, data->irq);
304 index = asic3_irq_to_index(asic, data->irq);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800305 bit = 1<<index;
306
Julia Cartwright93ad4472017-03-21 17:43:04 -0500307 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800308 level = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200309 bank + ASIC3_GPIO_LEVEL_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800310 edge = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200311 bank + ASIC3_GPIO_EDGE_TRIGGER);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800312 trigger = asic3_read_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200313 bank + ASIC3_GPIO_TRIGGER_TYPE);
Mark Brown0f76aae2010-12-11 13:08:57 +0000314 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] &= ~bit;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800315
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100316 if (type == IRQ_TYPE_EDGE_RISING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800317 trigger |= bit;
318 edge |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100319 } else if (type == IRQ_TYPE_EDGE_FALLING) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800320 trigger |= bit;
321 edge &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100322 } else if (type == IRQ_TYPE_EDGE_BOTH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800323 trigger |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000324 if (asic3_gpio_get(&asic->gpio, data->irq - asic->irq_base))
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800325 edge &= ~bit;
326 else
327 edge |= bit;
Mark Brown0f76aae2010-12-11 13:08:57 +0000328 asic->irq_bothedge[(data->irq - asic->irq_base) >> 4] |= bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100329 } else if (type == IRQ_TYPE_LEVEL_LOW) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800330 trigger &= ~bit;
331 level &= ~bit;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100332 } else if (type == IRQ_TYPE_LEVEL_HIGH) {
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800333 trigger &= ~bit;
334 level |= bit;
335 } else {
336 /*
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100337 * if type == IRQ_TYPE_NONE, we should mask interrupts, but
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800338 * be careful to not unmask them if mask was also called.
339 * Probably need internal state for mask.
340 */
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200341 dev_notice(asic->dev, "irq type not changed\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800342 }
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200343 asic3_write_register(asic, bank + ASIC3_GPIO_LEVEL_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800344 level);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200345 asic3_write_register(asic, bank + ASIC3_GPIO_EDGE_TRIGGER,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800346 edge);
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200347 asic3_write_register(asic, bank + ASIC3_GPIO_TRIGGER_TYPE,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800348 trigger);
Julia Cartwright93ad4472017-03-21 17:43:04 -0500349 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800350 return 0;
351}
352
Paul Parsons2fe372f2012-04-11 00:35:34 +0100353static int asic3_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
354{
355 struct asic3 *asic = irq_data_get_irq_chip_data(data);
356 u32 bank, index;
357 u16 bit;
358
359 bank = asic3_irq_to_bank(asic, data->irq);
360 index = asic3_irq_to_index(asic, data->irq);
361 bit = 1<<index;
362
363 asic3_set_register(asic, bank + ASIC3_GPIO_SLEEP_MASK, bit, !on);
364
365 return 0;
366}
367
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800368static struct irq_chip asic3_gpio_irq_chip = {
369 .name = "ASIC3-GPIO",
Mark Brown0f76aae2010-12-11 13:08:57 +0000370 .irq_ack = asic3_mask_gpio_irq,
371 .irq_mask = asic3_mask_gpio_irq,
372 .irq_unmask = asic3_unmask_gpio_irq,
373 .irq_set_type = asic3_gpio_irq_type,
Paul Parsons2fe372f2012-04-11 00:35:34 +0100374 .irq_set_wake = asic3_gpio_irq_set_wake,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800375};
376
377static struct irq_chip asic3_irq_chip = {
378 .name = "ASIC3",
Mark Brown0f76aae2010-12-11 13:08:57 +0000379 .irq_ack = asic3_mask_irq,
380 .irq_mask = asic3_mask_irq,
381 .irq_unmask = asic3_unmask_irq,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800382};
383
Philipp Zabel065032f2008-06-21 00:51:38 +0200384static int __init asic3_irq_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800385{
386 struct asic3 *asic = platform_get_drvdata(pdev);
387 unsigned long clksel = 0;
388 unsigned int irq, irq_base;
Roel Kluinc491b2f2008-07-25 19:44:41 -0700389 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800390
Roel Kluinc491b2f2008-07-25 19:44:41 -0700391 ret = platform_get_irq(pdev, 0);
392 if (ret < 0)
393 return ret;
394 asic->irq_nr = ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800395
396 /* turn on clock to IRQ controller */
397 clksel |= CLOCK_SEL_CX;
398 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
399 clksel);
400
401 irq_base = asic->irq_base;
402
403 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
404 if (irq < asic->irq_base + ASIC3_NUM_GPIOS)
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000405 irq_set_chip(irq, &asic3_gpio_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800406 else
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000407 irq_set_chip(irq, &asic3_irq_chip);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800408
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000409 irq_set_chip_data(irq, asic);
410 irq_set_handler(irq, handle_level_irq);
Rob Herring9bd09f32015-07-27 15:55:20 -0500411 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800412 }
413
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200414 asic3_write_register(asic, ASIC3_OFFSET(INTR, INT_MASK),
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800415 ASIC3_INTMASK_GINTMASK);
416
Thomas Gleixnerc30e3042015-06-21 20:16:06 +0200417 irq_set_chained_handler_and_data(asic->irq_nr, asic3_irq_demux, asic);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000418 irq_set_irq_type(asic->irq_nr, IRQ_TYPE_EDGE_RISING);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800419
420 return 0;
421}
422
423static void asic3_irq_remove(struct platform_device *pdev)
424{
425 struct asic3 *asic = platform_get_drvdata(pdev);
426 unsigned int irq, irq_base;
427
428 irq_base = asic->irq_base;
429
430 for (irq = irq_base; irq < irq_base + ASIC3_NR_IRQS; irq++) {
Rob Herring9bd09f32015-07-27 15:55:20 -0500431 irq_set_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
Thomas Gleixnerd6f7ce9f2011-03-25 11:12:35 +0000432 irq_set_chip_and_handler(irq, NULL, NULL);
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000433 irq_set_chip_data(irq, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800434 }
Thomas Gleixnerd5bb1222011-03-25 11:12:32 +0000435 irq_set_chained_handler(asic->irq_nr, NULL);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800436}
437
438/* GPIOs */
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200439static int asic3_gpio_direction(struct gpio_chip *chip,
440 unsigned offset, int out)
441{
442 u32 mask = ASIC3_GPIO_TO_MASK(offset), out_reg;
443 unsigned int gpio_base;
444 unsigned long flags;
445 struct asic3 *asic;
446
Linus Walleij082cc4682016-03-30 10:48:01 +0200447 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200448 gpio_base = ASIC3_GPIO_TO_BASE(offset);
449
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200450 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200451 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
452 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200453 return -EINVAL;
454 }
455
Julia Cartwright93ad4472017-03-21 17:43:04 -0500456 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200457
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200458 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_DIRECTION);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200459
460 /* Input is 0, Output is 1 */
461 if (out)
462 out_reg |= mask;
463 else
464 out_reg &= ~mask;
465
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200466 asic3_write_register(asic, gpio_base + ASIC3_GPIO_DIRECTION, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200467
Julia Cartwright93ad4472017-03-21 17:43:04 -0500468 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200469
470 return 0;
471
472}
473
474static int asic3_gpio_direction_input(struct gpio_chip *chip,
475 unsigned offset)
476{
477 return asic3_gpio_direction(chip, offset, 0);
478}
479
480static int asic3_gpio_direction_output(struct gpio_chip *chip,
481 unsigned offset, int value)
482{
483 return asic3_gpio_direction(chip, offset, 1);
484}
485
486static int asic3_gpio_get(struct gpio_chip *chip,
487 unsigned offset)
488{
489 unsigned int gpio_base;
490 u32 mask = ASIC3_GPIO_TO_MASK(offset);
491 struct asic3 *asic;
492
Linus Walleij082cc4682016-03-30 10:48:01 +0200493 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200494 gpio_base = ASIC3_GPIO_TO_BASE(offset);
495
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200496 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200497 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
498 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200499 return -EINVAL;
500 }
501
Linus Walleijf8e3a512015-12-22 15:47:05 +0100502 return !!(asic3_read_register(asic,
503 gpio_base + ASIC3_GPIO_STATUS) & mask);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200504}
505
506static void asic3_gpio_set(struct gpio_chip *chip,
507 unsigned offset, int value)
508{
509 u32 mask, out_reg;
510 unsigned int gpio_base;
511 unsigned long flags;
512 struct asic3 *asic;
513
Linus Walleij082cc4682016-03-30 10:48:01 +0200514 asic = gpiochip_get_data(chip);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200515 gpio_base = ASIC3_GPIO_TO_BASE(offset);
516
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200517 if (gpio_base > ASIC3_GPIO_D_BASE) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200518 dev_err(asic->dev, "Invalid base (0x%x) for gpio %d\n",
519 gpio_base, offset);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200520 return;
521 }
522
523 mask = ASIC3_GPIO_TO_MASK(offset);
524
Julia Cartwright93ad4472017-03-21 17:43:04 -0500525 raw_spin_lock_irqsave(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200526
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200527 out_reg = asic3_read_register(asic, gpio_base + ASIC3_GPIO_OUT);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200528
529 if (value)
530 out_reg |= mask;
531 else
532 out_reg &= ~mask;
533
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200534 asic3_write_register(asic, gpio_base + ASIC3_GPIO_OUT, out_reg);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200535
Julia Cartwright93ad4472017-03-21 17:43:04 -0500536 raw_spin_unlock_irqrestore(&asic->lock, flags);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200537}
538
Paul Parsons450b1152012-01-31 01:18:35 +0000539static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
540{
Linus Walleij082cc4682016-03-30 10:48:01 +0200541 struct asic3 *asic = gpiochip_get_data(chip);
Dmitry Artamonow02269ab2012-04-12 15:33:34 +0400542
Samuel Ortiz12693f62012-04-16 21:28:29 +0200543 return asic->irq_base + offset;
Paul Parsons450b1152012-01-31 01:18:35 +0000544}
545
Philipp Zabel065032f2008-06-21 00:51:38 +0200546static __init int asic3_gpio_probe(struct platform_device *pdev,
547 u16 *gpio_config, int num)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800548{
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800549 struct asic3 *asic = platform_get_drvdata(pdev);
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200550 u16 alt_reg[ASIC3_NUM_GPIO_BANKS];
551 u16 out_reg[ASIC3_NUM_GPIO_BANKS];
552 u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
553 int i;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800554
Russell King59f0cb02008-10-27 11:24:09 +0000555 memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
556 memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
557 memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200558
559 /* Enable all GPIOs */
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200560 asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);
561 asic3_write_register(asic, ASIC3_GPIO_OFFSET(B, MASK), 0xffff);
562 asic3_write_register(asic, ASIC3_GPIO_OFFSET(C, MASK), 0xffff);
563 asic3_write_register(asic, ASIC3_GPIO_OFFSET(D, MASK), 0xffff);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800564
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200565 for (i = 0; i < num; i++) {
566 u8 alt, pin, dir, init, bank_num, bit_num;
567 u16 config = gpio_config[i];
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800568
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200569 pin = ASIC3_CONFIG_GPIO_PIN(config);
570 alt = ASIC3_CONFIG_GPIO_ALT(config);
571 dir = ASIC3_CONFIG_GPIO_DIR(config);
572 init = ASIC3_CONFIG_GPIO_INIT(config);
573
574 bank_num = ASIC3_GPIO_TO_BANK(pin);
575 bit_num = ASIC3_GPIO_TO_BIT(pin);
576
577 alt_reg[bank_num] |= (alt << bit_num);
578 out_reg[bank_num] |= (init << bit_num);
579 dir_reg[bank_num] |= (dir << bit_num);
580 }
581
582 for (i = 0; i < ASIC3_NUM_GPIO_BANKS; i++) {
583 asic3_write_register(asic,
584 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200585 ASIC3_GPIO_DIRECTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200586 dir_reg[i]);
587 asic3_write_register(asic,
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200588 ASIC3_BANK_TO_BASE(i) + ASIC3_GPIO_OUT,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200589 out_reg[i]);
590 asic3_write_register(asic,
591 ASIC3_BANK_TO_BASE(i) +
Samuel Ortiz3b8139f2008-06-20 11:12:21 +0200592 ASIC3_GPIO_ALT_FUNCTION,
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200593 alt_reg[i]);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800594 }
595
Linus Walleij082cc4682016-03-30 10:48:01 +0200596 return gpiochip_add_data(&asic->gpio, asic);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800597}
598
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200599static int asic3_gpio_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800600{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200601 struct asic3 *asic = platform_get_drvdata(pdev);
602
abdoulaye berthe88d5e522014-07-12 22:30:14 +0200603 gpiochip_remove(&asic->gpio);
604 return 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800605}
606
Paul Parsonsc29a8122011-08-09 16:27:43 +0000607static void asic3_clk_enable(struct asic3 *asic, struct asic3_clk *clk)
Philipp Zabele956a2a2009-06-05 18:31:02 +0200608{
609 unsigned long flags;
610 u32 cdex;
611
Julia Cartwright93ad4472017-03-21 17:43:04 -0500612 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200613 if (clk->enabled++ == 0) {
614 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
615 cdex |= clk->cdex;
616 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
617 }
Julia Cartwright93ad4472017-03-21 17:43:04 -0500618 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200619}
620
621static void asic3_clk_disable(struct asic3 *asic, struct asic3_clk *clk)
622{
623 unsigned long flags;
624 u32 cdex;
625
626 WARN_ON(clk->enabled == 0);
627
Julia Cartwright93ad4472017-03-21 17:43:04 -0500628 raw_spin_lock_irqsave(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200629 if (--clk->enabled == 0) {
630 cdex = asic3_read_register(asic, ASIC3_OFFSET(CLOCK, CDEX));
631 cdex &= ~clk->cdex;
632 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, CDEX), cdex);
633 }
Julia Cartwright93ad4472017-03-21 17:43:04 -0500634 raw_spin_unlock_irqrestore(&asic->lock, flags);
Philipp Zabele956a2a2009-06-05 18:31:02 +0200635}
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800636
Philipp Zabel9461f652009-06-15 12:10:24 +0200637/* MFD cells (SPI, PWM, LED, DS1WM, MMC) */
638static struct ds1wm_driver_data ds1wm_pdata = {
639 .active_high = 1,
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700640 .reset_recover_delay = 1,
Philipp Zabel9461f652009-06-15 12:10:24 +0200641};
642
643static struct resource ds1wm_resources[] = {
644 {
645 .start = ASIC3_OWM_BASE,
646 .end = ASIC3_OWM_BASE + 0x13,
647 .flags = IORESOURCE_MEM,
648 },
649 {
650 .start = ASIC3_IRQ_OWM,
Mark Brownfe421422010-12-11 13:00:34 +0000651 .end = ASIC3_IRQ_OWM,
Philipp Zabel9461f652009-06-15 12:10:24 +0200652 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
653 },
654};
655
656static int ds1wm_enable(struct platform_device *pdev)
657{
658 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
659
660 /* Turn on external clocks and the OWM clock */
661 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
662 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
663 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000664 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200665
666 /* Reset and enable DS1WM */
667 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
668 ASIC3_EXTCF_OWM_RESET, 1);
Lee Jonesd43c4292015-10-28 14:11:23 +0000669 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200670 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, RESET),
671 ASIC3_EXTCF_OWM_RESET, 0);
Lee Jonesd43c4292015-10-28 14:11:23 +0000672 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200673 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
674 ASIC3_EXTCF_OWM_EN, 1);
Lee Jonesd43c4292015-10-28 14:11:23 +0000675 usleep_range(1000, 5000);
Philipp Zabel9461f652009-06-15 12:10:24 +0200676
677 return 0;
678}
679
680static int ds1wm_disable(struct platform_device *pdev)
681{
682 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
683
684 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
685 ASIC3_EXTCF_OWM_EN, 0);
686
687 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_OWM]);
688 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
689 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
690
691 return 0;
692}
693
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100694static const struct mfd_cell asic3_cell_ds1wm = {
Philipp Zabel9461f652009-06-15 12:10:24 +0200695 .name = "ds1wm",
696 .enable = ds1wm_enable,
697 .disable = ds1wm_disable,
Samuel Ortiz121ea572011-04-06 11:41:03 +0200698 .platform_data = &ds1wm_pdata,
699 .pdata_size = sizeof(ds1wm_pdata),
Philipp Zabel9461f652009-06-15 12:10:24 +0200700 .num_resources = ARRAY_SIZE(ds1wm_resources),
701 .resources = ds1wm_resources,
702};
703
Ian Molton64e88672010-01-06 13:51:48 +0100704static void asic3_mmc_pwr(struct platform_device *pdev, int state)
705{
706 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
707
708 tmio_core_mmc_pwr(asic->tmio_cnf, 1 - asic->bus_shift, state);
709}
710
711static void asic3_mmc_clk_div(struct platform_device *pdev, int state)
712{
713 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
714
715 tmio_core_mmc_clk_div(asic->tmio_cnf, 1 - asic->bus_shift, state);
716}
717
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200718static struct tmio_mmc_data asic3_mmc_data = {
Ian Molton64e88672010-01-06 13:51:48 +0100719 .hclk = 24576000,
Robert Jarzmik4eb1d7f2018-05-26 11:31:50 +0200720 .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
Ian Molton64e88672010-01-06 13:51:48 +0100721 .set_pwr = asic3_mmc_pwr,
722 .set_clk_div = asic3_mmc_clk_div,
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200723};
724
725static struct resource asic3_mmc_resources[] = {
Zhen Leic5db56f2021-06-01 14:36:48 +0800726 DEFINE_RES_MEM(ASIC3_SD_CTRL_BASE, 0x400),
727 DEFINE_RES_IRQ(0)
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200728};
729
730static int asic3_mmc_enable(struct platform_device *pdev)
731{
732 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
733
734 /* Not sure if it must be done bit by bit, but leaving as-is */
735 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
736 ASIC3_SDHWCTRL_LEVCD, 1);
737 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
738 ASIC3_SDHWCTRL_LEVWP, 1);
739 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
740 ASIC3_SDHWCTRL_SUSPEND, 0);
741 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
742 ASIC3_SDHWCTRL_PCLR, 0);
743
744 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
745 /* CLK32 used for card detection and for interruption detection
746 * when HCLK is stopped.
747 */
748 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000749 usleep_range(1000, 5000);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200750
751 /* HCLK 24.576 MHz, BCLK 12.288 MHz: */
752 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL),
753 CLOCK_SEL_CX | CLOCK_SEL_SD_HCLK_SEL);
754
755 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
756 asic3_clk_enable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
Lee Jonesd43c4292015-10-28 14:11:23 +0000757 usleep_range(1000, 5000);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200758
759 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
760 ASIC3_EXTCF_SD_MEM_ENABLE, 1);
761
762 /* Enable SD card slot 3.3V power supply */
763 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
764 ASIC3_SDHWCTRL_SDPWR, 1);
765
Ian Molton64e88672010-01-06 13:51:48 +0100766 /* ASIC3_SD_CTRL_BASE assumes 32-bit addressing, TMIO is 16-bit */
767 tmio_core_mmc_enable(asic->tmio_cnf, 1 - asic->bus_shift,
768 ASIC3_SD_CTRL_BASE >> 1);
769
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200770 return 0;
771}
772
773static int asic3_mmc_disable(struct platform_device *pdev)
774{
775 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
776
777 /* Put in suspend mode */
778 asic3_set_register(asic, ASIC3_OFFSET(SDHWCTRL, SDCONF),
779 ASIC3_SDHWCTRL_SUSPEND, 1);
780
781 /* Disable clocks */
782 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_HOST]);
783 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_SD_BUS]);
784 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX0]);
785 asic3_clk_disable(asic, &asic->clocks[ASIC3_CLOCK_EX1]);
786 return 0;
787}
788
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +0100789static const struct mfd_cell asic3_cell_mmc = {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200790 .name = "tmio-mmc",
791 .enable = asic3_mmc_enable,
792 .disable = asic3_mmc_disable,
Paul Parsons3c6e3652011-08-09 16:27:24 +0000793 .suspend = asic3_mmc_disable,
794 .resume = asic3_mmc_enable,
Samuel Ortizec719742011-04-06 11:38:14 +0200795 .platform_data = &asic3_mmc_data,
796 .pdata_size = sizeof(asic3_mmc_data),
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200797 .num_resources = ARRAY_SIZE(asic3_mmc_resources),
798 .resources = asic3_mmc_resources,
799};
800
Paul Parsons13ca4f62011-05-13 18:53:03 +0000801static const int clock_ledn[ASIC3_NUM_LEDS] = {
802 [0] = ASIC3_CLOCK_LED0,
803 [1] = ASIC3_CLOCK_LED1,
804 [2] = ASIC3_CLOCK_LED2,
805};
806
807static int asic3_leds_enable(struct platform_device *pdev)
808{
809 const struct mfd_cell *cell = mfd_get_cell(pdev);
810 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
811
812 asic3_clk_enable(asic, &asic->clocks[clock_ledn[cell->id]]);
813
814 return 0;
815}
816
817static int asic3_leds_disable(struct platform_device *pdev)
818{
819 const struct mfd_cell *cell = mfd_get_cell(pdev);
820 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
821
822 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
823
824 return 0;
825}
826
Paul Parsonse0b13b52011-08-09 16:27:33 +0000827static int asic3_leds_suspend(struct platform_device *pdev)
828{
829 const struct mfd_cell *cell = mfd_get_cell(pdev);
830 struct asic3 *asic = dev_get_drvdata(pdev->dev.parent);
831
832 while (asic3_gpio_get(&asic->gpio, ASIC3_GPIO(C, cell->id)) != 0)
Lee Jonesd43c4292015-10-28 14:11:23 +0000833 usleep_range(1000, 5000);
Paul Parsonse0b13b52011-08-09 16:27:33 +0000834
835 asic3_clk_disable(asic, &asic->clocks[clock_ledn[cell->id]]);
836
837 return 0;
838}
839
Paul Parsons13ca4f62011-05-13 18:53:03 +0000840static struct mfd_cell asic3_cell_leds[ASIC3_NUM_LEDS] = {
841 [0] = {
842 .name = "leds-asic3",
843 .id = 0,
844 .enable = asic3_leds_enable,
845 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000846 .suspend = asic3_leds_suspend,
847 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000848 },
849 [1] = {
850 .name = "leds-asic3",
851 .id = 1,
852 .enable = asic3_leds_enable,
853 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000854 .suspend = asic3_leds_suspend,
855 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000856 },
857 [2] = {
858 .name = "leds-asic3",
859 .id = 2,
860 .enable = asic3_leds_enable,
861 .disable = asic3_leds_disable,
Paul Parsonse0b13b52011-08-09 16:27:33 +0000862 .suspend = asic3_leds_suspend,
863 .resume = asic3_leds_enable,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000864 },
865};
866
Philipp Zabel9461f652009-06-15 12:10:24 +0200867static int __init asic3_mfd_probe(struct platform_device *pdev,
Paul Parsons13ca4f62011-05-13 18:53:03 +0000868 struct asic3_platform_data *pdata,
Philipp Zabel9461f652009-06-15 12:10:24 +0200869 struct resource *mem)
870{
871 struct asic3 *asic = platform_get_drvdata(pdev);
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200872 struct resource *mem_sdio;
873 int irq, ret;
874
875 mem_sdio = platform_get_resource(pdev, IORESOURCE_MEM, 1);
876 if (!mem_sdio)
877 dev_dbg(asic->dev, "no SDIO MEM resource\n");
878
879 irq = platform_get_irq(pdev, 1);
880 if (irq < 0)
881 dev_dbg(asic->dev, "no SDIO IRQ resource\n");
Philipp Zabel9461f652009-06-15 12:10:24 +0200882
883 /* DS1WM */
884 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
885 ASIC3_EXTCF_OWM_SMB, 0);
886
887 ds1wm_resources[0].start >>= asic->bus_shift;
888 ds1wm_resources[0].end >>= asic->bus_shift;
889
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200890 /* MMC */
Sachin Kamat44b61a92014-06-10 15:30:34 +0530891 if (mem_sdio) {
Lee Jonesd43c4292015-10-28 14:11:23 +0000892 asic->tmio_cnf = ioremap((ASIC3_SD_CONFIG_BASE >>
893 asic->bus_shift) + mem_sdio->start,
Paul Parsons74e32d12011-05-15 14:13:11 +0000894 ASIC3_SD_CONFIG_SIZE >> asic->bus_shift);
Sachin Kamat44b61a92014-06-10 15:30:34 +0530895 if (!asic->tmio_cnf) {
896 ret = -ENOMEM;
897 dev_dbg(asic->dev, "Couldn't ioremap SD_CONFIG\n");
898 goto out;
899 }
Ian Molton64e88672010-01-06 13:51:48 +0100900 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200901 asic3_mmc_resources[0].start >>= asic->bus_shift;
902 asic3_mmc_resources[0].end >>= asic->bus_shift;
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200903
Paul Parsons4f304242012-04-09 13:18:31 +0100904 if (pdata->clock_rate) {
905 ds1wm_pdata.clock_rate = pdata->clock_rate;
906 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800907 &asic3_cell_ds1wm, 1, mem, asic->irq_base, NULL);
Paul Parsons4f304242012-04-09 13:18:31 +0100908 if (ret < 0)
909 goto out;
910 }
Philipp Zabel9461f652009-06-15 12:10:24 +0200911
Paul Parsons13ca4f62011-05-13 18:53:03 +0000912 if (mem_sdio && (irq >= 0)) {
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200913 ret = mfd_add_devices(&pdev->dev, pdev->id,
Mark Brown0848c942012-09-11 15:16:36 +0800914 &asic3_cell_mmc, 1, mem_sdio, irq, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000915 if (ret < 0)
916 goto out;
917 }
918
Arnd Bergmannb2f0fa82012-08-04 06:20:49 +0000919 ret = 0;
Paul Parsons13ca4f62011-05-13 18:53:03 +0000920 if (pdata->leds) {
921 int i;
922
923 for (i = 0; i < ASIC3_NUM_LEDS; ++i) {
924 asic3_cell_leds[i].platform_data = &pdata->leds[i];
925 asic3_cell_leds[i].pdata_size = sizeof(pdata->leds[i]);
926 }
927 ret = mfd_add_devices(&pdev->dev, 0,
Mark Brown0848c942012-09-11 15:16:36 +0800928 asic3_cell_leds, ASIC3_NUM_LEDS, NULL, 0, NULL);
Paul Parsons13ca4f62011-05-13 18:53:03 +0000929 }
Philipp Zabel09f05ce2009-06-15 12:10:25 +0200930
931 out:
Philipp Zabel9461f652009-06-15 12:10:24 +0200932 return ret;
933}
934
935static void asic3_mfd_remove(struct platform_device *pdev)
936{
Ian Molton64e88672010-01-06 13:51:48 +0100937 struct asic3 *asic = platform_get_drvdata(pdev);
938
Philipp Zabel9461f652009-06-15 12:10:24 +0200939 mfd_remove_devices(&pdev->dev);
Ian Molton64e88672010-01-06 13:51:48 +0100940 iounmap(asic->tmio_cnf);
Philipp Zabel9461f652009-06-15 12:10:24 +0200941}
942
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800943/* Core */
Philipp Zabel065032f2008-06-21 00:51:38 +0200944static int __init asic3_probe(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800945{
Jingoo Han334a41ce2013-07-30 17:10:05 +0900946 struct asic3_platform_data *pdata = dev_get_platdata(&pdev->dev);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800947 struct asic3 *asic;
948 struct resource *mem;
949 unsigned long clksel;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200950 int ret = 0;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800951
Lee Jones1cee87f2013-05-23 16:25:09 +0100952 asic = devm_kzalloc(&pdev->dev,
953 sizeof(struct asic3), GFP_KERNEL);
Lee Jonesd43c4292015-10-28 14:11:23 +0000954 if (!asic)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800955 return -ENOMEM;
956
Julia Cartwright93ad4472017-03-21 17:43:04 -0500957 raw_spin_lock_init(&asic->lock);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800958 platform_set_drvdata(pdev, asic);
959 asic->dev = &pdev->dev;
960
961 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
962 if (!mem) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200963 dev_err(asic->dev, "no MEM resource\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100964 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800965 }
966
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200967 asic->mapping = ioremap(mem->start, resource_size(mem));
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800968 if (!asic->mapping) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200969 dev_err(asic->dev, "Couldn't ioremap\n");
Lee Jones1cee87f2013-05-23 16:25:09 +0100970 return -ENOMEM;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800971 }
972
973 asic->irq_base = pdata->irq_base;
974
Philipp Zabel99cdb0c2008-07-10 02:17:02 +0200975 /* calculate bus shift from mem resource */
Philipp Zabelbe584bd2009-06-05 18:31:04 +0200976 asic->bus_shift = 2 - (resource_size(mem) >> 12);
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800977
978 clksel = 0;
979 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), clksel);
980
981 ret = asic3_irq_probe(pdev);
982 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +0200983 dev_err(asic->dev, "Couldn't probe IRQs\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200984 goto out_unmap;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -0800985 }
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200986
Paul Parsonsd8e4a882011-08-09 16:27:50 +0000987 asic->gpio.label = "asic3";
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200988 asic->gpio.base = pdata->gpio_base;
989 asic->gpio.ngpio = ASIC3_NUM_GPIOS;
990 asic->gpio.get = asic3_gpio_get;
991 asic->gpio.set = asic3_gpio_set;
992 asic->gpio.direction_input = asic3_gpio_direction_input;
993 asic->gpio.direction_output = asic3_gpio_direction_output;
Paul Parsons450b1152012-01-31 01:18:35 +0000994 asic->gpio.to_irq = asic3_gpio_to_irq;
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200995
Samuel Ortiz3b26bf12008-06-20 11:09:51 +0200996 ret = asic3_gpio_probe(pdev,
997 pdata->gpio_config,
998 pdata->gpio_config_num);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +0200999 if (ret < 0) {
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001000 dev_err(asic->dev, "GPIO probe failed\n");
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001001 goto out_irq;
1002 }
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001003
Philipp Zabele956a2a2009-06-05 18:31:02 +02001004 /* Making a per-device copy is only needed for the
1005 * theoretical case of multiple ASIC3s on one board:
1006 */
1007 memcpy(asic->clocks, asic3_clk_init, sizeof(asic3_clk_init));
1008
Paul Parsons13ca4f62011-05-13 18:53:03 +00001009 asic3_mfd_probe(pdev, pdata, mem);
Philipp Zabel9461f652009-06-15 12:10:24 +02001010
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001011 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1012 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 1);
1013
Samuel Ortiz24f4f2e2008-06-20 11:11:19 +02001014 dev_info(asic->dev, "ASIC3 Core driver\n");
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001015
1016 return 0;
1017
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001018 out_irq:
1019 asic3_irq_remove(pdev);
1020
1021 out_unmap:
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001022 iounmap(asic->mapping);
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001023
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001024 return ret;
1025}
1026
Bill Pemberton4740f732012-11-19 13:26:01 -05001027static int asic3_remove(struct platform_device *pdev)
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001028{
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001029 int ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001030 struct asic3 *asic = platform_get_drvdata(pdev);
1031
Paul Parsonsf22a9c62012-04-05 17:45:04 +01001032 asic3_set_register(asic, ASIC3_OFFSET(EXTCF, SELECT),
1033 (ASIC3_EXTCF_CF0_BUF_EN|ASIC3_EXTCF_CF0_PWAIT_EN), 0);
1034
Philipp Zabel9461f652009-06-15 12:10:24 +02001035 asic3_mfd_remove(pdev);
1036
Samuel Ortiz6f2384c2008-06-20 11:02:19 +02001037 ret = asic3_gpio_remove(pdev);
1038 if (ret < 0)
1039 return ret;
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001040 asic3_irq_remove(pdev);
1041
1042 asic3_write_register(asic, ASIC3_OFFSET(CLOCK, SEL), 0);
1043
1044 iounmap(asic->mapping);
1045
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001046 return 0;
1047}
1048
1049static void asic3_shutdown(struct platform_device *pdev)
1050{
1051}
1052
1053static struct platform_driver asic3_device_driver = {
1054 .driver = {
1055 .name = "asic3",
1056 },
Bill Pemberton84449212012-11-19 13:20:24 -05001057 .remove = asic3_remove,
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001058 .shutdown = asic3_shutdown,
1059};
1060
1061static int __init asic3_init(void)
1062{
1063 int retval = 0;
Lee Jonesd43c4292015-10-28 14:11:23 +00001064
Philipp Zabel065032f2008-06-21 00:51:38 +02001065 retval = platform_driver_probe(&asic3_device_driver, asic3_probe);
Lee Jonesd43c4292015-10-28 14:11:23 +00001066
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -08001067 return retval;
1068}
1069
1070subsys_initcall(asic3_init);