blob: 53a11114927fc2278456444dc22ae6ac8f1af964 [file] [log] [blame]
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001/*
2 * Generic GPIO driver for logic cells found in the Nomadik SoC
3 *
4 * Copyright (C) 2008,2009 STMicroelectronics
5 * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it>
6 * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com>
Linus Walleijf4b3f522013-11-19 23:21:04 +01007 * Copyright (C) 2011-2013 Linus Walleij <linus.walleij@linaro.org>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/device.h>
Rabin Vincent3e3c62c2010-03-03 04:52:34 +010017#include <linux/platform_device.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010018#include <linux/io.h>
Rabin Vincentaf7dc222010-05-06 11:14:17 +010019#include <linux/clk.h>
20#include <linux/err.h>
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010021#include <linux/gpio.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
24#include <linux/irq.h>
Lee Jonesa60b57e2012-04-19 21:36:31 +010025#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000026#include <linux/irqchip/chained_irq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Lee Jones855f80c2012-05-26 06:09:29 +010028#include <linux/of_device.h>
Lee Jones32e67ee2013-01-11 15:45:29 +000029#include <linux/of_address.h>
Gabriel Fernandeze32af882012-12-17 15:53:24 +010030#include <linux/pinctrl/machine.h>
Linus Walleije98ea772012-04-26 23:57:25 +020031#include <linux/pinctrl/pinctrl.h>
Linus Walleijdbfe8ca2012-05-02 22:56:47 +020032#include <linux/pinctrl/pinmux.h>
Linus Walleijd41af622012-05-03 15:58:12 +020033#include <linux/pinctrl/pinconf.h>
Linus Walleijdbfe8ca2012-05-02 22:56:47 +020034/* Since we request GPIOs from ourself */
35#include <linux/pinctrl/consumer.h>
Linus Walleije98ea772012-04-26 23:57:25 +020036#include "pinctrl-nomadik.h"
Julien Delacou8d99b322012-12-11 09:17:47 +010037#include "core.h"
Linus Walleije98ea772012-04-26 23:57:25 +020038
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010039/*
40 * The GPIO module in the Nomadik family of Systems-on-Chip is an
41 * AMBA device, managing 32 pins and alternate functions. The logic block
Jonas Aaberg9c66ee62010-10-13 13:14:17 +020042 * is currently used in the Nomadik and ux500.
Alessandro Rubini2ec1d352009-07-02 15:29:12 +010043 *
44 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
45 */
46
Linus Walleij8d993392013-11-19 23:02:11 +010047/*
48 * pin configurations are represented by 32-bit integers:
49 *
50 * bit 0.. 8 - Pin Number (512 Pins Maximum)
51 * bit 9..10 - Alternate Function Selection
52 * bit 11..12 - Pull up/down state
53 * bit 13 - Sleep mode behaviour
54 * bit 14 - Direction
55 * bit 15 - Value (if output)
56 * bit 16..18 - SLPM pull up/down state
57 * bit 19..20 - SLPM direction
58 * bit 21..22 - SLPM Value (if output)
59 * bit 23..25 - PDIS value (if input)
60 * bit 26 - Gpio mode
61 * bit 27 - Sleep mode
62 *
63 * to facilitate the definition, the following macros are provided
64 *
65 * PIN_CFG_DEFAULT - default config (0):
66 * pull up/down = disabled
67 * sleep mode = input/wakeup
68 * direction = input
69 * value = low
70 * SLPM direction = same as normal
71 * SLPM pull = same as normal
72 * SLPM value = same as normal
73 *
74 * PIN_CFG - default config with alternate function
75 */
76
77typedef unsigned long pin_cfg_t;
78
79#define PIN_NUM_MASK 0x1ff
80#define PIN_NUM(x) ((x) & PIN_NUM_MASK)
81
82#define PIN_ALT_SHIFT 9
83#define PIN_ALT_MASK (0x3 << PIN_ALT_SHIFT)
84#define PIN_ALT(x) (((x) & PIN_ALT_MASK) >> PIN_ALT_SHIFT)
85#define PIN_GPIO (NMK_GPIO_ALT_GPIO << PIN_ALT_SHIFT)
86#define PIN_ALT_A (NMK_GPIO_ALT_A << PIN_ALT_SHIFT)
87#define PIN_ALT_B (NMK_GPIO_ALT_B << PIN_ALT_SHIFT)
88#define PIN_ALT_C (NMK_GPIO_ALT_C << PIN_ALT_SHIFT)
89
90#define PIN_PULL_SHIFT 11
91#define PIN_PULL_MASK (0x3 << PIN_PULL_SHIFT)
92#define PIN_PULL(x) (((x) & PIN_PULL_MASK) >> PIN_PULL_SHIFT)
93#define PIN_PULL_NONE (NMK_GPIO_PULL_NONE << PIN_PULL_SHIFT)
94#define PIN_PULL_UP (NMK_GPIO_PULL_UP << PIN_PULL_SHIFT)
95#define PIN_PULL_DOWN (NMK_GPIO_PULL_DOWN << PIN_PULL_SHIFT)
96
97#define PIN_SLPM_SHIFT 13
98#define PIN_SLPM_MASK (0x1 << PIN_SLPM_SHIFT)
99#define PIN_SLPM(x) (((x) & PIN_SLPM_MASK) >> PIN_SLPM_SHIFT)
100#define PIN_SLPM_MAKE_INPUT (NMK_GPIO_SLPM_INPUT << PIN_SLPM_SHIFT)
101#define PIN_SLPM_NOCHANGE (NMK_GPIO_SLPM_NOCHANGE << PIN_SLPM_SHIFT)
102/* These two replace the above in DB8500v2+ */
103#define PIN_SLPM_WAKEUP_ENABLE (NMK_GPIO_SLPM_WAKEUP_ENABLE << PIN_SLPM_SHIFT)
104#define PIN_SLPM_WAKEUP_DISABLE (NMK_GPIO_SLPM_WAKEUP_DISABLE << PIN_SLPM_SHIFT)
105#define PIN_SLPM_USE_MUX_SETTINGS_IN_SLEEP PIN_SLPM_WAKEUP_DISABLE
106
107#define PIN_SLPM_GPIO PIN_SLPM_WAKEUP_ENABLE /* In SLPM, pin is a gpio */
108#define PIN_SLPM_ALTFUNC PIN_SLPM_WAKEUP_DISABLE /* In SLPM, pin is altfunc */
109
110#define PIN_DIR_SHIFT 14
111#define PIN_DIR_MASK (0x1 << PIN_DIR_SHIFT)
112#define PIN_DIR(x) (((x) & PIN_DIR_MASK) >> PIN_DIR_SHIFT)
113#define PIN_DIR_INPUT (0 << PIN_DIR_SHIFT)
114#define PIN_DIR_OUTPUT (1 << PIN_DIR_SHIFT)
115
116#define PIN_VAL_SHIFT 15
117#define PIN_VAL_MASK (0x1 << PIN_VAL_SHIFT)
118#define PIN_VAL(x) (((x) & PIN_VAL_MASK) >> PIN_VAL_SHIFT)
119#define PIN_VAL_LOW (0 << PIN_VAL_SHIFT)
120#define PIN_VAL_HIGH (1 << PIN_VAL_SHIFT)
121
122#define PIN_SLPM_PULL_SHIFT 16
123#define PIN_SLPM_PULL_MASK (0x7 << PIN_SLPM_PULL_SHIFT)
124#define PIN_SLPM_PULL(x) \
125 (((x) & PIN_SLPM_PULL_MASK) >> PIN_SLPM_PULL_SHIFT)
126#define PIN_SLPM_PULL_NONE \
127 ((1 + NMK_GPIO_PULL_NONE) << PIN_SLPM_PULL_SHIFT)
128#define PIN_SLPM_PULL_UP \
129 ((1 + NMK_GPIO_PULL_UP) << PIN_SLPM_PULL_SHIFT)
130#define PIN_SLPM_PULL_DOWN \
131 ((1 + NMK_GPIO_PULL_DOWN) << PIN_SLPM_PULL_SHIFT)
132
133#define PIN_SLPM_DIR_SHIFT 19
134#define PIN_SLPM_DIR_MASK (0x3 << PIN_SLPM_DIR_SHIFT)
135#define PIN_SLPM_DIR(x) \
136 (((x) & PIN_SLPM_DIR_MASK) >> PIN_SLPM_DIR_SHIFT)
137#define PIN_SLPM_DIR_INPUT ((1 + 0) << PIN_SLPM_DIR_SHIFT)
138#define PIN_SLPM_DIR_OUTPUT ((1 + 1) << PIN_SLPM_DIR_SHIFT)
139
140#define PIN_SLPM_VAL_SHIFT 21
141#define PIN_SLPM_VAL_MASK (0x3 << PIN_SLPM_VAL_SHIFT)
142#define PIN_SLPM_VAL(x) \
143 (((x) & PIN_SLPM_VAL_MASK) >> PIN_SLPM_VAL_SHIFT)
144#define PIN_SLPM_VAL_LOW ((1 + 0) << PIN_SLPM_VAL_SHIFT)
145#define PIN_SLPM_VAL_HIGH ((1 + 1) << PIN_SLPM_VAL_SHIFT)
146
147#define PIN_SLPM_PDIS_SHIFT 23
148#define PIN_SLPM_PDIS_MASK (0x3 << PIN_SLPM_PDIS_SHIFT)
149#define PIN_SLPM_PDIS(x) \
150 (((x) & PIN_SLPM_PDIS_MASK) >> PIN_SLPM_PDIS_SHIFT)
151#define PIN_SLPM_PDIS_NO_CHANGE (0 << PIN_SLPM_PDIS_SHIFT)
152#define PIN_SLPM_PDIS_DISABLED (1 << PIN_SLPM_PDIS_SHIFT)
153#define PIN_SLPM_PDIS_ENABLED (2 << PIN_SLPM_PDIS_SHIFT)
154
155#define PIN_LOWEMI_SHIFT 25
156#define PIN_LOWEMI_MASK (0x1 << PIN_LOWEMI_SHIFT)
157#define PIN_LOWEMI(x) (((x) & PIN_LOWEMI_MASK) >> PIN_LOWEMI_SHIFT)
158#define PIN_LOWEMI_DISABLED (0 << PIN_LOWEMI_SHIFT)
159#define PIN_LOWEMI_ENABLED (1 << PIN_LOWEMI_SHIFT)
160
161#define PIN_GPIOMODE_SHIFT 26
162#define PIN_GPIOMODE_MASK (0x1 << PIN_GPIOMODE_SHIFT)
163#define PIN_GPIOMODE(x) (((x) & PIN_GPIOMODE_MASK) >> PIN_GPIOMODE_SHIFT)
164#define PIN_GPIOMODE_DISABLED (0 << PIN_GPIOMODE_SHIFT)
165#define PIN_GPIOMODE_ENABLED (1 << PIN_GPIOMODE_SHIFT)
166
167#define PIN_SLEEPMODE_SHIFT 27
168#define PIN_SLEEPMODE_MASK (0x1 << PIN_SLEEPMODE_SHIFT)
169#define PIN_SLEEPMODE(x) (((x) & PIN_SLEEPMODE_MASK) >> PIN_SLEEPMODE_SHIFT)
170#define PIN_SLEEPMODE_DISABLED (0 << PIN_SLEEPMODE_SHIFT)
171#define PIN_SLEEPMODE_ENABLED (1 << PIN_SLEEPMODE_SHIFT)
172
173
174/* Shortcuts. Use these instead of separate DIR, PULL, and VAL. */
175#define PIN_INPUT_PULLDOWN (PIN_DIR_INPUT | PIN_PULL_DOWN)
176#define PIN_INPUT_PULLUP (PIN_DIR_INPUT | PIN_PULL_UP)
177#define PIN_INPUT_NOPULL (PIN_DIR_INPUT | PIN_PULL_NONE)
178#define PIN_OUTPUT_LOW (PIN_DIR_OUTPUT | PIN_VAL_LOW)
179#define PIN_OUTPUT_HIGH (PIN_DIR_OUTPUT | PIN_VAL_HIGH)
180
181#define PIN_SLPM_INPUT_PULLDOWN (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_DOWN)
182#define PIN_SLPM_INPUT_PULLUP (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_UP)
183#define PIN_SLPM_INPUT_NOPULL (PIN_SLPM_DIR_INPUT | PIN_SLPM_PULL_NONE)
184#define PIN_SLPM_OUTPUT_LOW (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_LOW)
185#define PIN_SLPM_OUTPUT_HIGH (PIN_SLPM_DIR_OUTPUT | PIN_SLPM_VAL_HIGH)
186
187#define PIN_CFG_DEFAULT (0)
188
189#define PIN_CFG(num, alt) \
190 (PIN_CFG_DEFAULT |\
191 (PIN_NUM(num) | PIN_##alt))
192
193#define PIN_CFG_INPUT(num, alt, pull) \
194 (PIN_CFG_DEFAULT |\
195 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull))
196
197#define PIN_CFG_OUTPUT(num, alt, val) \
198 (PIN_CFG_DEFAULT |\
199 (PIN_NUM(num) | PIN_##alt | PIN_OUTPUT_##val))
200
201/*
202 * "nmk_gpio" and "NMK_GPIO" stand for "Nomadik GPIO", leaving
203 * the "gpio" namespace for generic and cross-machine functions
204 */
205
206#define GPIO_BLOCK_SHIFT 5
207#define NMK_GPIO_PER_CHIP (1 << GPIO_BLOCK_SHIFT)
208
209/* Register in the logic block */
210#define NMK_GPIO_DAT 0x00
211#define NMK_GPIO_DATS 0x04
212#define NMK_GPIO_DATC 0x08
213#define NMK_GPIO_PDIS 0x0c
214#define NMK_GPIO_DIR 0x10
215#define NMK_GPIO_DIRS 0x14
216#define NMK_GPIO_DIRC 0x18
217#define NMK_GPIO_SLPC 0x1c
218#define NMK_GPIO_AFSLA 0x20
219#define NMK_GPIO_AFSLB 0x24
220#define NMK_GPIO_LOWEMI 0x28
221
222#define NMK_GPIO_RIMSC 0x40
223#define NMK_GPIO_FIMSC 0x44
224#define NMK_GPIO_IS 0x48
225#define NMK_GPIO_IC 0x4c
226#define NMK_GPIO_RWIMSC 0x50
227#define NMK_GPIO_FWIMSC 0x54
228#define NMK_GPIO_WKS 0x58
229/* These appear in DB8540 and later ASICs */
230#define NMK_GPIO_EDGELEVEL 0x5C
231#define NMK_GPIO_LEVEL 0x60
232
233
234/* Pull up/down values */
235enum nmk_gpio_pull {
236 NMK_GPIO_PULL_NONE,
237 NMK_GPIO_PULL_UP,
238 NMK_GPIO_PULL_DOWN,
239};
240
241/* Sleep mode */
242enum nmk_gpio_slpm {
243 NMK_GPIO_SLPM_INPUT,
244 NMK_GPIO_SLPM_WAKEUP_ENABLE = NMK_GPIO_SLPM_INPUT,
245 NMK_GPIO_SLPM_NOCHANGE,
246 NMK_GPIO_SLPM_WAKEUP_DISABLE = NMK_GPIO_SLPM_NOCHANGE,
247};
248
249/*
250 * Platform data to register a block: only the initial gpio/irq number.
251 */
252struct nmk_gpio_platform_data {
253 char *name;
254 int first_gpio;
255 int first_irq;
256 int num_gpio;
257 u32 (*get_secondary_status)(unsigned int bank);
258 void (*set_ioforce)(bool enable);
259 bool supports_sleepmode;
260};
261
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100262struct nmk_gpio_chip {
263 struct gpio_chip chip;
Lee Jonesa60b57e2012-04-19 21:36:31 +0100264 struct irq_domain *domain;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100265 void __iomem *addr;
Rabin Vincentaf7dc222010-05-06 11:14:17 +0100266 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +0530267 unsigned int bank;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100268 unsigned int parent_irq;
Virupax Sadashivpetimath2c8bb0e2010-11-11 14:10:38 +0530269 int secondary_parent_irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +0530270 u32 (*get_secondary_status)(unsigned int bank);
Rabin Vincent01727e62010-12-13 12:02:40 +0530271 void (*set_ioforce)(bool enable);
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +0100272 spinlock_t lock;
Linus Walleij33d78642011-06-09 11:08:47 +0200273 bool sleepmode;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100274 /* Keep track of configured edges */
275 u32 edge_rising;
276 u32 edge_falling;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530277 u32 real_wake;
278 u32 rwimsc;
279 u32 fwimsc;
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530280 u32 rimsc;
281 u32 fimsc;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200282 u32 pull_up;
Rabin Vincentebc61782011-09-28 15:49:11 +0530283 u32 lowemi;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100284};
285
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200286/**
287 * struct nmk_pinctrl - state container for the Nomadik pin controller
288 * @dev: containing device pointer
289 * @pctl: corresponding pin controller device
290 * @soc: SoC data for this specific chip
291 * @prcm_base: PRCM register range virtual base
292 */
Linus Walleije98ea772012-04-26 23:57:25 +0200293struct nmk_pinctrl {
294 struct device *dev;
295 struct pinctrl_dev *pctl;
296 const struct nmk_pinctrl_soc_data *soc;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200297 void __iomem *prcm_base;
Linus Walleije98ea772012-04-26 23:57:25 +0200298};
299
Rabin Vincent01727e62010-12-13 12:02:40 +0530300static struct nmk_gpio_chip *
301nmk_gpio_chips[DIV_ROUND_UP(ARCH_NR_GPIOS, NMK_GPIO_PER_CHIP)];
302
303static DEFINE_SPINLOCK(nmk_gpio_slpm_lock);
304
305#define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
306
Rabin Vincent6f9a9742010-06-02 05:50:28 +0100307static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
308 unsigned offset, int gpio_mode)
309{
310 u32 bit = 1 << offset;
311 u32 afunc, bfunc;
312
313 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
314 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
315 if (gpio_mode & NMK_GPIO_ALT_A)
316 afunc |= bit;
317 if (gpio_mode & NMK_GPIO_ALT_B)
318 bfunc |= bit;
319 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
320 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
321}
322
Rabin Vincent81a3c292010-05-27 12:39:23 +0100323static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
324 unsigned offset, enum nmk_gpio_slpm mode)
325{
326 u32 bit = 1 << offset;
327 u32 slpm;
328
329 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
330 if (mode == NMK_GPIO_SLPM_NOCHANGE)
331 slpm |= bit;
332 else
333 slpm &= ~bit;
334 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
335}
336
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100337static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
338 unsigned offset, enum nmk_gpio_pull pull)
339{
340 u32 bit = 1 << offset;
341 u32 pdis;
342
343 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200344 if (pull == NMK_GPIO_PULL_NONE) {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100345 pdis |= bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200346 nmk_chip->pull_up &= ~bit;
347 } else {
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100348 pdis &= ~bit;
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200349 }
350
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100351 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
352
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200353 if (pull == NMK_GPIO_PULL_UP) {
354 nmk_chip->pull_up |= bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100355 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200356 } else if (pull == NMK_GPIO_PULL_DOWN) {
357 nmk_chip->pull_up &= ~bit;
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100358 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +0200359 }
Rabin Vincent5b327ed2010-05-27 12:29:50 +0100360}
361
Rabin Vincentebc61782011-09-28 15:49:11 +0530362static void __nmk_gpio_set_lowemi(struct nmk_gpio_chip *nmk_chip,
363 unsigned offset, bool lowemi)
364{
365 u32 bit = BIT(offset);
366 bool enabled = nmk_chip->lowemi & bit;
367
368 if (lowemi == enabled)
369 return;
370
371 if (lowemi)
372 nmk_chip->lowemi |= bit;
373 else
374 nmk_chip->lowemi &= ~bit;
375
376 writel_relaxed(nmk_chip->lowemi,
377 nmk_chip->addr + NMK_GPIO_LOWEMI);
378}
379
Rabin Vincent378be062010-06-02 06:06:29 +0100380static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
381 unsigned offset)
382{
383 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
384}
385
Rabin Vincent6720db72010-09-02 11:28:48 +0100386static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
387 unsigned offset, int val)
388{
389 if (val)
390 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
391 else
392 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
393}
394
395static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
396 unsigned offset, int val)
397{
398 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
399 __nmk_gpio_set_output(nmk_chip, offset, val);
400}
401
Rabin Vincent01727e62010-12-13 12:02:40 +0530402static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip *nmk_chip,
403 unsigned offset, int gpio_mode,
404 bool glitch)
405{
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530406 u32 rwimsc = nmk_chip->rwimsc;
407 u32 fwimsc = nmk_chip->fwimsc;
Rabin Vincent01727e62010-12-13 12:02:40 +0530408
409 if (glitch && nmk_chip->set_ioforce) {
410 u32 bit = BIT(offset);
411
Rabin Vincent01727e62010-12-13 12:02:40 +0530412 /* Prevent spurious wakeups */
413 writel(rwimsc & ~bit, nmk_chip->addr + NMK_GPIO_RWIMSC);
414 writel(fwimsc & ~bit, nmk_chip->addr + NMK_GPIO_FWIMSC);
415
416 nmk_chip->set_ioforce(true);
417 }
418
419 __nmk_gpio_set_mode(nmk_chip, offset, gpio_mode);
420
421 if (glitch && nmk_chip->set_ioforce) {
422 nmk_chip->set_ioforce(false);
423
424 writel(rwimsc, nmk_chip->addr + NMK_GPIO_RWIMSC);
425 writel(fwimsc, nmk_chip->addr + NMK_GPIO_FWIMSC);
426 }
427}
428
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530429static void
430nmk_gpio_disable_lazy_irq(struct nmk_gpio_chip *nmk_chip, unsigned offset)
431{
432 u32 falling = nmk_chip->fimsc & BIT(offset);
433 u32 rising = nmk_chip->rimsc & BIT(offset);
434 int gpio = nmk_chip->chip.base + offset;
Linus Walleijaa6e3792013-01-07 14:54:39 +0100435 int irq = irq_find_mapping(nmk_chip->domain, offset);
Rabin Vincent6c42ad12011-05-23 12:22:18 +0530436 struct irq_data *d = irq_get_irq_data(irq);
437
438 if (!rising && !falling)
439 return;
440
441 if (!d || !irqd_irq_disabled(d))
442 return;
443
444 if (rising) {
445 nmk_chip->rimsc &= ~BIT(offset);
446 writel_relaxed(nmk_chip->rimsc,
447 nmk_chip->addr + NMK_GPIO_RIMSC);
448 }
449
450 if (falling) {
451 nmk_chip->fimsc &= ~BIT(offset);
452 writel_relaxed(nmk_chip->fimsc,
453 nmk_chip->addr + NMK_GPIO_FIMSC);
454 }
455
456 dev_dbg(nmk_chip->chip.dev, "%d: clearing interrupt mask\n", gpio);
457}
458
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200459static void nmk_write_masked(void __iomem *reg, u32 mask, u32 value)
460{
461 u32 val;
462
463 val = readl(reg);
464 val = ((val & ~mask) | (value & mask));
465 writel(val, reg);
466}
467
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200468static void nmk_prcm_altcx_set_mode(struct nmk_pinctrl *npct,
469 unsigned offset, unsigned alt_num)
470{
471 int i;
472 u16 reg;
473 u8 bit;
474 u8 alt_index;
475 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
476 const u16 *gpiocr_regs;
477
Fabio Baltieri4ca075d2012-12-18 10:12:11 +0100478 if (!npct->prcm_base)
479 return;
480
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200481 if (alt_num > PRCM_IDX_GPIOCR_ALTC_MAX) {
482 dev_err(npct->dev, "PRCM GPIOCR: alternate-C%i is invalid\n",
483 alt_num);
484 return;
485 }
486
487 for (i = 0 ; i < npct->soc->npins_altcx ; i++) {
488 if (npct->soc->altcx_pins[i].pin == offset)
489 break;
490 }
491 if (i == npct->soc->npins_altcx) {
492 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i is not found\n",
493 offset);
494 return;
495 }
496
497 pin_desc = npct->soc->altcx_pins + i;
498 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
499
500 /*
501 * If alt_num is NULL, just clear current ALTCx selection
502 * to make sure we come back to a pure ALTC selection
503 */
504 if (!alt_num) {
505 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
506 if (pin_desc->altcx[i].used == true) {
507 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
508 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200509 if (readl(npct->prcm_base + reg) & BIT(bit)) {
510 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200511 dev_dbg(npct->dev,
512 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
513 offset, i+1);
514 }
515 }
516 }
517 return;
518 }
519
520 alt_index = alt_num - 1;
521 if (pin_desc->altcx[alt_index].used == false) {
522 dev_warn(npct->dev,
523 "PRCM GPIOCR: pin %i: alternate-C%i does not exist\n",
524 offset, alt_num);
525 return;
526 }
527
528 /*
529 * Check if any other ALTCx functions are activated on this pin
530 * and disable it first.
531 */
532 for (i = 0 ; i < PRCM_IDX_GPIOCR_ALTC_MAX ; i++) {
533 if (i == alt_index)
534 continue;
535 if (pin_desc->altcx[i].used == true) {
536 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
537 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200538 if (readl(npct->prcm_base + reg) & BIT(bit)) {
539 nmk_write_masked(npct->prcm_base + reg, BIT(bit), 0);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200540 dev_dbg(npct->dev,
541 "PRCM GPIOCR: pin %i: alternate-C%i has been disabled\n",
542 offset, i+1);
543 }
544 }
545 }
546
547 reg = gpiocr_regs[pin_desc->altcx[alt_index].reg_index];
548 bit = pin_desc->altcx[alt_index].control_bit;
549 dev_dbg(npct->dev, "PRCM GPIOCR: pin %i: alternate-C%i has been selected\n",
550 offset, alt_index+1);
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200551 nmk_write_masked(npct->prcm_base + reg, BIT(bit), BIT(bit));
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +0200552}
553
Rabin Vincent01727e62010-12-13 12:02:40 +0530554/*
555 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
556 * - Save SLPM registers
557 * - Set SLPM=0 for the IOs you want to switch and others to 1
558 * - Configure the GPIO registers for the IOs that are being switched
559 * - Set IOFORCE=1
560 * - Modify the AFLSA/B registers for the IOs that are being switched
561 * - Set IOFORCE=0
562 * - Restore SLPM registers
563 * - Any spurious wake up event during switch sequence to be ignored and
564 * cleared
565 */
566static void nmk_gpio_glitch_slpm_init(unsigned int *slpm)
567{
568 int i;
569
570 for (i = 0; i < NUM_BANKS; i++) {
571 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
572 unsigned int temp = slpm[i];
573
574 if (!chip)
575 break;
576
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200577 clk_enable(chip->clk);
578
Rabin Vincent01727e62010-12-13 12:02:40 +0530579 slpm[i] = readl(chip->addr + NMK_GPIO_SLPC);
580 writel(temp, chip->addr + NMK_GPIO_SLPC);
581 }
582}
583
584static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm)
585{
586 int i;
587
588 for (i = 0; i < NUM_BANKS; i++) {
589 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
590
591 if (!chip)
592 break;
593
594 writel(slpm[i], chip->addr + NMK_GPIO_SLPC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200595
596 clk_disable(chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530597 }
598}
599
Arnd Bergmann0fafd502013-01-25 14:14:30 +0000600static int __maybe_unused nmk_prcm_gpiocr_get_mode(struct pinctrl_dev *pctldev, int gpio)
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200601{
602 int i;
603 u16 reg;
604 u8 bit;
605 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
606 const struct prcm_gpiocr_altcx_pin_desc *pin_desc;
607 const u16 *gpiocr_regs;
608
Fabio Baltieri4ca075d2012-12-18 10:12:11 +0100609 if (!npct->prcm_base)
610 return NMK_GPIO_ALT_C;
611
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200612 for (i = 0; i < npct->soc->npins_altcx; i++) {
613 if (npct->soc->altcx_pins[i].pin == gpio)
614 break;
615 }
616 if (i == npct->soc->npins_altcx)
617 return NMK_GPIO_ALT_C;
618
619 pin_desc = npct->soc->altcx_pins + i;
620 gpiocr_regs = npct->soc->prcm_gpiocr_registers;
621 for (i = 0; i < PRCM_IDX_GPIOCR_ALTC_MAX; i++) {
622 if (pin_desc->altcx[i].used == true) {
623 reg = gpiocr_regs[pin_desc->altcx[i].reg_index];
624 bit = pin_desc->altcx[i].control_bit;
Jonas Aabergf1671bf2012-10-25 08:40:42 +0200625 if (readl(npct->prcm_base + reg) & BIT(bit))
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +0200626 return NMK_GPIO_ALT_C+i+1;
627 }
628 }
629 return NMK_GPIO_ALT_C;
630}
631
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100632int nmk_gpio_get_mode(int gpio)
633{
634 struct nmk_gpio_chip *nmk_chip;
635 u32 afunc, bfunc, bit;
636
Lee Jonesa60b57e2012-04-19 21:36:31 +0100637 nmk_chip = nmk_gpio_chips[gpio / NMK_GPIO_PER_CHIP];
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100638 if (!nmk_chip)
639 return -EINVAL;
640
Lee Jonesa60b57e2012-04-19 21:36:31 +0100641 bit = 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100642
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200643 clk_enable(nmk_chip->clk);
644
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100645 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
646 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
647
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200648 clk_disable(nmk_chip->clk);
649
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100650 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
651}
652EXPORT_SYMBOL(nmk_gpio_get_mode);
653
654
655/* IRQ functions */
656static inline int nmk_gpio_get_bitmask(int gpio)
657{
Lee Jonesa60b57e2012-04-19 21:36:31 +0100658 return 1 << (gpio % NMK_GPIO_PER_CHIP);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100659}
660
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100661static void nmk_gpio_irq_ack(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100662{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100663 struct nmk_gpio_chip *nmk_chip;
664
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100665 nmk_chip = irq_data_get_irq_chip_data(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100666 if (!nmk_chip)
667 return;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200668
669 clk_enable(nmk_chip->clk);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100670 writel(nmk_gpio_get_bitmask(d->hwirq), nmk_chip->addr + NMK_GPIO_IC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200671 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100672}
673
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100674enum nmk_gpio_irq_type {
675 NORMAL,
676 WAKE,
677};
678
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100679static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100680 int gpio, enum nmk_gpio_irq_type which,
681 bool enable)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100682{
683 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530684 u32 *rimscval;
685 u32 *fimscval;
686 u32 rimscreg;
687 u32 fimscreg;
688
689 if (which == NORMAL) {
690 rimscreg = NMK_GPIO_RIMSC;
691 fimscreg = NMK_GPIO_FIMSC;
692 rimscval = &nmk_chip->rimsc;
693 fimscval = &nmk_chip->fimsc;
694 } else {
695 rimscreg = NMK_GPIO_RWIMSC;
696 fimscreg = NMK_GPIO_FWIMSC;
697 rimscval = &nmk_chip->rwimsc;
698 fimscval = &nmk_chip->fwimsc;
699 }
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100700
701 /* we must individually set/clear the two edges */
702 if (nmk_chip->edge_rising & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100703 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530704 *rimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100705 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530706 *rimscval &= ~bitmask;
707 writel(*rimscval, nmk_chip->addr + rimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100708 }
709 if (nmk_chip->edge_falling & bitmask) {
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100710 if (enable)
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530711 *fimscval |= bitmask;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100712 else
Rabin Vincent6c12fe82011-05-23 12:13:33 +0530713 *fimscval &= ~bitmask;
714 writel(*fimscval, nmk_chip->addr + fimscreg);
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100715 }
716}
717
Rabin Vincentb9df4682011-02-10 11:45:58 +0530718static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip,
719 int gpio, bool on)
720{
Rabin Vincentb982ff02011-04-26 09:03:27 +0530721 /*
722 * Ensure WAKEUP_ENABLE is on. No need to disable it if wakeup is
723 * disabled, since setting SLPM to 1 increases power consumption, and
724 * wakeup is anyhow controlled by the RIMSC and FIMSC registers.
725 */
726 if (nmk_chip->sleepmode && on) {
Linus Walleije85bbc12012-06-12 12:43:06 +0200727 __nmk_gpio_set_slpm(nmk_chip, gpio % NMK_GPIO_PER_CHIP,
Rabin Vincentb982ff02011-04-26 09:03:27 +0530728 NMK_GPIO_SLPM_WAKEUP_ENABLE);
Linus Walleij33d78642011-06-09 11:08:47 +0200729 }
730
Rabin Vincentb9df4682011-02-10 11:45:58 +0530731 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
732}
733
734static int nmk_gpio_irq_maskunmask(struct irq_data *d, bool enable)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100735{
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100736 struct nmk_gpio_chip *nmk_chip;
737 unsigned long flags;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100738 u32 bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100739
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100740 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100741 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100742 if (!nmk_chip)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100743 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100744
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200745 clk_enable(nmk_chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530746 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
747 spin_lock(&nmk_chip->lock);
748
Lee Jonesa60b57e2012-04-19 21:36:31 +0100749 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530750
751 if (!(nmk_chip->real_wake & bitmask))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100752 __nmk_gpio_set_wake(nmk_chip, d->hwirq, enable);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530753
754 spin_unlock(&nmk_chip->lock);
755 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200756 clk_disable(nmk_chip->clk);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100757
758 return 0;
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100759}
760
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100761static void nmk_gpio_irq_mask(struct irq_data *d)
Rabin Vincent040e5ec2010-05-06 10:42:42 +0100762{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530763 nmk_gpio_irq_maskunmask(d, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100764}
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100765
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100766static void nmk_gpio_irq_unmask(struct irq_data *d)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100767{
Rabin Vincentb9df4682011-02-10 11:45:58 +0530768 nmk_gpio_irq_maskunmask(d, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100769}
770
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100771static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100772{
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100773 struct nmk_gpio_chip *nmk_chip;
774 unsigned long flags;
Rabin Vincentb9df4682011-02-10 11:45:58 +0530775 u32 bitmask;
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100776
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100777 nmk_chip = irq_data_get_irq_chip_data(d);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100778 if (!nmk_chip)
779 return -EINVAL;
Lee Jonesa60b57e2012-04-19 21:36:31 +0100780 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100781
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200782 clk_enable(nmk_chip->clk);
Rabin Vincent01727e62010-12-13 12:02:40 +0530783 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
784 spin_lock(&nmk_chip->lock);
785
Linus Walleij479a0c72011-09-20 10:50:15 +0200786 if (irqd_irq_disabled(d))
Lee Jonesa60b57e2012-04-19 21:36:31 +0100787 __nmk_gpio_set_wake(nmk_chip, d->hwirq, on);
Rabin Vincentb9df4682011-02-10 11:45:58 +0530788
789 if (on)
790 nmk_chip->real_wake |= bitmask;
791 else
792 nmk_chip->real_wake &= ~bitmask;
Rabin Vincent01727e62010-12-13 12:02:40 +0530793
794 spin_unlock(&nmk_chip->lock);
795 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200796 clk_disable(nmk_chip->clk);
Rabin Vincent7e3f7e52010-09-02 11:28:05 +0100797
798 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100799}
800
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100801static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100802{
Linus Walleij479a0c72011-09-20 10:50:15 +0200803 bool enabled = !irqd_irq_disabled(d);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200804 bool wake = irqd_is_wakeup_set(d);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100805 struct nmk_gpio_chip *nmk_chip;
806 unsigned long flags;
807 u32 bitmask;
808
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100809 nmk_chip = irq_data_get_irq_chip_data(d);
Lee Jonesa60b57e2012-04-19 21:36:31 +0100810 bitmask = nmk_gpio_get_bitmask(d->hwirq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100811 if (!nmk_chip)
812 return -EINVAL;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100813 if (type & IRQ_TYPE_LEVEL_HIGH)
814 return -EINVAL;
815 if (type & IRQ_TYPE_LEVEL_LOW)
816 return -EINVAL;
817
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200818 clk_enable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100819 spin_lock_irqsave(&nmk_chip->lock, flags);
820
Rabin Vincent7a852d82010-05-06 10:43:55 +0100821 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100822 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, false);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100823
Rabin Vincentb9df4682011-02-10 11:45:58 +0530824 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100825 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, false);
Rabin Vincent7a852d82010-05-06 10:43:55 +0100826
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100827 nmk_chip->edge_rising &= ~bitmask;
828 if (type & IRQ_TYPE_EDGE_RISING)
829 nmk_chip->edge_rising |= bitmask;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100830
831 nmk_chip->edge_falling &= ~bitmask;
832 if (type & IRQ_TYPE_EDGE_FALLING)
833 nmk_chip->edge_falling |= bitmask;
Rabin Vincent7a852d82010-05-06 10:43:55 +0100834
835 if (enabled)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100836 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, NORMAL, true);
Rabin Vincent4d4e20f2010-06-16 06:09:34 +0100837
Rabin Vincentb9df4682011-02-10 11:45:58 +0530838 if (enabled || wake)
Lee Jonesa60b57e2012-04-19 21:36:31 +0100839 __nmk_gpio_irq_modify(nmk_chip, d->hwirq, WAKE, true);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100840
841 spin_unlock_irqrestore(&nmk_chip->lock, flags);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200842 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100843
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100844 return 0;
845}
846
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200847static unsigned int nmk_gpio_irq_startup(struct irq_data *d)
848{
849 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
850
Linus Walleij494336f2013-10-11 11:30:25 +0200851 if (gpio_lock_as_irq(&nmk_chip->chip, d->hwirq))
852 dev_err(nmk_chip->chip.dev,
853 "unable to lock HW IRQ %lu for IRQ\n",
854 d->hwirq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200855 clk_enable(nmk_chip->clk);
856 nmk_gpio_irq_unmask(d);
857 return 0;
858}
859
860static void nmk_gpio_irq_shutdown(struct irq_data *d)
861{
862 struct nmk_gpio_chip *nmk_chip = irq_data_get_irq_chip_data(d);
863
864 nmk_gpio_irq_mask(d);
865 clk_disable(nmk_chip->clk);
Linus Walleij494336f2013-10-11 11:30:25 +0200866 gpio_unlock_as_irq(&nmk_chip->chip, d->hwirq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200867}
868
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100869static struct irq_chip nmk_gpio_irq_chip = {
870 .name = "Nomadik-GPIO",
Lennert Buytenhekf272c002010-11-29 11:16:48 +0100871 .irq_ack = nmk_gpio_irq_ack,
872 .irq_mask = nmk_gpio_irq_mask,
873 .irq_unmask = nmk_gpio_irq_unmask,
874 .irq_set_type = nmk_gpio_irq_set_type,
875 .irq_set_wake = nmk_gpio_irq_set_wake,
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200876 .irq_startup = nmk_gpio_irq_startup,
877 .irq_shutdown = nmk_gpio_irq_shutdown,
Etienne Carriere4921e7452012-08-22 10:44:16 +0200878 .flags = IRQCHIP_MASK_ON_SUSPEND,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100879};
880
Rabin Vincent33b744b2010-10-14 10:38:03 +0530881static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
882 u32 status)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100883{
884 struct nmk_gpio_chip *nmk_chip;
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100885 struct irq_chip *host_chip = irq_get_chip(irq);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100886
Will Deaconadfed152011-02-28 10:12:29 +0000887 chained_irq_enter(host_chip, desc);
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100888
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100889 nmk_chip = irq_get_handler_data(irq);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530890 while (status) {
891 int bit = __ffs(status);
892
Linus Walleij95f0bc92012-09-27 14:14:09 +0200893 generic_handle_irq(irq_find_mapping(nmk_chip->domain, bit));
Rabin Vincent33b744b2010-10-14 10:38:03 +0530894 status &= ~BIT(bit);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100895 }
Rabin Vincentaaedaa22010-03-03 04:50:27 +0100896
Will Deaconadfed152011-02-28 10:12:29 +0000897 chained_irq_exit(host_chip, desc);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100898}
899
Rabin Vincent33b744b2010-10-14 10:38:03 +0530900static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
901{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100902 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200903 u32 status;
904
905 clk_enable(nmk_chip->clk);
906 status = readl(nmk_chip->addr + NMK_GPIO_IS);
907 clk_disable(nmk_chip->clk);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530908
909 __nmk_gpio_irq_handler(irq, desc, status);
910}
911
912static void nmk_gpio_secondary_irq_handler(unsigned int irq,
913 struct irq_desc *desc)
914{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100915 struct nmk_gpio_chip *nmk_chip = irq_get_handler_data(irq);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530916 u32 status = nmk_chip->get_secondary_status(nmk_chip->bank);
917
918 __nmk_gpio_irq_handler(irq, desc, status);
919}
920
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100921static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
922{
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100923 irq_set_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
924 irq_set_handler_data(nmk_chip->parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530925
926 if (nmk_chip->secondary_parent_irq >= 0) {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100927 irq_set_chained_handler(nmk_chip->secondary_parent_irq,
Rabin Vincent33b744b2010-10-14 10:38:03 +0530928 nmk_gpio_secondary_irq_handler);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100929 irq_set_handler_data(nmk_chip->secondary_parent_irq, nmk_chip);
Rabin Vincent33b744b2010-10-14 10:38:03 +0530930 }
931
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100932 return 0;
933}
934
935/* I/O Functions */
Linus Walleijdbfe8ca2012-05-02 22:56:47 +0200936
937static int nmk_gpio_request(struct gpio_chip *chip, unsigned offset)
938{
939 /*
940 * Map back to global GPIO space and request muxing, the direction
941 * parameter does not matter for this controller.
942 */
943 int gpio = chip->base + offset;
944
945 return pinctrl_request_gpio(gpio);
946}
947
948static void nmk_gpio_free(struct gpio_chip *chip, unsigned offset)
949{
950 int gpio = chip->base + offset;
951
952 pinctrl_free_gpio(gpio);
953}
954
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100955static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
956{
957 struct nmk_gpio_chip *nmk_chip =
958 container_of(chip, struct nmk_gpio_chip, chip);
959
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200960 clk_enable(nmk_chip->clk);
961
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100962 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200963
964 clk_disable(nmk_chip->clk);
965
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100966 return 0;
967}
968
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100969static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
970{
971 struct nmk_gpio_chip *nmk_chip =
972 container_of(chip, struct nmk_gpio_chip, chip);
973 u32 bit = 1 << offset;
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200974 int value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100975
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200976 clk_enable(nmk_chip->clk);
977
978 value = (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
979
980 clk_disable(nmk_chip->clk);
981
982 return value;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100983}
984
985static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
986 int val)
987{
988 struct nmk_gpio_chip *nmk_chip =
989 container_of(chip, struct nmk_gpio_chip, chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100990
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200991 clk_enable(nmk_chip->clk);
992
Rabin Vincent6720db72010-09-02 11:28:48 +0100993 __nmk_gpio_set_output(nmk_chip, offset, val);
Rabin Vincent3c0227d2011-09-20 10:50:03 +0200994
995 clk_disable(nmk_chip->clk);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +0100996}
997
Rabin Vincent6647c6c2010-05-27 12:22:42 +0100998static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
999 int val)
1000{
1001 struct nmk_gpio_chip *nmk_chip =
1002 container_of(chip, struct nmk_gpio_chip, chip);
1003
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001004 clk_enable(nmk_chip->clk);
1005
Rabin Vincent6720db72010-09-02 11:28:48 +01001006 __nmk_gpio_make_output(nmk_chip, offset, val);
Rabin Vincent6647c6c2010-05-27 12:22:42 +01001007
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001008 clk_disable(nmk_chip->clk);
1009
Rabin Vincent6647c6c2010-05-27 12:22:42 +01001010 return 0;
1011}
1012
Rabin Vincent0d2aec92010-06-16 06:10:43 +01001013static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
1014{
1015 struct nmk_gpio_chip *nmk_chip =
1016 container_of(chip, struct nmk_gpio_chip, chip);
1017
Linus Walleij268300b2012-10-19 17:06:54 +02001018 return irq_create_mapping(nmk_chip->domain, offset);
Rabin Vincent0d2aec92010-06-16 06:10:43 +01001019}
1020
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301021#ifdef CONFIG_DEBUG_FS
1022
1023#include <linux/seq_file.h>
1024
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001025static void nmk_gpio_dbg_show_one(struct seq_file *s,
1026 struct pinctrl_dev *pctldev, struct gpio_chip *chip,
1027 unsigned offset, unsigned gpio)
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301028{
Linus Walleij6f4350a2012-05-02 21:06:13 +02001029 const char *label = gpiochip_is_requested(chip, offset);
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301030 struct nmk_gpio_chip *nmk_chip =
1031 container_of(chip, struct nmk_gpio_chip, chip);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001032 int mode;
1033 bool is_out;
1034 bool pull;
1035 u32 bit = 1 << offset;
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301036 const char *modes[] = {
1037 [NMK_GPIO_ALT_GPIO] = "gpio",
1038 [NMK_GPIO_ALT_A] = "altA",
1039 [NMK_GPIO_ALT_B] = "altB",
1040 [NMK_GPIO_ALT_C] = "altC",
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001041 [NMK_GPIO_ALT_C+1] = "altC1",
1042 [NMK_GPIO_ALT_C+2] = "altC2",
1043 [NMK_GPIO_ALT_C+3] = "altC3",
1044 [NMK_GPIO_ALT_C+4] = "altC4",
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301045 };
1046
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001047 clk_enable(nmk_chip->clk);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001048 is_out = !!(readl(nmk_chip->addr + NMK_GPIO_DIR) & bit);
1049 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
1050 mode = nmk_gpio_get_mode(gpio);
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001051 if ((mode == NMK_GPIO_ALT_C) && pctldev)
1052 mode = nmk_prcm_gpiocr_get_mode(pctldev, gpio);
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001053
Linus Walleij6f4350a2012-05-02 21:06:13 +02001054 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
1055 gpio, label ?: "(none)",
1056 is_out ? "out" : "in ",
1057 chip->get
1058 ? (chip->get(chip, offset) ? "hi" : "lo")
1059 : "? ",
1060 (mode < 0) ? "unknown" : modes[mode],
1061 pull ? "pull" : "none");
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301062
Linus Walleij47058452013-11-14 19:51:18 +01001063 if (!is_out) {
1064 int irq = gpio_to_irq(gpio);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001065 struct irq_desc *desc = irq_to_desc(irq);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001066
Linus Walleij6f4350a2012-05-02 21:06:13 +02001067 /* This races with request_irq(), set_irq_type(),
1068 * and set_irq_wake() ... but those are "rare".
1069 */
Linus Walleij47058452013-11-14 19:51:18 +01001070 if (irq > 0 && desc && desc->action) {
Linus Walleij6f4350a2012-05-02 21:06:13 +02001071 char *trigger;
1072 u32 bitmask = nmk_gpio_get_bitmask(gpio);
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001073
Linus Walleij6f4350a2012-05-02 21:06:13 +02001074 if (nmk_chip->edge_rising & bitmask)
1075 trigger = "edge-rising";
1076 else if (nmk_chip->edge_falling & bitmask)
1077 trigger = "edge-falling";
1078 else
1079 trigger = "edge-undefined";
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001080
Linus Walleij6f4350a2012-05-02 21:06:13 +02001081 seq_printf(s, " irq-%d %s%s",
1082 irq, trigger,
1083 irqd_is_wakeup_set(&desc->irq_data)
1084 ? " wakeup" : "");
Rabin Vincent8ea72a32011-05-24 23:07:09 +02001085 }
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301086 }
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001087 clk_disable(nmk_chip->clk);
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301088}
1089
Linus Walleij6f4350a2012-05-02 21:06:13 +02001090static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
1091{
1092 unsigned i;
1093 unsigned gpio = chip->base;
1094
1095 for (i = 0; i < chip->ngpio; i++, gpio++) {
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001096 nmk_gpio_dbg_show_one(s, NULL, chip, i, gpio);
Linus Walleij6f4350a2012-05-02 21:06:13 +02001097 seq_printf(s, "\n");
1098 }
1099}
1100
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301101#else
Linus Walleij6f4350a2012-05-02 21:06:13 +02001102static inline void nmk_gpio_dbg_show_one(struct seq_file *s,
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001103 struct pinctrl_dev *pctldev,
Linus Walleij6f4350a2012-05-02 21:06:13 +02001104 struct gpio_chip *chip,
1105 unsigned offset, unsigned gpio)
1106{
1107}
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301108#define nmk_gpio_dbg_show NULL
1109#endif
1110
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001111/* This structure is replicated for each GPIO block allocated at probe time */
1112static struct gpio_chip nmk_gpio_template = {
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001113 .request = nmk_gpio_request,
1114 .free = nmk_gpio_free,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001115 .direction_input = nmk_gpio_make_input,
1116 .get = nmk_gpio_get_input,
1117 .direction_output = nmk_gpio_make_output,
1118 .set = nmk_gpio_set_output,
Rabin Vincent0d2aec92010-06-16 06:10:43 +01001119 .to_irq = nmk_gpio_to_irq,
Rabin Vincentd0b543c2010-03-04 17:39:05 +05301120 .dbg_show = nmk_gpio_dbg_show,
Linus Walleij9fb1f392013-12-04 14:42:46 +01001121 .can_sleep = false,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001122};
1123
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001124void nmk_gpio_clocks_enable(void)
1125{
1126 int i;
1127
1128 for (i = 0; i < NUM_BANKS; i++) {
1129 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1130
1131 if (!chip)
1132 continue;
1133
1134 clk_enable(chip->clk);
1135 }
1136}
1137
1138void nmk_gpio_clocks_disable(void)
1139{
1140 int i;
1141
1142 for (i = 0; i < NUM_BANKS; i++) {
1143 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1144
1145 if (!chip)
1146 continue;
1147
1148 clk_disable(chip->clk);
1149 }
1150}
1151
Rabin Vincentb9df4682011-02-10 11:45:58 +05301152/*
1153 * Called from the suspend/resume path to only keep the real wakeup interrupts
1154 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
1155 * and not the rest of the interrupts which we needed to have as wakeups for
1156 * cpuidle.
1157 *
1158 * PM ops are not used since this needs to be done at the end, after all the
1159 * other drivers are done with their suspend callbacks.
1160 */
1161void nmk_gpio_wakeups_suspend(void)
1162{
1163 int i;
1164
1165 for (i = 0; i < NUM_BANKS; i++) {
1166 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1167
1168 if (!chip)
1169 break;
1170
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001171 clk_enable(chip->clk);
1172
Rabin Vincentb9df4682011-02-10 11:45:58 +05301173 writel(chip->rwimsc & chip->real_wake,
1174 chip->addr + NMK_GPIO_RWIMSC);
1175 writel(chip->fwimsc & chip->real_wake,
1176 chip->addr + NMK_GPIO_FWIMSC);
1177
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001178 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301179 }
1180}
1181
1182void nmk_gpio_wakeups_resume(void)
1183{
1184 int i;
1185
1186 for (i = 0; i < NUM_BANKS; i++) {
1187 struct nmk_gpio_chip *chip = nmk_gpio_chips[i];
1188
1189 if (!chip)
1190 break;
1191
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001192 clk_enable(chip->clk);
1193
Rabin Vincentb9df4682011-02-10 11:45:58 +05301194 writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC);
1195 writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC);
1196
Rabin Vincent3c0227d2011-09-20 10:50:03 +02001197 clk_disable(chip->clk);
Rabin Vincentb9df4682011-02-10 11:45:58 +05301198 }
1199}
1200
Rickard Anderssonbc6f5cf2011-05-24 23:07:17 +02001201/*
1202 * Read the pull up/pull down status.
1203 * A bit set in 'pull_up' means that pull up
1204 * is selected if pull is enabled in PDIS register.
1205 * Note: only pull up/down set via this driver can
1206 * be detected due to HW limitations.
1207 */
1208void nmk_gpio_read_pull(int gpio_bank, u32 *pull_up)
1209{
1210 if (gpio_bank < NUM_BANKS) {
1211 struct nmk_gpio_chip *chip = nmk_gpio_chips[gpio_bank];
1212
1213 if (!chip)
1214 return;
1215
1216 *pull_up = chip->pull_up;
1217 }
1218}
1219
Axel Lin5212d092012-11-16 00:01:35 +08001220static int nmk_gpio_irq_map(struct irq_domain *d, unsigned int irq,
1221 irq_hw_number_t hwirq)
Lee Jonesa60b57e2012-04-19 21:36:31 +01001222{
1223 struct nmk_gpio_chip *nmk_chip = d->host_data;
1224
1225 if (!nmk_chip)
1226 return -EINVAL;
1227
1228 irq_set_chip_and_handler(irq, &nmk_gpio_irq_chip, handle_edge_irq);
1229 set_irq_flags(irq, IRQF_VALID);
1230 irq_set_chip_data(irq, nmk_chip);
1231 irq_set_irq_type(irq, IRQ_TYPE_EDGE_FALLING);
1232
1233 return 0;
1234}
1235
Sachin Kamat2230a36e2013-06-18 14:34:25 +05301236static const struct irq_domain_ops nmk_gpio_irq_simple_ops = {
Lee Jonesa60b57e2012-04-19 21:36:31 +01001237 .map = nmk_gpio_irq_map,
1238 .xlate = irq_domain_xlate_twocell,
1239};
1240
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001241static int nmk_gpio_probe(struct platform_device *dev)
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001242{
Linus Walleijf4b3f522013-11-19 23:21:04 +01001243 struct nmk_gpio_platform_data *pdata;
Lee Jones513c27f2012-04-13 15:05:05 +01001244 struct device_node *np = dev->dev.of_node;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001245 struct nmk_gpio_chip *nmk_chip;
1246 struct gpio_chip *chip;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001247 struct resource *res;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001248 struct clk *clk;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301249 int secondary_irq;
Linus Walleij8d917712012-04-17 10:15:54 +02001250 void __iomem *base;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001251 int irq;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001252 int ret;
1253
Linus Walleijf4b3f522013-11-19 23:21:04 +01001254 pdata = devm_kzalloc(&dev->dev, sizeof(*pdata), GFP_KERNEL);
1255 if (!pdata)
1256 return -ENOMEM;
1257
1258 if (of_get_property(np, "st,supports-sleepmode", NULL))
1259 pdata->supports_sleepmode = true;
1260
1261 if (of_property_read_u32(np, "gpio-bank", &dev->id)) {
1262 dev_err(&dev->dev, "gpio-bank property not found\n");
1263 return -EINVAL;
Lee Jones513c27f2012-04-13 15:05:05 +01001264 }
1265
Linus Walleijf4b3f522013-11-19 23:21:04 +01001266 pdata->first_gpio = dev->id * NMK_GPIO_PER_CHIP;
1267 pdata->num_gpio = NMK_GPIO_PER_CHIP;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001268
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001269 irq = platform_get_irq(dev, 0);
Linus Walleij50f690d2013-01-07 14:04:56 +01001270 if (irq < 0)
1271 return irq;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001272
Rabin Vincent33b744b2010-10-14 10:38:03 +05301273 secondary_irq = platform_get_irq(dev, 1);
Linus Walleij50f690d2013-01-07 14:04:56 +01001274 if (secondary_irq >= 0 && !pdata->get_secondary_status)
1275 return -EINVAL;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301276
Julia Lawall690ebab2013-08-14 11:11:05 +02001277 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding9e0c1fb2013-01-21 11:09:14 +01001278 base = devm_ioremap_resource(&dev->dev, res);
Linus Torvalds06991c22013-02-21 12:05:51 -08001279 if (IS_ERR(base))
1280 return PTR_ERR(base);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001281
Linus Walleij5e754f32012-07-03 23:05:14 +02001282 clk = devm_clk_get(&dev->dev, NULL);
Linus Walleij50f690d2013-01-07 14:04:56 +01001283 if (IS_ERR(clk))
1284 return PTR_ERR(clk);
Linus Walleijefec3812012-06-06 22:50:41 +02001285 clk_prepare(clk);
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001286
Linus Walleij5e754f32012-07-03 23:05:14 +02001287 nmk_chip = devm_kzalloc(&dev->dev, sizeof(*nmk_chip), GFP_KERNEL);
Linus Walleij50f690d2013-01-07 14:04:56 +01001288 if (!nmk_chip)
1289 return -ENOMEM;
Lee Jones513c27f2012-04-13 15:05:05 +01001290
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001291 /*
1292 * The virt address in nmk_chip->addr is in the nomadik register space,
1293 * so we can simply convert the resource address, without remapping
1294 */
Rabin Vincent33b744b2010-10-14 10:38:03 +05301295 nmk_chip->bank = dev->id;
Rabin Vincentaf7dc222010-05-06 11:14:17 +01001296 nmk_chip->clk = clk;
Linus Walleij8d917712012-04-17 10:15:54 +02001297 nmk_chip->addr = base;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001298 nmk_chip->chip = nmk_gpio_template;
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001299 nmk_chip->parent_irq = irq;
Rabin Vincent33b744b2010-10-14 10:38:03 +05301300 nmk_chip->secondary_parent_irq = secondary_irq;
1301 nmk_chip->get_secondary_status = pdata->get_secondary_status;
Rabin Vincent01727e62010-12-13 12:02:40 +05301302 nmk_chip->set_ioforce = pdata->set_ioforce;
Linus Walleij33d78642011-06-09 11:08:47 +02001303 nmk_chip->sleepmode = pdata->supports_sleepmode;
Rabin Vincentc0fcb8d2010-03-03 04:48:54 +01001304 spin_lock_init(&nmk_chip->lock);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001305
1306 chip = &nmk_chip->chip;
1307 chip->base = pdata->first_gpio;
Rabin Vincente493e062010-03-18 12:35:22 +05301308 chip->ngpio = pdata->num_gpio;
Rabin Vincent8d568ae2010-12-08 11:07:54 +05301309 chip->label = pdata->name ?: dev_name(&dev->dev);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001310 chip->dev = &dev->dev;
1311 chip->owner = THIS_MODULE;
1312
Rabin Vincentebc61782011-09-28 15:49:11 +05301313 clk_enable(nmk_chip->clk);
1314 nmk_chip->lowemi = readl_relaxed(nmk_chip->addr + NMK_GPIO_LOWEMI);
1315 clk_disable(nmk_chip->clk);
Lee Jones513c27f2012-04-13 15:05:05 +01001316 chip->of_node = np;
1317
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001318 ret = gpiochip_add(&nmk_chip->chip);
1319 if (ret)
Linus Walleij50f690d2013-01-07 14:04:56 +01001320 return ret;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001321
Rabin Vincent01727e62010-12-13 12:02:40 +05301322 BUG_ON(nmk_chip->bank >= ARRAY_SIZE(nmk_gpio_chips));
1323
1324 nmk_gpio_chips[nmk_chip->bank] = nmk_chip;
Lee Jones513c27f2012-04-13 15:05:05 +01001325
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01001326 platform_set_drvdata(dev, nmk_chip);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001327
Linus Walleij38843e22012-10-23 11:44:42 +02001328 nmk_chip->domain = irq_domain_add_simple(np,
Linus Walleijf4b3f522013-11-19 23:21:04 +01001329 NMK_GPIO_PER_CHIP, 0,
Linus Walleij6054b9c2012-09-26 19:03:51 +02001330 &nmk_gpio_irq_simple_ops, nmk_chip);
Lee Jonesa60b57e2012-04-19 21:36:31 +01001331 if (!nmk_chip->domain) {
Linus Walleij2ee38d42012-08-10 11:07:51 +02001332 dev_err(&dev->dev, "failed to create irqdomain\n");
Linus Walleij50f690d2013-01-07 14:04:56 +01001333 /* Just do this, no matter if it fails */
1334 ret = gpiochip_remove(&nmk_chip->chip);
1335 return -ENOSYS;
Lee Jonesa60b57e2012-04-19 21:36:31 +01001336 }
1337
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001338 nmk_gpio_init_irq(nmk_chip);
1339
Lee Jones513c27f2012-04-13 15:05:05 +01001340 dev_info(&dev->dev, "at address %p\n", nmk_chip->addr);
1341
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001342 return 0;
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01001343}
1344
Linus Walleije98ea772012-04-26 23:57:25 +02001345static int nmk_get_groups_cnt(struct pinctrl_dev *pctldev)
1346{
1347 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1348
1349 return npct->soc->ngroups;
1350}
1351
1352static const char *nmk_get_group_name(struct pinctrl_dev *pctldev,
1353 unsigned selector)
1354{
1355 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1356
1357 return npct->soc->groups[selector].name;
1358}
1359
1360static int nmk_get_group_pins(struct pinctrl_dev *pctldev, unsigned selector,
1361 const unsigned **pins,
1362 unsigned *num_pins)
1363{
1364 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1365
1366 *pins = npct->soc->groups[selector].pins;
1367 *num_pins = npct->soc->groups[selector].npins;
1368 return 0;
1369}
1370
Linus Walleij24cbdd72012-05-02 21:28:00 +02001371static struct pinctrl_gpio_range *
1372nmk_match_gpio_range(struct pinctrl_dev *pctldev, unsigned offset)
1373{
1374 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1375 int i;
1376
1377 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
1378 struct pinctrl_gpio_range *range;
1379
1380 range = &npct->soc->gpio_ranges[i];
1381 if (offset >= range->pin_base &&
1382 offset <= (range->pin_base + range->npins - 1))
1383 return range;
1384 }
1385 return NULL;
1386}
1387
Linus Walleije98ea772012-04-26 23:57:25 +02001388static void nmk_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
1389 unsigned offset)
1390{
Linus Walleij24cbdd72012-05-02 21:28:00 +02001391 struct pinctrl_gpio_range *range;
1392 struct gpio_chip *chip;
1393
1394 range = nmk_match_gpio_range(pctldev, offset);
1395 if (!range || !range->gc) {
1396 seq_printf(s, "invalid pin offset");
1397 return;
1398 }
1399 chip = range->gc;
Jean-Nicolas Graux2249b192012-10-15 09:47:05 +02001400 nmk_gpio_dbg_show_one(s, pctldev, chip, offset - chip->base, offset);
Linus Walleije98ea772012-04-26 23:57:25 +02001401}
1402
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001403static void nmk_pinctrl_dt_free_map(struct pinctrl_dev *pctldev,
1404 struct pinctrl_map *map, unsigned num_maps)
1405{
1406 int i;
1407
1408 for (i = 0; i < num_maps; i++)
1409 if (map[i].type == PIN_MAP_TYPE_CONFIGS_PIN)
1410 kfree(map[i].data.configs.configs);
1411 kfree(map);
1412}
1413
1414static int nmk_dt_reserve_map(struct pinctrl_map **map, unsigned *reserved_maps,
1415 unsigned *num_maps, unsigned reserve)
1416{
1417 unsigned old_num = *reserved_maps;
1418 unsigned new_num = *num_maps + reserve;
1419 struct pinctrl_map *new_map;
1420
1421 if (old_num >= new_num)
1422 return 0;
1423
1424 new_map = krealloc(*map, sizeof(*new_map) * new_num, GFP_KERNEL);
1425 if (!new_map)
1426 return -ENOMEM;
1427
1428 memset(new_map + old_num, 0, (new_num - old_num) * sizeof(*new_map));
1429
1430 *map = new_map;
1431 *reserved_maps = new_num;
1432
1433 return 0;
1434}
1435
1436static int nmk_dt_add_map_mux(struct pinctrl_map **map, unsigned *reserved_maps,
1437 unsigned *num_maps, const char *group,
1438 const char *function)
1439{
1440 if (*num_maps == *reserved_maps)
1441 return -ENOSPC;
1442
1443 (*map)[*num_maps].type = PIN_MAP_TYPE_MUX_GROUP;
1444 (*map)[*num_maps].data.mux.group = group;
1445 (*map)[*num_maps].data.mux.function = function;
1446 (*num_maps)++;
1447
1448 return 0;
1449}
1450
1451static int nmk_dt_add_map_configs(struct pinctrl_map **map,
1452 unsigned *reserved_maps,
1453 unsigned *num_maps, const char *group,
1454 unsigned long *configs, unsigned num_configs)
1455{
1456 unsigned long *dup_configs;
1457
1458 if (*num_maps == *reserved_maps)
1459 return -ENOSPC;
1460
1461 dup_configs = kmemdup(configs, num_configs * sizeof(*dup_configs),
1462 GFP_KERNEL);
1463 if (!dup_configs)
1464 return -ENOMEM;
1465
1466 (*map)[*num_maps].type = PIN_MAP_TYPE_CONFIGS_PIN;
1467
1468 (*map)[*num_maps].data.configs.group_or_pin = group;
1469 (*map)[*num_maps].data.configs.configs = dup_configs;
1470 (*map)[*num_maps].data.configs.num_configs = num_configs;
1471 (*num_maps)++;
1472
1473 return 0;
1474}
1475
Sachin Kamat87ff9342013-03-14 17:24:44 +05301476#define NMK_CONFIG_PIN(x, y) { .property = x, .config = y, }
1477#define NMK_CONFIG_PIN_ARRAY(x, y) { .property = x, .choice = y, \
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001478 .size = ARRAY_SIZE(y), }
1479
1480static const unsigned long nmk_pin_input_modes[] = {
1481 PIN_INPUT_NOPULL,
1482 PIN_INPUT_PULLUP,
1483 PIN_INPUT_PULLDOWN,
1484};
1485
1486static const unsigned long nmk_pin_output_modes[] = {
1487 PIN_OUTPUT_LOW,
1488 PIN_OUTPUT_HIGH,
1489 PIN_DIR_OUTPUT,
1490};
1491
1492static const unsigned long nmk_pin_sleep_modes[] = {
1493 PIN_SLEEPMODE_DISABLED,
1494 PIN_SLEEPMODE_ENABLED,
1495};
1496
1497static const unsigned long nmk_pin_sleep_input_modes[] = {
1498 PIN_SLPM_INPUT_NOPULL,
1499 PIN_SLPM_INPUT_PULLUP,
1500 PIN_SLPM_INPUT_PULLDOWN,
1501 PIN_SLPM_DIR_INPUT,
1502};
1503
1504static const unsigned long nmk_pin_sleep_output_modes[] = {
1505 PIN_SLPM_OUTPUT_LOW,
1506 PIN_SLPM_OUTPUT_HIGH,
1507 PIN_SLPM_DIR_OUTPUT,
1508};
1509
1510static const unsigned long nmk_pin_sleep_wakeup_modes[] = {
1511 PIN_SLPM_WAKEUP_DISABLE,
1512 PIN_SLPM_WAKEUP_ENABLE,
1513};
1514
1515static const unsigned long nmk_pin_gpio_modes[] = {
1516 PIN_GPIOMODE_DISABLED,
1517 PIN_GPIOMODE_ENABLED,
1518};
1519
1520static const unsigned long nmk_pin_sleep_pdis_modes[] = {
1521 PIN_SLPM_PDIS_DISABLED,
1522 PIN_SLPM_PDIS_ENABLED,
1523};
1524
1525struct nmk_cfg_param {
1526 const char *property;
1527 unsigned long config;
1528 const unsigned long *choice;
1529 int size;
1530};
1531
1532static const struct nmk_cfg_param nmk_cfg_params[] = {
1533 NMK_CONFIG_PIN_ARRAY("ste,input", nmk_pin_input_modes),
1534 NMK_CONFIG_PIN_ARRAY("ste,output", nmk_pin_output_modes),
1535 NMK_CONFIG_PIN_ARRAY("ste,sleep", nmk_pin_sleep_modes),
1536 NMK_CONFIG_PIN_ARRAY("ste,sleep-input", nmk_pin_sleep_input_modes),
1537 NMK_CONFIG_PIN_ARRAY("ste,sleep-output", nmk_pin_sleep_output_modes),
1538 NMK_CONFIG_PIN_ARRAY("ste,sleep-wakeup", nmk_pin_sleep_wakeup_modes),
1539 NMK_CONFIG_PIN_ARRAY("ste,gpio", nmk_pin_gpio_modes),
1540 NMK_CONFIG_PIN_ARRAY("ste,sleep-pull-disable", nmk_pin_sleep_pdis_modes),
1541};
1542
1543static int nmk_dt_pin_config(int index, int val, unsigned long *config)
1544{
1545 int ret = 0;
1546
1547 if (nmk_cfg_params[index].choice == NULL)
1548 *config = nmk_cfg_params[index].config;
1549 else {
1550 /* test if out of range */
1551 if (val < nmk_cfg_params[index].size) {
1552 *config = nmk_cfg_params[index].config |
1553 nmk_cfg_params[index].choice[val];
1554 }
1555 }
1556 return ret;
1557}
1558
1559static const char *nmk_find_pin_name(struct pinctrl_dev *pctldev, const char *pin_name)
1560{
1561 int i, pin_number;
1562 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1563
1564 if (sscanf((char *)pin_name, "GPIO%d", &pin_number) == 1)
1565 for (i = 0; i < npct->soc->npins; i++)
1566 if (npct->soc->pins[i].number == pin_number)
1567 return npct->soc->pins[i].name;
1568 return NULL;
1569}
1570
1571static bool nmk_pinctrl_dt_get_config(struct device_node *np,
1572 unsigned long *configs)
1573{
1574 bool has_config = 0;
1575 unsigned long cfg = 0;
1576 int i, val, ret;
1577
1578 for (i = 0; i < ARRAY_SIZE(nmk_cfg_params); i++) {
1579 ret = of_property_read_u32(np,
1580 nmk_cfg_params[i].property, &val);
1581 if (ret != -EINVAL) {
1582 if (nmk_dt_pin_config(i, val, &cfg) == 0) {
1583 *configs |= cfg;
1584 has_config = 1;
1585 }
1586 }
1587 }
1588
1589 return has_config;
1590}
1591
Sachin Kamat2230a36e2013-06-18 14:34:25 +05301592static int nmk_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001593 struct device_node *np,
1594 struct pinctrl_map **map,
1595 unsigned *reserved_maps,
1596 unsigned *num_maps)
1597{
1598 int ret;
1599 const char *function = NULL;
1600 unsigned long configs = 0;
1601 bool has_config = 0;
1602 unsigned reserve = 0;
1603 struct property *prop;
1604 const char *group, *gpio_name;
1605 struct device_node *np_config;
1606
1607 ret = of_property_read_string(np, "ste,function", &function);
1608 if (ret >= 0)
1609 reserve = 1;
1610
1611 has_config = nmk_pinctrl_dt_get_config(np, &configs);
1612
1613 np_config = of_parse_phandle(np, "ste,config", 0);
1614 if (np_config)
1615 has_config |= nmk_pinctrl_dt_get_config(np_config, &configs);
1616
1617 ret = of_property_count_strings(np, "ste,pins");
1618 if (ret < 0)
1619 goto exit;
1620
1621 if (has_config)
1622 reserve++;
1623
1624 reserve *= ret;
1625
1626 ret = nmk_dt_reserve_map(map, reserved_maps, num_maps, reserve);
1627 if (ret < 0)
1628 goto exit;
1629
1630 of_property_for_each_string(np, "ste,pins", prop, group) {
1631 if (function) {
1632 ret = nmk_dt_add_map_mux(map, reserved_maps, num_maps,
1633 group, function);
1634 if (ret < 0)
1635 goto exit;
1636 }
1637 if (has_config) {
1638 gpio_name = nmk_find_pin_name(pctldev, group);
1639
1640 ret = nmk_dt_add_map_configs(map, reserved_maps, num_maps,
1641 gpio_name, &configs, 1);
1642 if (ret < 0)
1643 goto exit;
1644 }
1645
1646 }
1647exit:
1648 return ret;
1649}
1650
Sachin Kamat2230a36e2013-06-18 14:34:25 +05301651static int nmk_pinctrl_dt_node_to_map(struct pinctrl_dev *pctldev,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001652 struct device_node *np_config,
1653 struct pinctrl_map **map, unsigned *num_maps)
1654{
1655 unsigned reserved_maps;
1656 struct device_node *np;
1657 int ret;
1658
1659 reserved_maps = 0;
1660 *map = NULL;
1661 *num_maps = 0;
1662
1663 for_each_child_of_node(np_config, np) {
1664 ret = nmk_pinctrl_dt_subnode_to_map(pctldev, np, map,
1665 &reserved_maps, num_maps);
1666 if (ret < 0) {
1667 nmk_pinctrl_dt_free_map(pctldev, *map, *num_maps);
1668 return ret;
1669 }
1670 }
1671
1672 return 0;
1673}
1674
Laurent Pinchart022ab142013-02-16 10:25:07 +01001675static const struct pinctrl_ops nmk_pinctrl_ops = {
Linus Walleije98ea772012-04-26 23:57:25 +02001676 .get_groups_count = nmk_get_groups_cnt,
1677 .get_group_name = nmk_get_group_name,
1678 .get_group_pins = nmk_get_group_pins,
1679 .pin_dbg_show = nmk_pin_dbg_show,
Gabriel Fernandeze32af882012-12-17 15:53:24 +01001680 .dt_node_to_map = nmk_pinctrl_dt_node_to_map,
1681 .dt_free_map = nmk_pinctrl_dt_free_map,
Linus Walleije98ea772012-04-26 23:57:25 +02001682};
1683
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001684static int nmk_pmx_get_funcs_cnt(struct pinctrl_dev *pctldev)
1685{
1686 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1687
1688 return npct->soc->nfunctions;
1689}
1690
1691static const char *nmk_pmx_get_func_name(struct pinctrl_dev *pctldev,
1692 unsigned function)
1693{
1694 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1695
1696 return npct->soc->functions[function].name;
1697}
1698
1699static int nmk_pmx_get_func_groups(struct pinctrl_dev *pctldev,
1700 unsigned function,
1701 const char * const **groups,
1702 unsigned * const num_groups)
1703{
1704 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1705
1706 *groups = npct->soc->functions[function].groups;
1707 *num_groups = npct->soc->functions[function].ngroups;
1708
1709 return 0;
1710}
1711
1712static int nmk_pmx_enable(struct pinctrl_dev *pctldev, unsigned function,
1713 unsigned group)
1714{
1715 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1716 const struct nmk_pingroup *g;
1717 static unsigned int slpm[NUM_BANKS];
Linus Walleijf84b4172013-08-15 21:26:26 +02001718 unsigned long flags = 0;
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001719 bool glitch;
1720 int ret = -EINVAL;
1721 int i;
1722
1723 g = &npct->soc->groups[group];
1724
1725 if (g->altsetting < 0)
1726 return -EINVAL;
1727
1728 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins);
1729
Linus Walleijdaf73172012-05-22 11:46:45 +02001730 /*
1731 * If we're setting altfunc C by setting both AFSLA and AFSLB to 1,
1732 * we may pass through an undesired state. In this case we take
1733 * some extra care.
1734 *
1735 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
1736 * - Save SLPM registers (since we have a shadow register in the
1737 * nmk_chip we're using that as backup)
1738 * - Set SLPM=0 for the IOs you want to switch and others to 1
1739 * - Configure the GPIO registers for the IOs that are being switched
1740 * - Set IOFORCE=1
1741 * - Modify the AFLSA/B registers for the IOs that are being switched
1742 * - Set IOFORCE=0
1743 * - Restore SLPM registers
1744 * - Any spurious wake up event during switch sequence to be ignored
1745 * and cleared
1746 *
1747 * We REALLY need to save ALL slpm registers, because the external
1748 * IOFORCE will switch *all* ports to their sleepmode setting to as
1749 * to avoid glitches. (Not just one port!)
1750 */
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001751 glitch = ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001752
1753 if (glitch) {
1754 spin_lock_irqsave(&nmk_gpio_slpm_lock, flags);
1755
1756 /* Initially don't put any pins to sleep when switching */
1757 memset(slpm, 0xff, sizeof(slpm));
1758
1759 /*
1760 * Then mask the pins that need to be sleeping now when we're
1761 * switching to the ALT C function.
1762 */
1763 for (i = 0; i < g->npins; i++)
1764 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]);
1765 nmk_gpio_glitch_slpm_init(slpm);
1766 }
1767
1768 for (i = 0; i < g->npins; i++) {
1769 struct pinctrl_gpio_range *range;
1770 struct nmk_gpio_chip *nmk_chip;
1771 struct gpio_chip *chip;
1772 unsigned bit;
1773
1774 range = nmk_match_gpio_range(pctldev, g->pins[i]);
1775 if (!range) {
1776 dev_err(npct->dev,
1777 "invalid pin offset %d in group %s at index %d\n",
1778 g->pins[i], g->name, i);
1779 goto out_glitch;
1780 }
1781 if (!range->gc) {
1782 dev_err(npct->dev, "GPIO chip missing in range for pin offset %d in group %s at index %d\n",
1783 g->pins[i], g->name, i);
1784 goto out_glitch;
1785 }
1786 chip = range->gc;
1787 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1788 dev_dbg(npct->dev, "setting pin %d to altsetting %d\n", g->pins[i], g->altsetting);
1789
1790 clk_enable(nmk_chip->clk);
1791 bit = g->pins[i] % NMK_GPIO_PER_CHIP;
1792 /*
1793 * If the pin is switching to altfunc, and there was an
1794 * interrupt installed on it which has been lazy disabled,
1795 * actually mask the interrupt to prevent spurious interrupts
1796 * that would occur while the pin is under control of the
1797 * peripheral. Only SKE does this.
1798 */
1799 nmk_gpio_disable_lazy_irq(nmk_chip, bit);
1800
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001801 __nmk_gpio_set_mode_safe(nmk_chip, bit,
1802 (g->altsetting & NMK_GPIO_ALT_C), glitch);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001803 clk_disable(nmk_chip->clk);
Jean-Nicolas Grauxc22df082012-09-27 15:38:50 +02001804
1805 /*
1806 * Call PRCM GPIOCR config function in case ALTC
1807 * has been selected:
1808 * - If selection is a ALTCx, some bits in PRCM GPIOCR registers
1809 * must be set.
1810 * - If selection is pure ALTC and previous selection was ALTCx,
1811 * then some bits in PRCM GPIOCR registers must be cleared.
1812 */
1813 if ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C)
1814 nmk_prcm_altcx_set_mode(npct, g->pins[i],
1815 g->altsetting >> NMK_GPIO_ALT_CX_SHIFT);
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001816 }
1817
1818 /* When all pins are successfully reconfigured we get here */
1819 ret = 0;
1820
1821out_glitch:
1822 if (glitch) {
1823 nmk_gpio_glitch_slpm_restore(slpm);
1824 spin_unlock_irqrestore(&nmk_gpio_slpm_lock, flags);
1825 }
1826
1827 return ret;
1828}
1829
1830static void nmk_pmx_disable(struct pinctrl_dev *pctldev,
1831 unsigned function, unsigned group)
1832{
1833 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1834 const struct nmk_pingroup *g;
1835
1836 g = &npct->soc->groups[group];
1837
1838 if (g->altsetting < 0)
1839 return;
1840
1841 /* Poke out the mux, set the pin to some default state? */
1842 dev_dbg(npct->dev, "disable group %s, %u pins\n", g->name, g->npins);
1843}
1844
Axel Lin5212d092012-11-16 00:01:35 +08001845static int nmk_gpio_request_enable(struct pinctrl_dev *pctldev,
1846 struct pinctrl_gpio_range *range,
1847 unsigned offset)
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001848{
1849 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1850 struct nmk_gpio_chip *nmk_chip;
1851 struct gpio_chip *chip;
1852 unsigned bit;
1853
1854 if (!range) {
1855 dev_err(npct->dev, "invalid range\n");
1856 return -EINVAL;
1857 }
1858 if (!range->gc) {
1859 dev_err(npct->dev, "missing GPIO chip in range\n");
1860 return -EINVAL;
1861 }
1862 chip = range->gc;
1863 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1864
1865 dev_dbg(npct->dev, "enable pin %u as GPIO\n", offset);
1866
1867 clk_enable(nmk_chip->clk);
1868 bit = offset % NMK_GPIO_PER_CHIP;
1869 /* There is no glitch when converting any pin to GPIO */
1870 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1871 clk_disable(nmk_chip->clk);
1872
1873 return 0;
1874}
1875
Axel Lin5212d092012-11-16 00:01:35 +08001876static void nmk_gpio_disable_free(struct pinctrl_dev *pctldev,
1877 struct pinctrl_gpio_range *range,
1878 unsigned offset)
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001879{
1880 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1881
1882 dev_dbg(npct->dev, "disable pin %u as GPIO\n", offset);
1883 /* Set the pin to some default state, GPIO is usually default */
1884}
1885
Laurent Pinchart022ab142013-02-16 10:25:07 +01001886static const struct pinmux_ops nmk_pinmux_ops = {
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02001887 .get_functions_count = nmk_pmx_get_funcs_cnt,
1888 .get_function_name = nmk_pmx_get_func_name,
1889 .get_function_groups = nmk_pmx_get_func_groups,
1890 .enable = nmk_pmx_enable,
1891 .disable = nmk_pmx_disable,
1892 .gpio_request_enable = nmk_gpio_request_enable,
1893 .gpio_disable_free = nmk_gpio_disable_free,
1894};
1895
Axel Lin5212d092012-11-16 00:01:35 +08001896static int nmk_pin_config_get(struct pinctrl_dev *pctldev, unsigned pin,
1897 unsigned long *config)
Linus Walleijd41af622012-05-03 15:58:12 +02001898{
1899 /* Not implemented */
1900 return -EINVAL;
1901}
1902
Axel Lin5212d092012-11-16 00:01:35 +08001903static int nmk_pin_config_set(struct pinctrl_dev *pctldev, unsigned pin,
Sherman Yin03b054e2013-08-27 11:32:12 -07001904 unsigned long *configs, unsigned num_configs)
Linus Walleijd41af622012-05-03 15:58:12 +02001905{
1906 static const char *pullnames[] = {
1907 [NMK_GPIO_PULL_NONE] = "none",
1908 [NMK_GPIO_PULL_UP] = "up",
1909 [NMK_GPIO_PULL_DOWN] = "down",
1910 [3] /* illegal */ = "??"
1911 };
1912 static const char *slpmnames[] = {
1913 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
1914 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
1915 };
1916 struct nmk_pinctrl *npct = pinctrl_dev_get_drvdata(pctldev);
1917 struct nmk_gpio_chip *nmk_chip;
1918 struct pinctrl_gpio_range *range;
1919 struct gpio_chip *chip;
1920 unsigned bit;
Sherman Yin03b054e2013-08-27 11:32:12 -07001921 pin_cfg_t cfg;
1922 int pull, slpm, output, val, i;
1923 bool lowemi, gpiomode, sleep;
Linus Walleijd41af622012-05-03 15:58:12 +02001924
1925 range = nmk_match_gpio_range(pctldev, pin);
1926 if (!range) {
1927 dev_err(npct->dev, "invalid pin offset %d\n", pin);
1928 return -EINVAL;
1929 }
1930 if (!range->gc) {
1931 dev_err(npct->dev, "GPIO chip missing in range for pin %d\n",
1932 pin);
1933 return -EINVAL;
1934 }
1935 chip = range->gc;
1936 nmk_chip = container_of(chip, struct nmk_gpio_chip, chip);
1937
Sherman Yin03b054e2013-08-27 11:32:12 -07001938 for (i = 0; i < num_configs; i++) {
Linus Walleijd41af622012-05-03 15:58:12 +02001939 /*
Sherman Yin03b054e2013-08-27 11:32:12 -07001940 * The pin config contains pin number and altfunction fields,
1941 * here we just ignore that part. It's being handled by the
1942 * framework and pinmux callback respectively.
Linus Walleijd41af622012-05-03 15:58:12 +02001943 */
Sherman Yin03b054e2013-08-27 11:32:12 -07001944 cfg = (pin_cfg_t) configs[i];
1945 pull = PIN_PULL(cfg);
1946 slpm = PIN_SLPM(cfg);
1947 output = PIN_DIR(cfg);
1948 val = PIN_VAL(cfg);
1949 lowemi = PIN_LOWEMI(cfg);
1950 gpiomode = PIN_GPIOMODE(cfg);
1951 sleep = PIN_SLEEPMODE(cfg);
Linus Walleijd41af622012-05-03 15:58:12 +02001952
Sherman Yin03b054e2013-08-27 11:32:12 -07001953 if (sleep) {
1954 int slpm_pull = PIN_SLPM_PULL(cfg);
1955 int slpm_output = PIN_SLPM_DIR(cfg);
1956 int slpm_val = PIN_SLPM_VAL(cfg);
Linus Walleijd41af622012-05-03 15:58:12 +02001957
Sherman Yin03b054e2013-08-27 11:32:12 -07001958 /* All pins go into GPIO mode at sleep */
1959 gpiomode = true;
Linus Walleijd41af622012-05-03 15:58:12 +02001960
Sherman Yin03b054e2013-08-27 11:32:12 -07001961 /*
1962 * The SLPM_* values are normal values + 1 to allow zero
1963 * to mean "same as normal".
1964 */
1965 if (slpm_pull)
1966 pull = slpm_pull - 1;
1967 if (slpm_output)
1968 output = slpm_output - 1;
1969 if (slpm_val)
1970 val = slpm_val - 1;
Linus Walleijd41af622012-05-03 15:58:12 +02001971
Sherman Yin03b054e2013-08-27 11:32:12 -07001972 dev_dbg(nmk_chip->chip.dev,
1973 "pin %d: sleep pull %s, dir %s, val %s\n",
1974 pin,
1975 slpm_pull ? pullnames[pull] : "same",
1976 slpm_output ? (output ? "output" : "input")
1977 : "same",
1978 slpm_val ? (val ? "high" : "low") : "same");
1979 }
1980
1981 dev_dbg(nmk_chip->chip.dev,
1982 "pin %d [%#lx]: pull %s, slpm %s (%s%s), lowemi %s\n",
1983 pin, cfg, pullnames[pull], slpmnames[slpm],
1984 output ? "output " : "input",
1985 output ? (val ? "high" : "low") : "",
1986 lowemi ? "on" : "off");
1987
1988 clk_enable(nmk_chip->clk);
1989 bit = pin % NMK_GPIO_PER_CHIP;
1990 if (gpiomode)
1991 /* No glitch when going to GPIO mode */
1992 __nmk_gpio_set_mode(nmk_chip, bit, NMK_GPIO_ALT_GPIO);
1993 if (output)
1994 __nmk_gpio_make_output(nmk_chip, bit, val);
1995 else {
1996 __nmk_gpio_make_input(nmk_chip, bit);
1997 __nmk_gpio_set_pull(nmk_chip, bit, pull);
1998 }
1999 /* TODO: isn't this only applicable on output pins? */
2000 __nmk_gpio_set_lowemi(nmk_chip, bit, lowemi);
2001
2002 __nmk_gpio_set_slpm(nmk_chip, bit, slpm);
2003 clk_disable(nmk_chip->clk);
2004 } /* for each config */
2005
Linus Walleijd41af622012-05-03 15:58:12 +02002006 return 0;
2007}
2008
Laurent Pinchart022ab142013-02-16 10:25:07 +01002009static const struct pinconf_ops nmk_pinconf_ops = {
Linus Walleijd41af622012-05-03 15:58:12 +02002010 .pin_config_get = nmk_pin_config_get,
2011 .pin_config_set = nmk_pin_config_set,
2012};
2013
Linus Walleije98ea772012-04-26 23:57:25 +02002014static struct pinctrl_desc nmk_pinctrl_desc = {
2015 .name = "pinctrl-nomadik",
2016 .pctlops = &nmk_pinctrl_ops,
Linus Walleijdbfe8ca2012-05-02 22:56:47 +02002017 .pmxops = &nmk_pinmux_ops,
Linus Walleijd41af622012-05-03 15:58:12 +02002018 .confops = &nmk_pinconf_ops,
Linus Walleije98ea772012-04-26 23:57:25 +02002019 .owner = THIS_MODULE,
2020};
2021
Lee Jones855f80c2012-05-26 06:09:29 +01002022static const struct of_device_id nmk_pinctrl_match[] = {
2023 {
Lee Jones3fd765a2013-05-22 15:22:59 +01002024 .compatible = "stericsson,stn8815-pinctrl",
Linus Walleij6010d402013-01-05 23:10:09 +01002025 .data = (void *)PINCTRL_NMK_STN8815,
2026 },
2027 {
Lee Jones6b09a832013-05-22 15:23:00 +01002028 .compatible = "stericsson,db8500-pinctrl",
Lee Jones855f80c2012-05-26 06:09:29 +01002029 .data = (void *)PINCTRL_NMK_DB8500,
2030 },
Gabriel Fernandez356d3e42013-01-25 16:39:14 +01002031 {
Lee Jones6b09a832013-05-22 15:23:00 +01002032 .compatible = "stericsson,db8540-pinctrl",
Gabriel Fernandez356d3e42013-01-25 16:39:14 +01002033 .data = (void *)PINCTRL_NMK_DB8540,
2034 },
Lee Jones855f80c2012-05-26 06:09:29 +01002035 {},
2036};
2037
Julien Delacou8d99b322012-12-11 09:17:47 +01002038static int nmk_pinctrl_suspend(struct platform_device *pdev, pm_message_t state)
2039{
2040 struct nmk_pinctrl *npct;
2041
2042 npct = platform_get_drvdata(pdev);
2043 if (!npct)
2044 return -EINVAL;
2045
2046 return pinctrl_force_sleep(npct->pctl);
2047}
2048
2049static int nmk_pinctrl_resume(struct platform_device *pdev)
2050{
2051 struct nmk_pinctrl *npct;
2052
2053 npct = platform_get_drvdata(pdev);
2054 if (!npct)
2055 return -EINVAL;
2056
2057 return pinctrl_force_default(npct->pctl);
2058}
2059
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08002060static int nmk_pinctrl_probe(struct platform_device *pdev)
Linus Walleije98ea772012-04-26 23:57:25 +02002061{
Linus Walleijf4b3f522013-11-19 23:21:04 +01002062 const struct of_device_id *match;
Lee Jones855f80c2012-05-26 06:09:29 +01002063 struct device_node *np = pdev->dev.of_node;
Lee Jones32e67ee2013-01-11 15:45:29 +00002064 struct device_node *prcm_np;
Linus Walleije98ea772012-04-26 23:57:25 +02002065 struct nmk_pinctrl *npct;
Lee Jones855f80c2012-05-26 06:09:29 +01002066 unsigned int version = 0;
Linus Walleije98ea772012-04-26 23:57:25 +02002067 int i;
2068
2069 npct = devm_kzalloc(&pdev->dev, sizeof(*npct), GFP_KERNEL);
2070 if (!npct)
2071 return -ENOMEM;
2072
Linus Walleijf4b3f522013-11-19 23:21:04 +01002073 match = of_match_device(nmk_pinctrl_match, &pdev->dev);
2074 if (!match)
2075 return -ENODEV;
2076 version = (unsigned int) match->data;
Lee Jones855f80c2012-05-26 06:09:29 +01002077
Linus Walleije98ea772012-04-26 23:57:25 +02002078 /* Poke in other ASIC variants here */
Linus Walleijf79c5ed2012-08-10 00:43:28 +02002079 if (version == PINCTRL_NMK_STN8815)
2080 nmk_pinctrl_stn8815_init(&npct->soc);
Lee Jones855f80c2012-05-26 06:09:29 +01002081 if (version == PINCTRL_NMK_DB8500)
Linus Walleije98ea772012-04-26 23:57:25 +02002082 nmk_pinctrl_db8500_init(&npct->soc);
Patrice Chotard45a1b532012-07-20 15:45:22 +02002083 if (version == PINCTRL_NMK_DB8540)
2084 nmk_pinctrl_db8540_init(&npct->soc);
Linus Walleije98ea772012-04-26 23:57:25 +02002085
Linus Walleijf4b3f522013-11-19 23:21:04 +01002086 prcm_np = of_parse_phandle(np, "prcm", 0);
2087 if (prcm_np)
2088 npct->prcm_base = of_iomap(prcm_np, 0);
Lee Jones32e67ee2013-01-11 15:45:29 +00002089 if (!npct->prcm_base) {
2090 if (version == PINCTRL_NMK_STN8815) {
2091 dev_info(&pdev->dev,
2092 "No PRCM base, "
2093 "assuming no ALT-Cx control is available\n");
2094 } else {
2095 dev_err(&pdev->dev, "missing PRCM base address\n");
2096 return -EINVAL;
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002097 }
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002098 }
2099
Linus Walleije98ea772012-04-26 23:57:25 +02002100 /*
2101 * We need all the GPIO drivers to probe FIRST, or we will not be able
2102 * to obtain references to the struct gpio_chip * for them, and we
2103 * need this to proceed.
2104 */
2105 for (i = 0; i < npct->soc->gpio_num_ranges; i++) {
Patrice Chotard1d853ca2012-10-08 16:50:24 +02002106 if (!nmk_gpio_chips[npct->soc->gpio_ranges[i].id]) {
Linus Walleije98ea772012-04-26 23:57:25 +02002107 dev_warn(&pdev->dev, "GPIO chip %d not registered yet\n", i);
Linus Walleije98ea772012-04-26 23:57:25 +02002108 return -EPROBE_DEFER;
2109 }
Patrice Chotard1d853ca2012-10-08 16:50:24 +02002110 npct->soc->gpio_ranges[i].gc = &nmk_gpio_chips[npct->soc->gpio_ranges[i].id]->chip;
Linus Walleije98ea772012-04-26 23:57:25 +02002111 }
2112
2113 nmk_pinctrl_desc.pins = npct->soc->pins;
2114 nmk_pinctrl_desc.npins = npct->soc->npins;
2115 npct->dev = &pdev->dev;
Jonas Aabergf1671bf2012-10-25 08:40:42 +02002116
Linus Walleije98ea772012-04-26 23:57:25 +02002117 npct->pctl = pinctrl_register(&nmk_pinctrl_desc, &pdev->dev, npct);
2118 if (!npct->pctl) {
2119 dev_err(&pdev->dev, "could not register Nomadik pinctrl driver\n");
2120 return -EINVAL;
2121 }
2122
2123 /* We will handle a range of GPIO pins */
2124 for (i = 0; i < npct->soc->gpio_num_ranges; i++)
2125 pinctrl_add_gpio_range(npct->pctl, &npct->soc->gpio_ranges[i]);
2126
2127 platform_set_drvdata(pdev, npct);
2128 dev_info(&pdev->dev, "initialized Nomadik pin control driver\n");
2129
2130 return 0;
2131}
2132
Lee Jones513c27f2012-04-13 15:05:05 +01002133static const struct of_device_id nmk_gpio_match[] = {
2134 { .compatible = "st,nomadik-gpio", },
2135 {}
2136};
2137
Rabin Vincent3e3c62c2010-03-03 04:52:34 +01002138static struct platform_driver nmk_gpio_driver = {
2139 .driver = {
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002140 .owner = THIS_MODULE,
2141 .name = "gpio",
Lee Jones513c27f2012-04-13 15:05:05 +01002142 .of_match_table = nmk_gpio_match,
Rabin Vincent5317e4d12011-02-10 09:29:53 +05302143 },
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002144 .probe = nmk_gpio_probe,
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002145};
2146
Linus Walleije98ea772012-04-26 23:57:25 +02002147static struct platform_driver nmk_pinctrl_driver = {
2148 .driver = {
2149 .owner = THIS_MODULE,
2150 .name = "pinctrl-nomadik",
Lee Jones855f80c2012-05-26 06:09:29 +01002151 .of_match_table = nmk_pinctrl_match,
Linus Walleije98ea772012-04-26 23:57:25 +02002152 },
2153 .probe = nmk_pinctrl_probe,
Julien Delacou8d99b322012-12-11 09:17:47 +01002154#ifdef CONFIG_PM
2155 .suspend = nmk_pinctrl_suspend,
2156 .resume = nmk_pinctrl_resume,
2157#endif
Linus Walleije98ea772012-04-26 23:57:25 +02002158};
2159
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002160static int __init nmk_gpio_init(void)
2161{
Linus Walleije98ea772012-04-26 23:57:25 +02002162 int ret;
2163
2164 ret = platform_driver_register(&nmk_gpio_driver);
2165 if (ret)
2166 return ret;
2167 return platform_driver_register(&nmk_pinctrl_driver);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002168}
2169
Rabin Vincent33f45ea2010-06-02 06:09:52 +01002170core_initcall(nmk_gpio_init);
Alessandro Rubini2ec1d352009-07-02 15:29:12 +01002171
2172MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
2173MODULE_DESCRIPTION("Nomadik GPIO Driver");
2174MODULE_LICENSE("GPL");