blob: 8b2d45e85baea612451812fb7cc82b88b75d8d9c [file] [log] [blame]
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001/*
2 * Generic device tree based pinctrl driver for one register per pin
3 * type pinmux controllers
4 *
5 * Copyright (C) 2012 Texas Instruments, Inc.
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/io.h>
15#include <linux/slab.h>
16#include <linux/err.h>
17#include <linux/list.h>
Tony Lindgren3e6cee12013-10-02 21:39:40 -070018#include <linux/interrupt.h>
19
20#include <linux/irqchip/chained_irq.h>
Tony Lindgren8b8b0912012-07-10 02:05:46 -070021
22#include <linux/of.h>
23#include <linux/of_device.h>
24#include <linux/of_address.h>
Tony Lindgren3e6cee12013-10-02 21:39:40 -070025#include <linux/of_irq.h>
Tony Lindgren8b8b0912012-07-10 02:05:46 -070026
27#include <linux/pinctrl/pinctrl.h>
28#include <linux/pinctrl/pinmux.h>
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +080029#include <linux/pinctrl/pinconf-generic.h>
Tony Lindgren8b8b0912012-07-10 02:05:46 -070030
Tony Lindgrendc7743a2013-10-02 21:39:40 -070031#include <linux/platform_data/pinctrl-single.h>
32
Tony Lindgren8b8b0912012-07-10 02:05:46 -070033#include "core.h"
Tony Lindgren46222152016-11-03 09:35:48 -070034#include "devicetree.h"
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +080035#include "pinconf.h"
Tony Lindgren571aec42016-12-27 09:20:03 -080036#include "pinmux.h"
Tony Lindgren8b8b0912012-07-10 02:05:46 -070037
38#define DRIVER_NAME "pinctrl-single"
Tony Lindgren8b8b0912012-07-10 02:05:46 -070039#define PCS_OFF_DISABLED ~0U
40
41/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -070042 * struct pcs_func_vals - mux function register offset and value pair
43 * @reg: register virtual address
44 * @val: register value
45 */
46struct pcs_func_vals {
47 void __iomem *reg;
48 unsigned val;
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +030049 unsigned mask;
Tony Lindgren8b8b0912012-07-10 02:05:46 -070050};
51
52/**
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +080053 * struct pcs_conf_vals - pinconf parameter, pinconf register offset
54 * and value, enable, disable, mask
55 * @param: config parameter
56 * @val: user input bits in the pinconf register
57 * @enable: enable bits in the pinconf register
58 * @disable: disable bits in the pinconf register
59 * @mask: mask bits in the register value
60 */
61struct pcs_conf_vals {
62 enum pin_config_param param;
63 unsigned val;
64 unsigned enable;
65 unsigned disable;
66 unsigned mask;
67};
68
69/**
70 * struct pcs_conf_type - pinconf property name, pinconf param pair
71 * @name: property name in DTS file
72 * @param: config parameter
73 */
74struct pcs_conf_type {
75 const char *name;
76 enum pin_config_param param;
77};
78
79/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -070080 * struct pcs_function - pinctrl function
81 * @name: pinctrl function name
82 * @vals: register and vals array
83 * @nvals: number of entries in vals array
84 * @pgnames: array of pingroup names the function uses
85 * @npgnames: number of pingroup names the function uses
86 * @node: list node
87 */
88struct pcs_function {
89 const char *name;
90 struct pcs_func_vals *vals;
91 unsigned nvals;
92 const char **pgnames;
93 int npgnames;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +080094 struct pcs_conf_vals *conf;
95 int nconfs;
Tony Lindgren8b8b0912012-07-10 02:05:46 -070096 struct list_head node;
97};
98
99/**
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800100 * struct pcs_gpiofunc_range - pin ranges with same mux value of gpio function
101 * @offset: offset base of pins
102 * @npins: number pins with the same mux value of gpio function
103 * @gpiofunc: mux value of gpio function
104 * @node: list node
105 */
106struct pcs_gpiofunc_range {
107 unsigned offset;
108 unsigned npins;
109 unsigned gpiofunc;
110 struct list_head node;
111};
112
113/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700114 * struct pcs_data - wrapper for data needed by pinctrl framework
115 * @pa: pindesc array
116 * @cur: index to current element
117 *
118 * REVISIT: We should be able to drop this eventually by adding
119 * support for registering pins individually in the pinctrl
120 * framework for those drivers that don't need a static array.
121 */
122struct pcs_data {
123 struct pinctrl_pin_desc *pa;
124 int cur;
125};
126
127/**
Tony Lindgren02e483f2013-10-02 21:39:39 -0700128 * struct pcs_soc_data - SoC specific settings
129 * @flags: initial SoC specific PCS_FEAT_xxx values
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700130 * @irq: optional interrupt for the controller
131 * @irq_enable_mask: optional SoC specific interrupt enable mask
132 * @irq_status_mask: optional SoC specific interrupt status mask
Tony Lindgrendc7743a2013-10-02 21:39:40 -0700133 * @rearm: optional SoC specific wake-up rearm function
Tony Lindgren02e483f2013-10-02 21:39:39 -0700134 */
135struct pcs_soc_data {
136 unsigned flags;
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700137 int irq;
138 unsigned irq_enable_mask;
139 unsigned irq_status_mask;
Tony Lindgrendc7743a2013-10-02 21:39:40 -0700140 void (*rearm)(void);
Tony Lindgren02e483f2013-10-02 21:39:39 -0700141};
142
143/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700144 * struct pcs_device - pinctrl device instance
145 * @res: resources
146 * @base: virtual address of the controller
147 * @size: size of the ioremapped area
148 * @dev: device entry
Tony Lindgren46222152016-11-03 09:35:48 -0700149 * @np: device tree node
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700150 * @pctl: pin controller device
Tony Lindgren02e483f2013-10-02 21:39:39 -0700151 * @flags: mask of PCS_FEAT_xxx values
Tony Lindgren46222152016-11-03 09:35:48 -0700152 * @missing_nr_pinctrl_cells: for legacy binding, may go away
153 * @socdata: soc specific data
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700154 * @lock: spinlock for register access
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700155 * @mutex: mutex protecting the lists
156 * @width: bits per mux register
157 * @fmask: function register mask
158 * @fshift: function register shift
159 * @foff: value to turn mux off
160 * @fmax: max number of functions in fmask
Tony Lindgren46222152016-11-03 09:35:48 -0700161 * @bits_per_mux: number of bits per mux
162 * @bits_per_pin: number of bits per pin
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700163 * @pins: physical pins on the SoC
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800164 * @gpiofuncs: list of gpio functions
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700165 * @irqs: list of interrupt registers
166 * @chip: chip container for this instance
167 * @domain: IRQ domain for this instance
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700168 * @desc: pin controller descriptor
169 * @read: register read function to use
170 * @write: register write function to use
171 */
172struct pcs_device {
173 struct resource *res;
174 void __iomem *base;
175 unsigned size;
176 struct device *dev;
Tony Lindgren46222152016-11-03 09:35:48 -0700177 struct device_node *np;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700178 struct pinctrl_dev *pctl;
Tony Lindgren02e483f2013-10-02 21:39:39 -0700179 unsigned flags;
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700180#define PCS_QUIRK_SHARED_IRQ (1 << 2)
181#define PCS_FEAT_IRQ (1 << 1)
Tony Lindgren02e483f2013-10-02 21:39:39 -0700182#define PCS_FEAT_PINCONF (1 << 0)
Tony Lindgren46222152016-11-03 09:35:48 -0700183 struct property *missing_nr_pinctrl_cells;
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700184 struct pcs_soc_data socdata;
185 raw_spinlock_t lock;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700186 struct mutex mutex;
187 unsigned width;
188 unsigned fmask;
189 unsigned fshift;
190 unsigned foff;
191 unsigned fmax;
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +0300192 bool bits_per_mux;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530193 unsigned bits_per_pin;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700194 struct pcs_data pins;
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800195 struct list_head gpiofuncs;
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700196 struct list_head irqs;
197 struct irq_chip chip;
198 struct irq_domain *domain;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700199 struct pinctrl_desc desc;
200 unsigned (*read)(void __iomem *reg);
201 void (*write)(unsigned val, void __iomem *reg);
202};
203
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700204#define PCS_QUIRK_HAS_SHARED_IRQ (pcs->flags & PCS_QUIRK_SHARED_IRQ)
205#define PCS_HAS_IRQ (pcs->flags & PCS_FEAT_IRQ)
Tony Lindgren02e483f2013-10-02 21:39:39 -0700206#define PCS_HAS_PINCONF (pcs->flags & PCS_FEAT_PINCONF)
207
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800208static int pcs_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
209 unsigned long *config);
210static int pcs_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
Sherman Yin03b054e2013-08-27 11:32:12 -0700211 unsigned long *configs, unsigned num_configs);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800212
213static enum pin_config_param pcs_bias[] = {
214 PIN_CONFIG_BIAS_PULL_DOWN,
215 PIN_CONFIG_BIAS_PULL_UP,
216};
217
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700218/*
Sudeep Holla3c177a12016-02-01 18:28:17 +0000219 * This lock class tells lockdep that irqchip core that this single
220 * pinctrl can be in a different category than its parents, so it won't
221 * report false recursion.
222 */
223static struct lock_class_key pcs_lock_class;
224
225/*
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700226 * REVISIT: Reads and writes could eventually use regmap or something
227 * generic. But at least on omaps, some mux registers are performance
228 * critical as they may need to be remuxed every time before and after
229 * idle. Adding tests for register access width for every read and
230 * write like regmap is doing is not desired, and caching the registers
231 * does not help in this case.
232 */
233
234static unsigned __maybe_unused pcs_readb(void __iomem *reg)
235{
236 return readb(reg);
237}
238
239static unsigned __maybe_unused pcs_readw(void __iomem *reg)
240{
241 return readw(reg);
242}
243
244static unsigned __maybe_unused pcs_readl(void __iomem *reg)
245{
246 return readl(reg);
247}
248
249static void __maybe_unused pcs_writeb(unsigned val, void __iomem *reg)
250{
251 writeb(val, reg);
252}
253
254static void __maybe_unused pcs_writew(unsigned val, void __iomem *reg)
255{
256 writew(val, reg);
257}
258
259static void __maybe_unused pcs_writel(unsigned val, void __iomem *reg)
260{
261 writel(val, reg);
262}
263
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700264static void pcs_pin_dbg_show(struct pinctrl_dev *pctldev,
265 struct seq_file *s,
Haojian Zhuange7ed6712012-11-07 23:19:42 +0800266 unsigned pin)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700267{
Matt Porter7d66ce72012-09-26 15:07:43 -0400268 struct pcs_device *pcs;
Haojian Zhuange7ed6712012-11-07 23:19:42 +0800269 unsigned val, mux_bytes;
Tony Lindgren223decc2016-10-27 07:59:52 -0700270 unsigned long offset;
271 size_t pa;
Matt Porter7d66ce72012-09-26 15:07:43 -0400272
273 pcs = pinctrl_dev_get_drvdata(pctldev);
274
Haojian Zhuange7ed6712012-11-07 23:19:42 +0800275 mux_bytes = pcs->width / BITS_PER_BYTE;
Tony Lindgren223decc2016-10-27 07:59:52 -0700276 offset = pin * mux_bytes;
277 val = pcs->read(pcs->base + offset);
278 pa = pcs->res->start + offset;
Matt Porter7d66ce72012-09-26 15:07:43 -0400279
Tony Lindgren223decc2016-10-27 07:59:52 -0700280 seq_printf(s, "%zx %08x %s ", pa, val, DRIVER_NAME);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700281}
282
283static void pcs_dt_free_map(struct pinctrl_dev *pctldev,
284 struct pinctrl_map *map, unsigned num_maps)
285{
286 struct pcs_device *pcs;
287
288 pcs = pinctrl_dev_get_drvdata(pctldev);
289 devm_kfree(pcs->dev, map);
290}
291
292static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev,
293 struct device_node *np_config,
294 struct pinctrl_map **map, unsigned *num_maps);
295
Laurent Pinchart022ab142013-02-16 10:25:07 +0100296static const struct pinctrl_ops pcs_pinctrl_ops = {
Tony Lindgrencaeb7742016-12-27 09:20:02 -0800297 .get_groups_count = pinctrl_generic_get_group_count,
298 .get_group_name = pinctrl_generic_get_group_name,
299 .get_group_pins = pinctrl_generic_get_group_pins,
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700300 .pin_dbg_show = pcs_pin_dbg_show,
301 .dt_node_to_map = pcs_dt_node_to_map,
302 .dt_free_map = pcs_dt_free_map,
303};
304
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800305static int pcs_get_function(struct pinctrl_dev *pctldev, unsigned pin,
306 struct pcs_function **func)
307{
308 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
309 struct pin_desc *pdesc = pin_desc_get(pctldev, pin);
310 const struct pinctrl_setting_mux *setting;
Tony Lindgren571aec42016-12-27 09:20:03 -0800311 struct function_desc *function;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800312 unsigned fselector;
313
314 /* If pin is not described in DTS & enabled, mux_setting is NULL. */
315 setting = pdesc->mux_setting;
316 if (!setting)
317 return -ENOTSUPP;
318 fselector = setting->func;
Tony Lindgren571aec42016-12-27 09:20:03 -0800319 function = pinmux_generic_get_function(pctldev, fselector);
320 *func = function->data;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800321 if (!(*func)) {
322 dev_err(pcs->dev, "%s could not find function%i\n",
323 __func__, fselector);
324 return -ENOTSUPP;
325 }
326 return 0;
327}
328
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200329static int pcs_set_mux(struct pinctrl_dev *pctldev, unsigned fselector,
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700330 unsigned group)
331{
332 struct pcs_device *pcs;
Tony Lindgren571aec42016-12-27 09:20:03 -0800333 struct function_desc *function;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700334 struct pcs_function *func;
335 int i;
336
337 pcs = pinctrl_dev_get_drvdata(pctldev);
Haojian Zhuang477ac772013-02-17 19:42:54 +0800338 /* If function mask is null, needn't enable it. */
339 if (!pcs->fmask)
340 return 0;
Tony Lindgren571aec42016-12-27 09:20:03 -0800341 function = pinmux_generic_get_function(pctldev, fselector);
342 func = function->data;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700343 if (!func)
344 return -EINVAL;
345
346 dev_dbg(pcs->dev, "enabling %s function%i\n",
347 func->name, fselector);
348
349 for (i = 0; i < func->nvals; i++) {
350 struct pcs_func_vals *vals;
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700351 unsigned long flags;
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +0300352 unsigned val, mask;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700353
354 vals = &func->vals[i];
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700355 raw_spin_lock_irqsave(&pcs->lock, flags);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700356 val = pcs->read(vals->reg);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530357
358 if (pcs->bits_per_mux)
359 mask = vals->mask;
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +0300360 else
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530361 mask = pcs->fmask;
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +0300362
363 val &= ~mask;
364 val |= (vals->val & mask);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700365 pcs->write(val, vals->reg);
Tony Lindgren3e6cee12013-10-02 21:39:40 -0700366 raw_spin_unlock_irqrestore(&pcs->lock, flags);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700367 }
368
369 return 0;
370}
371
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700372static int pcs_request_gpio(struct pinctrl_dev *pctldev,
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800373 struct pinctrl_gpio_range *range, unsigned pin)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700374{
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800375 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
376 struct pcs_gpiofunc_range *frange = NULL;
377 struct list_head *pos, *tmp;
378 int mux_bytes = 0;
379 unsigned data;
380
Haojian Zhuang477ac772013-02-17 19:42:54 +0800381 /* If function mask is null, return directly. */
382 if (!pcs->fmask)
383 return -ENOTSUPP;
384
Haojian Zhuanga1a277e2013-02-17 19:42:52 +0800385 list_for_each_safe(pos, tmp, &pcs->gpiofuncs) {
386 frange = list_entry(pos, struct pcs_gpiofunc_range, node);
387 if (pin >= frange->offset + frange->npins
388 || pin < frange->offset)
389 continue;
390 mux_bytes = pcs->width / BITS_PER_BYTE;
391 data = pcs->read(pcs->base + pin * mux_bytes) & ~pcs->fmask;
392 data |= frange->gpiofunc;
393 pcs->write(data, pcs->base + pin * mux_bytes);
394 break;
395 }
396 return 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700397}
398
Laurent Pinchart022ab142013-02-16 10:25:07 +0100399static const struct pinmux_ops pcs_pinmux_ops = {
Tony Lindgren571aec42016-12-27 09:20:03 -0800400 .get_functions_count = pinmux_generic_get_function_count,
401 .get_function_name = pinmux_generic_get_function_name,
402 .get_function_groups = pinmux_generic_get_function_groups,
Linus Walleij9e3a9792014-09-05 09:53:23 +0200403 .set_mux = pcs_set_mux,
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700404 .gpio_request_enable = pcs_request_gpio,
405};
406
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800407/* Clear BIAS value */
408static void pcs_pinconf_clear_bias(struct pinctrl_dev *pctldev, unsigned pin)
409{
410 unsigned long config;
411 int i;
412 for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) {
413 config = pinconf_to_config_packed(pcs_bias[i], 0);
Sherman Yin03b054e2013-08-27 11:32:12 -0700414 pcs_pinconf_set(pctldev, pin, &config, 1);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800415 }
416}
417
418/*
419 * Check whether PIN_CONFIG_BIAS_DISABLE is valid.
420 * It's depend on that PULL_DOWN & PULL_UP configs are all invalid.
421 */
422static bool pcs_pinconf_bias_disable(struct pinctrl_dev *pctldev, unsigned pin)
423{
424 unsigned long config;
425 int i;
426
427 for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) {
428 config = pinconf_to_config_packed(pcs_bias[i], 0);
429 if (!pcs_pinconf_get(pctldev, pin, &config))
430 goto out;
431 }
432 return true;
433out:
434 return false;
435}
436
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700437static int pcs_pinconf_get(struct pinctrl_dev *pctldev,
438 unsigned pin, unsigned long *config)
439{
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800440 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
441 struct pcs_function *func;
442 enum pin_config_param param;
443 unsigned offset = 0, data = 0, i, j, ret;
444
445 ret = pcs_get_function(pctldev, pin, &func);
446 if (ret)
447 return ret;
448
449 for (i = 0; i < func->nconfs; i++) {
450 param = pinconf_to_config_param(*config);
451 if (param == PIN_CONFIG_BIAS_DISABLE) {
452 if (pcs_pinconf_bias_disable(pctldev, pin)) {
453 *config = 0;
454 return 0;
455 } else {
456 return -ENOTSUPP;
457 }
458 } else if (param != func->conf[i].param) {
459 continue;
460 }
461
462 offset = pin * (pcs->width / BITS_PER_BYTE);
463 data = pcs->read(pcs->base + offset) & func->conf[i].mask;
464 switch (func->conf[i].param) {
465 /* 4 parameters */
466 case PIN_CONFIG_BIAS_PULL_DOWN:
467 case PIN_CONFIG_BIAS_PULL_UP:
468 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
469 if ((data != func->conf[i].enable) ||
470 (data == func->conf[i].disable))
471 return -ENOTSUPP;
472 *config = 0;
473 break;
474 /* 2 parameters */
475 case PIN_CONFIG_INPUT_SCHMITT:
476 for (j = 0; j < func->nconfs; j++) {
477 switch (func->conf[j].param) {
478 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
479 if (data != func->conf[j].enable)
480 return -ENOTSUPP;
481 break;
482 default:
483 break;
484 }
485 }
486 *config = data;
487 break;
488 case PIN_CONFIG_DRIVE_STRENGTH:
489 case PIN_CONFIG_SLEW_RATE:
Chao Xie4bd75472014-01-28 15:20:44 +0800490 case PIN_CONFIG_LOW_POWER_MODE:
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800491 default:
492 *config = data;
493 break;
494 }
495 return 0;
496 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700497 return -ENOTSUPP;
498}
499
500static int pcs_pinconf_set(struct pinctrl_dev *pctldev,
Sherman Yin03b054e2013-08-27 11:32:12 -0700501 unsigned pin, unsigned long *configs,
502 unsigned num_configs)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700503{
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800504 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
505 struct pcs_function *func;
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800506 unsigned offset = 0, shift = 0, i, data, ret;
Mika Westerberg58957d22017-01-23 15:34:32 +0300507 u32 arg;
Sherman Yin03b054e2013-08-27 11:32:12 -0700508 int j;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800509
510 ret = pcs_get_function(pctldev, pin, &func);
511 if (ret)
512 return ret;
513
Sherman Yin03b054e2013-08-27 11:32:12 -0700514 for (j = 0; j < num_configs; j++) {
515 for (i = 0; i < func->nconfs; i++) {
516 if (pinconf_to_config_param(configs[j])
517 != func->conf[i].param)
518 continue;
519
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800520 offset = pin * (pcs->width / BITS_PER_BYTE);
521 data = pcs->read(pcs->base + offset);
Sherman Yin03b054e2013-08-27 11:32:12 -0700522 arg = pinconf_to_config_argument(configs[j]);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800523 switch (func->conf[i].param) {
524 /* 2 parameters */
525 case PIN_CONFIG_INPUT_SCHMITT:
526 case PIN_CONFIG_DRIVE_STRENGTH:
527 case PIN_CONFIG_SLEW_RATE:
Chao Xie4bd75472014-01-28 15:20:44 +0800528 case PIN_CONFIG_LOW_POWER_MODE:
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800529 shift = ffs(func->conf[i].mask) - 1;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800530 data &= ~func->conf[i].mask;
531 data |= (arg << shift) & func->conf[i].mask;
532 break;
533 /* 4 parameters */
534 case PIN_CONFIG_BIAS_DISABLE:
535 pcs_pinconf_clear_bias(pctldev, pin);
536 break;
537 case PIN_CONFIG_BIAS_PULL_DOWN:
538 case PIN_CONFIG_BIAS_PULL_UP:
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800539 if (arg)
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800540 pcs_pinconf_clear_bias(pctldev, pin);
541 /* fall through */
542 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
543 data &= ~func->conf[i].mask;
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800544 if (arg)
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800545 data |= func->conf[i].enable;
546 else
547 data |= func->conf[i].disable;
548 break;
549 default:
550 return -ENOTSUPP;
551 }
552 pcs->write(data, pcs->base + offset);
Sherman Yin03b054e2013-08-27 11:32:12 -0700553
554 break;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800555 }
Sherman Yin03b054e2013-08-27 11:32:12 -0700556 if (i >= func->nconfs)
557 return -ENOTSUPP;
558 } /* for each config */
559
560 return 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700561}
562
563static int pcs_pinconf_group_get(struct pinctrl_dev *pctldev,
564 unsigned group, unsigned long *config)
565{
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800566 const unsigned *pins;
567 unsigned npins, old = 0;
568 int i, ret;
569
Tony Lindgrencaeb7742016-12-27 09:20:02 -0800570 ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800571 if (ret)
572 return ret;
573 for (i = 0; i < npins; i++) {
574 if (pcs_pinconf_get(pctldev, pins[i], config))
575 return -ENOTSUPP;
576 /* configs do not match between two pins */
577 if (i && (old != *config))
578 return -ENOTSUPP;
579 old = *config;
580 }
581 return 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700582}
583
584static int pcs_pinconf_group_set(struct pinctrl_dev *pctldev,
Sherman Yin03b054e2013-08-27 11:32:12 -0700585 unsigned group, unsigned long *configs,
586 unsigned num_configs)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700587{
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800588 const unsigned *pins;
589 unsigned npins;
590 int i, ret;
591
Tony Lindgrencaeb7742016-12-27 09:20:02 -0800592 ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800593 if (ret)
594 return ret;
595 for (i = 0; i < npins; i++) {
Sherman Yin03b054e2013-08-27 11:32:12 -0700596 if (pcs_pinconf_set(pctldev, pins[i], configs, num_configs))
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800597 return -ENOTSUPP;
598 }
599 return 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700600}
601
602static void pcs_pinconf_dbg_show(struct pinctrl_dev *pctldev,
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800603 struct seq_file *s, unsigned pin)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700604{
605}
606
607static void pcs_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
608 struct seq_file *s, unsigned selector)
609{
610}
611
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800612static void pcs_pinconf_config_dbg_show(struct pinctrl_dev *pctldev,
613 struct seq_file *s,
614 unsigned long config)
615{
616 pinconf_generic_dump_config(pctldev, s, config);
617}
618
Laurent Pinchart022ab142013-02-16 10:25:07 +0100619static const struct pinconf_ops pcs_pinconf_ops = {
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700620 .pin_config_get = pcs_pinconf_get,
621 .pin_config_set = pcs_pinconf_set,
622 .pin_config_group_get = pcs_pinconf_group_get,
623 .pin_config_group_set = pcs_pinconf_group_set,
624 .pin_config_dbg_show = pcs_pinconf_dbg_show,
625 .pin_config_group_dbg_show = pcs_pinconf_group_dbg_show,
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800626 .pin_config_config_dbg_show = pcs_pinconf_config_dbg_show,
Axel Lina7bbdd72013-03-04 13:47:39 +0800627 .is_generic = true,
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700628};
629
630/**
631 * pcs_add_pin() - add a pin to the static per controller pin array
632 * @pcs: pcs driver instance
633 * @offset: register offset from base
634 */
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530635static int pcs_add_pin(struct pcs_device *pcs, unsigned offset,
636 unsigned pin_pos)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700637{
Tony Lindgren58968622014-04-10 16:47:19 -0700638 struct pcs_soc_data *pcs_soc = &pcs->socdata;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700639 struct pinctrl_pin_desc *pin;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700640 int i;
641
642 i = pcs->pins.cur;
643 if (i >= pcs->desc.npins) {
644 dev_err(pcs->dev, "too many pins, max %i\n",
645 pcs->desc.npins);
646 return -ENOMEM;
647 }
648
Tony Lindgren58968622014-04-10 16:47:19 -0700649 if (pcs_soc->irq_enable_mask) {
650 unsigned val;
651
652 val = pcs->read(pcs->base + offset);
653 if (val & pcs_soc->irq_enable_mask) {
654 dev_dbg(pcs->dev, "irq enabled at boot for pin at %lx (%x), clearing\n",
655 (unsigned long)pcs->res->start + offset, val);
656 val &= ~pcs_soc->irq_enable_mask;
657 pcs->write(val, pcs->base + offset);
658 }
659 }
660
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700661 pin = &pcs->pins.pa[i];
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700662 pin->number = i;
663 pcs->pins.cur++;
664
665 return i;
666}
667
668/**
669 * pcs_allocate_pin_table() - adds all the pins for the pinctrl driver
670 * @pcs: pcs driver instance
671 *
672 * In case of errors, resources are freed in pcs_free_resources.
673 *
674 * If your hardware needs holes in the address space, then just set
675 * up multiple driver instances.
676 */
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -0800677static int pcs_allocate_pin_table(struct pcs_device *pcs)
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700678{
679 int mux_bytes, nr_pins, i;
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530680 int num_pins_in_register = 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700681
682 mux_bytes = pcs->width / BITS_PER_BYTE;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530683
684 if (pcs->bits_per_mux) {
685 pcs->bits_per_pin = fls(pcs->fmask);
686 nr_pins = (pcs->size * BITS_PER_BYTE) / pcs->bits_per_pin;
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530687 num_pins_in_register = pcs->width / pcs->bits_per_pin;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530688 } else {
689 nr_pins = pcs->size / mux_bytes;
690 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700691
692 dev_dbg(pcs->dev, "allocating %i pins\n", nr_pins);
693 pcs->pins.pa = devm_kzalloc(pcs->dev,
694 sizeof(*pcs->pins.pa) * nr_pins,
695 GFP_KERNEL);
696 if (!pcs->pins.pa)
697 return -ENOMEM;
698
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700699 pcs->desc.pins = pcs->pins.pa;
700 pcs->desc.npins = nr_pins;
701
702 for (i = 0; i < pcs->desc.npins; i++) {
703 unsigned offset;
704 int res;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530705 int byte_num;
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530706 int pin_pos = 0;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700707
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530708 if (pcs->bits_per_mux) {
709 byte_num = (pcs->bits_per_pin * i) / BITS_PER_BYTE;
710 offset = (byte_num / mux_bytes) * mux_bytes;
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530711 pin_pos = i % num_pins_in_register;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530712 } else {
713 offset = i * mux_bytes;
714 }
Manjunathappa, Prakash6f924b02013-05-21 19:38:01 +0530715 res = pcs_add_pin(pcs, offset, pin_pos);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700716 if (res < 0) {
717 dev_err(pcs->dev, "error adding pins: %i\n", res);
718 return res;
719 }
720 }
721
722 return 0;
723}
724
725/**
726 * pcs_add_function() - adds a new function to the function list
727 * @pcs: pcs driver instance
728 * @np: device node of the mux entry
729 * @name: name of the function
730 * @vals: array of mux register value pairs used by the function
731 * @nvals: number of mux register value pairs
732 * @pgnames: array of pingroup names for the function
733 * @npgnames: number of pingroup names
734 */
735static struct pcs_function *pcs_add_function(struct pcs_device *pcs,
736 struct device_node *np,
737 const char *name,
738 struct pcs_func_vals *vals,
739 unsigned nvals,
740 const char **pgnames,
741 unsigned npgnames)
742{
743 struct pcs_function *function;
Tony Lindgren571aec42016-12-27 09:20:03 -0800744 int res;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700745
746 function = devm_kzalloc(pcs->dev, sizeof(*function), GFP_KERNEL);
747 if (!function)
748 return NULL;
749
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700750 function->vals = vals;
751 function->nvals = nvals;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700752
Tony Lindgren571aec42016-12-27 09:20:03 -0800753 res = pinmux_generic_add_function(pcs->pctl, name,
754 pgnames, npgnames,
755 function);
756 if (res)
757 return NULL;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700758
759 return function;
760}
761
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700762/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700763 * pcs_get_pin_by_offset() - get a pin index based on the register offset
764 * @pcs: pcs driver instance
765 * @offset: register offset from the base
766 *
767 * Note that this is OK as long as the pins are in a static array.
768 */
769static int pcs_get_pin_by_offset(struct pcs_device *pcs, unsigned offset)
770{
771 unsigned index;
772
773 if (offset >= pcs->size) {
774 dev_err(pcs->dev, "mux offset out of range: 0x%x (0x%x)\n",
775 offset, pcs->size);
776 return -EINVAL;
777 }
778
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +0530779 if (pcs->bits_per_mux)
780 index = (offset * BITS_PER_BYTE) / pcs->bits_per_pin;
781 else
782 index = offset / (pcs->width / BITS_PER_BYTE);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700783
784 return index;
785}
786
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800787/*
788 * check whether data matches enable bits or disable bits
789 * Return value: 1 for matching enable bits, 0 for matching disable bits,
790 * and negative value for matching failure.
791 */
792static int pcs_config_match(unsigned data, unsigned enable, unsigned disable)
793{
794 int ret = -EINVAL;
795
796 if (data == enable)
797 ret = 1;
798 else if (data == disable)
799 ret = 0;
800 return ret;
801}
802
803static void add_config(struct pcs_conf_vals **conf, enum pin_config_param param,
804 unsigned value, unsigned enable, unsigned disable,
805 unsigned mask)
806{
807 (*conf)->param = param;
808 (*conf)->val = value;
809 (*conf)->enable = enable;
810 (*conf)->disable = disable;
811 (*conf)->mask = mask;
812 (*conf)++;
813}
814
815static void add_setting(unsigned long **setting, enum pin_config_param param,
816 unsigned arg)
817{
818 **setting = pinconf_to_config_packed(param, arg);
819 (*setting)++;
820}
821
822/* add pinconf setting with 2 parameters */
823static void pcs_add_conf2(struct pcs_device *pcs, struct device_node *np,
824 const char *name, enum pin_config_param param,
825 struct pcs_conf_vals **conf, unsigned long **settings)
826{
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800827 unsigned value[2], shift;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800828 int ret;
829
830 ret = of_property_read_u32_array(np, name, value, 2);
831 if (ret)
832 return;
833 /* set value & mask */
834 value[0] &= value[1];
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800835 shift = ffs(value[1]) - 1;
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800836 /* skip enable & disable */
837 add_config(conf, param, value[0], 0, 0, value[1]);
Haojian Zhuang7cba5b32013-03-13 16:01:26 +0800838 add_setting(settings, param, value[0] >> shift);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800839}
840
841/* add pinconf setting with 4 parameters */
842static void pcs_add_conf4(struct pcs_device *pcs, struct device_node *np,
843 const char *name, enum pin_config_param param,
844 struct pcs_conf_vals **conf, unsigned long **settings)
845{
846 unsigned value[4];
847 int ret;
848
849 /* value to set, enable, disable, mask */
850 ret = of_property_read_u32_array(np, name, value, 4);
851 if (ret)
852 return;
853 if (!value[3]) {
854 dev_err(pcs->dev, "mask field of the property can't be 0\n");
855 return;
856 }
857 value[0] &= value[3];
858 value[1] &= value[3];
859 value[2] &= value[3];
860 ret = pcs_config_match(value[0], value[1], value[2]);
861 if (ret < 0)
862 dev_dbg(pcs->dev, "failed to match enable or disable bits\n");
863 add_config(conf, param, value[0], value[1], value[2], value[3]);
864 add_setting(settings, param, ret);
865}
866
867static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np,
868 struct pcs_function *func,
869 struct pinctrl_map **map)
870
871{
872 struct pinctrl_map *m = *map;
873 int i = 0, nconfs = 0;
874 unsigned long *settings = NULL, *s = NULL;
875 struct pcs_conf_vals *conf = NULL;
876 struct pcs_conf_type prop2[] = {
877 { "pinctrl-single,drive-strength", PIN_CONFIG_DRIVE_STRENGTH, },
878 { "pinctrl-single,slew-rate", PIN_CONFIG_SLEW_RATE, },
879 { "pinctrl-single,input-schmitt", PIN_CONFIG_INPUT_SCHMITT, },
Chao Xie4bd75472014-01-28 15:20:44 +0800880 { "pinctrl-single,low-power-mode", PIN_CONFIG_LOW_POWER_MODE, },
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800881 };
882 struct pcs_conf_type prop4[] = {
883 { "pinctrl-single,bias-pullup", PIN_CONFIG_BIAS_PULL_UP, },
884 { "pinctrl-single,bias-pulldown", PIN_CONFIG_BIAS_PULL_DOWN, },
885 { "pinctrl-single,input-schmitt-enable",
886 PIN_CONFIG_INPUT_SCHMITT_ENABLE, },
887 };
888
889 /* If pinconf isn't supported, don't parse properties in below. */
Tony Lindgren02e483f2013-10-02 21:39:39 -0700890 if (!PCS_HAS_PINCONF)
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800891 return 0;
892
893 /* cacluate how much properties are supported in current node */
894 for (i = 0; i < ARRAY_SIZE(prop2); i++) {
895 if (of_find_property(np, prop2[i].name, NULL))
896 nconfs++;
897 }
898 for (i = 0; i < ARRAY_SIZE(prop4); i++) {
899 if (of_find_property(np, prop4[i].name, NULL))
900 nconfs++;
901 }
902 if (!nconfs)
903 return 0;
904
905 func->conf = devm_kzalloc(pcs->dev,
906 sizeof(struct pcs_conf_vals) * nconfs,
907 GFP_KERNEL);
908 if (!func->conf)
909 return -ENOMEM;
910 func->nconfs = nconfs;
911 conf = &(func->conf[0]);
912 m++;
913 settings = devm_kzalloc(pcs->dev, sizeof(unsigned long) * nconfs,
914 GFP_KERNEL);
915 if (!settings)
916 return -ENOMEM;
917 s = &settings[0];
918
919 for (i = 0; i < ARRAY_SIZE(prop2); i++)
920 pcs_add_conf2(pcs, np, prop2[i].name, prop2[i].param,
921 &conf, &s);
922 for (i = 0; i < ARRAY_SIZE(prop4); i++)
923 pcs_add_conf4(pcs, np, prop4[i].name, prop4[i].param,
924 &conf, &s);
925 m->type = PIN_MAP_TYPE_CONFIGS_GROUP;
926 m->data.configs.group_or_pin = np->name;
927 m->data.configs.configs = settings;
928 m->data.configs.num_configs = nconfs;
929 return 0;
930}
931
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700932/**
933 * smux_parse_one_pinctrl_entry() - parses a device tree mux entry
Tony Lindgrencaeb7742016-12-27 09:20:02 -0800934 * @pctldev: pin controller device
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700935 * @pcs: pinctrl driver instance
936 * @np: device node of the mux entry
937 * @map: map entry
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800938 * @num_maps: number of map
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700939 * @pgnames: pingroup names
940 *
941 * Note that this binding currently supports only sets of one register + value.
942 *
943 * Also note that this driver tries to avoid understanding pin and function
944 * names because of the extra bloat they would cause especially in the case of
945 * a large number of pins. This driver just sets what is specified for the board
946 * in the .dts file. Further user space debugging tools can be developed to
947 * decipher the pin and function names using debugfs.
948 *
949 * If you are concerned about the boot time, set up the static pins in
950 * the bootloader, and only set up selected pins as device tree entries.
951 */
952static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
953 struct device_node *np,
954 struct pinctrl_map **map,
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +0800955 unsigned *num_maps,
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700956 const char **pgnames)
957{
Tony Lindgren46222152016-11-03 09:35:48 -0700958 const char *name = "pinctrl-single,pins";
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700959 struct pcs_func_vals *vals;
Tony Lindgren46222152016-11-03 09:35:48 -0700960 int rows, *pins, found = 0, res = -ENOMEM, i;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700961 struct pcs_function *function;
962
Tony Lindgren46222152016-11-03 09:35:48 -0700963 rows = pinctrl_count_index_with_args(np, name);
Axel Haslamde7416b2016-11-09 15:54:00 +0100964 if (rows <= 0) {
Colin Ian King059a6e62016-12-23 00:47:14 +0000965 dev_err(pcs->dev, "Invalid number of rows: %d\n", rows);
Axel Haslamde7416b2016-11-09 15:54:00 +0100966 return -EINVAL;
967 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700968
969 vals = devm_kzalloc(pcs->dev, sizeof(*vals) * rows, GFP_KERNEL);
970 if (!vals)
971 return -ENOMEM;
972
973 pins = devm_kzalloc(pcs->dev, sizeof(*pins) * rows, GFP_KERNEL);
974 if (!pins)
975 goto free_vals;
976
Tony Lindgren46222152016-11-03 09:35:48 -0700977 for (i = 0; i < rows; i++) {
978 struct of_phandle_args pinctrl_spec;
979 unsigned int offset;
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700980 int pin;
981
Tony Lindgren46222152016-11-03 09:35:48 -0700982 res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec);
983 if (res)
984 return res;
985
986 if (pinctrl_spec.args_count < 2) {
987 dev_err(pcs->dev, "invalid args_count for spec: %i\n",
988 pinctrl_spec.args_count);
989 break;
990 }
991
992 /* Index plus one value cell */
993 offset = pinctrl_spec.args[0];
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700994 vals[found].reg = pcs->base + offset;
Tony Lindgren46222152016-11-03 09:35:48 -0700995 vals[found].val = pinctrl_spec.args[1];
996
997 dev_dbg(pcs->dev, "%s index: 0x%x value: 0x%x\n",
998 pinctrl_spec.np->name, offset, pinctrl_spec.args[1]);
Tony Lindgren8b8b0912012-07-10 02:05:46 -0700999
1000 pin = pcs_get_pin_by_offset(pcs, offset);
1001 if (pin < 0) {
1002 dev_err(pcs->dev,
1003 "could not add functions for %s %ux\n",
1004 np->name, offset);
1005 break;
1006 }
1007 pins[found++] = pin;
1008 }
1009
1010 pgnames[0] = np->name;
1011 function = pcs_add_function(pcs, np, np->name, vals, found, pgnames, 1);
Dan Carpenter712778d2016-11-16 14:41:51 +03001012 if (!function) {
1013 res = -ENOMEM;
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001014 goto free_pins;
Dan Carpenter712778d2016-11-16 14:41:51 +03001015 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001016
Tony Lindgrencaeb7742016-12-27 09:20:02 -08001017 res = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs);
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001018 if (res < 0)
1019 goto free_function;
1020
1021 (*map)->type = PIN_MAP_TYPE_MUX_GROUP;
1022 (*map)->data.mux.group = np->name;
1023 (*map)->data.mux.function = np->name;
1024
Tony Lindgren02e483f2013-10-02 21:39:39 -07001025 if (PCS_HAS_PINCONF) {
Wei Yongjun18442e62013-05-07 20:06:19 +08001026 res = pcs_parse_pinconf(pcs, np, function, map);
1027 if (res)
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +08001028 goto free_pingroups;
1029 *num_maps = 2;
1030 } else {
1031 *num_maps = 1;
1032 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001033 return 0;
1034
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +08001035free_pingroups:
Tony Lindgrencaeb7742016-12-27 09:20:02 -08001036 pinctrl_generic_remove_last_group(pcs->pctl);
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +08001037 *num_maps = 1;
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001038free_function:
Tony Lindgren571aec42016-12-27 09:20:03 -08001039 pinmux_generic_remove_last_function(pcs->pctl);
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001040
1041free_pins:
1042 devm_kfree(pcs->dev, pins);
1043
1044free_vals:
1045 devm_kfree(pcs->dev, vals);
1046
1047 return res;
1048}
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301049
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301050static int pcs_parse_bits_in_pinctrl_entry(struct pcs_device *pcs,
1051 struct device_node *np,
1052 struct pinctrl_map **map,
1053 unsigned *num_maps,
1054 const char **pgnames)
1055{
Axel Haslamdd68a522016-11-09 15:54:01 +01001056 const char *name = "pinctrl-single,bits";
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301057 struct pcs_func_vals *vals;
Tony Lindgren22d51272016-11-03 09:35:49 -07001058 int rows, *pins, found = 0, res = -ENOMEM, i;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301059 int npins_in_row;
1060 struct pcs_function *function;
1061
Tony Lindgren22d51272016-11-03 09:35:49 -07001062 rows = pinctrl_count_index_with_args(np, name);
Axel Haslamde7416b2016-11-09 15:54:00 +01001063 if (rows <= 0) {
1064 dev_err(pcs->dev, "Invalid number of rows: %d\n", rows);
1065 return -EINVAL;
1066 }
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301067
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301068 npins_in_row = pcs->width / pcs->bits_per_pin;
1069
1070 vals = devm_kzalloc(pcs->dev, sizeof(*vals) * rows * npins_in_row,
1071 GFP_KERNEL);
1072 if (!vals)
1073 return -ENOMEM;
1074
1075 pins = devm_kzalloc(pcs->dev, sizeof(*pins) * rows * npins_in_row,
1076 GFP_KERNEL);
1077 if (!pins)
1078 goto free_vals;
1079
Tony Lindgren22d51272016-11-03 09:35:49 -07001080 for (i = 0; i < rows; i++) {
1081 struct of_phandle_args pinctrl_spec;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301082 unsigned offset, val;
1083 unsigned mask, bit_pos, val_pos, mask_pos, submask;
1084 unsigned pin_num_from_lsb;
1085 int pin;
1086
Tony Lindgren22d51272016-11-03 09:35:49 -07001087 res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec);
1088 if (res)
1089 return res;
1090
1091 if (pinctrl_spec.args_count < 3) {
1092 dev_err(pcs->dev, "invalid args_count for spec: %i\n",
1093 pinctrl_spec.args_count);
1094 break;
1095 }
1096
1097 /* Index plus two value cells */
1098 offset = pinctrl_spec.args[0];
1099 val = pinctrl_spec.args[1];
1100 mask = pinctrl_spec.args[2];
1101
1102 dev_dbg(pcs->dev, "%s index: 0x%x value: 0x%x mask: 0x%x\n",
1103 pinctrl_spec.np->name, offset, val, mask);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301104
1105 /* Parse pins in each row from LSB */
1106 while (mask) {
Keerthy56b367c2016-04-14 10:29:16 +05301107 bit_pos = __ffs(mask);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301108 pin_num_from_lsb = bit_pos / pcs->bits_per_pin;
Keerthy56b367c2016-04-14 10:29:16 +05301109 mask_pos = ((pcs->fmask) << bit_pos);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301110 val_pos = val & mask_pos;
1111 submask = mask & mask_pos;
Tomi Valkeinenad5d25f2014-01-09 14:50:29 +02001112
1113 if ((mask & mask_pos) == 0) {
1114 dev_err(pcs->dev,
1115 "Invalid mask for %s at 0x%x\n",
1116 np->name, offset);
1117 break;
1118 }
1119
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301120 mask &= ~mask_pos;
1121
1122 if (submask != mask_pos) {
1123 dev_warn(pcs->dev,
1124 "Invalid submask 0x%x for %s at 0x%x\n",
1125 submask, np->name, offset);
1126 continue;
1127 }
1128
1129 vals[found].mask = submask;
1130 vals[found].reg = pcs->base + offset;
1131 vals[found].val = val_pos;
1132
1133 pin = pcs_get_pin_by_offset(pcs, offset);
1134 if (pin < 0) {
1135 dev_err(pcs->dev,
1136 "could not add functions for %s %ux\n",
1137 np->name, offset);
1138 break;
1139 }
1140 pins[found++] = pin + pin_num_from_lsb;
1141 }
1142 }
1143
1144 pgnames[0] = np->name;
1145 function = pcs_add_function(pcs, np, np->name, vals, found, pgnames, 1);
Dan Carpenter712778d2016-11-16 14:41:51 +03001146 if (!function) {
1147 res = -ENOMEM;
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301148 goto free_pins;
Dan Carpenter712778d2016-11-16 14:41:51 +03001149 }
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301150
Tony Lindgrencaeb7742016-12-27 09:20:02 -08001151 res = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301152 if (res < 0)
1153 goto free_function;
1154
1155 (*map)->type = PIN_MAP_TYPE_MUX_GROUP;
1156 (*map)->data.mux.group = np->name;
1157 (*map)->data.mux.function = np->name;
1158
Tony Lindgren02e483f2013-10-02 21:39:39 -07001159 if (PCS_HAS_PINCONF) {
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301160 dev_err(pcs->dev, "pinconf not supported\n");
1161 goto free_pingroups;
1162 }
1163
1164 *num_maps = 1;
1165 return 0;
1166
1167free_pingroups:
Tony Lindgrencaeb7742016-12-27 09:20:02 -08001168 pinctrl_generic_remove_last_group(pcs->pctl);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301169 *num_maps = 1;
1170free_function:
Tony Lindgren571aec42016-12-27 09:20:03 -08001171 pinmux_generic_remove_last_function(pcs->pctl);
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301172free_pins:
1173 devm_kfree(pcs->dev, pins);
1174
1175free_vals:
1176 devm_kfree(pcs->dev, vals);
1177
1178 return res;
1179}
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001180/**
1181 * pcs_dt_node_to_map() - allocates and parses pinctrl maps
1182 * @pctldev: pinctrl instance
1183 * @np_config: device tree pinmux entry
1184 * @map: array of map entries
1185 * @num_maps: number of maps
1186 */
1187static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev,
1188 struct device_node *np_config,
1189 struct pinctrl_map **map, unsigned *num_maps)
1190{
1191 struct pcs_device *pcs;
1192 const char **pgnames;
1193 int ret;
1194
1195 pcs = pinctrl_dev_get_drvdata(pctldev);
1196
Haojian Zhuang9dddb4d2013-02-17 19:42:55 +08001197 /* create 2 maps. One is for pinmux, and the other is for pinconf. */
1198 *map = devm_kzalloc(pcs->dev, sizeof(**map) * 2, GFP_KERNEL);
Sachin Kamat00e79d12012-11-20 16:34:39 +05301199 if (!*map)
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001200 return -ENOMEM;
1201
1202 *num_maps = 0;
1203
1204 pgnames = devm_kzalloc(pcs->dev, sizeof(*pgnames), GFP_KERNEL);
1205 if (!pgnames) {
1206 ret = -ENOMEM;
1207 goto free_map;
1208 }
1209
Manjunathappa, Prakash4e7e8012013-05-21 19:38:00 +05301210 if (pcs->bits_per_mux) {
1211 ret = pcs_parse_bits_in_pinctrl_entry(pcs, np_config, map,
1212 num_maps, pgnames);
1213 if (ret < 0) {
1214 dev_err(pcs->dev, "no pins entries for %s\n",
1215 np_config->name);
1216 goto free_pgnames;
1217 }
1218 } else {
1219 ret = pcs_parse_one_pinctrl_entry(pcs, np_config, map,
1220 num_maps, pgnames);
1221 if (ret < 0) {
1222 dev_err(pcs->dev, "no pins entries for %s\n",
1223 np_config->name);
1224 goto free_pgnames;
1225 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001226 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001227
1228 return 0;
1229
1230free_pgnames:
1231 devm_kfree(pcs->dev, pgnames);
1232free_map:
1233 devm_kfree(pcs->dev, *map);
1234
1235 return ret;
1236}
1237
1238/**
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001239 * pcs_irq_free() - free interrupt
1240 * @pcs: pcs driver instance
1241 */
1242static void pcs_irq_free(struct pcs_device *pcs)
1243{
1244 struct pcs_soc_data *pcs_soc = &pcs->socdata;
1245
1246 if (pcs_soc->irq < 0)
1247 return;
1248
1249 if (pcs->domain)
1250 irq_domain_remove(pcs->domain);
1251
1252 if (PCS_QUIRK_HAS_SHARED_IRQ)
1253 free_irq(pcs_soc->irq, pcs_soc);
1254 else
1255 irq_set_chained_handler(pcs_soc->irq, NULL);
1256}
1257
1258/**
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001259 * pcs_free_resources() - free memory used by this driver
1260 * @pcs: pcs driver instance
1261 */
1262static void pcs_free_resources(struct pcs_device *pcs)
1263{
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001264 pcs_irq_free(pcs);
Markus Elfringf10a2582015-11-05 17:10:22 +01001265 pinctrl_unregister(pcs->pctl);
Tony Lindgrencaeb7742016-12-27 09:20:02 -08001266
Tony Lindgren46222152016-11-03 09:35:48 -07001267#if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1268 if (pcs->missing_nr_pinctrl_cells)
1269 of_remove_property(pcs->np, pcs->missing_nr_pinctrl_cells);
1270#endif
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001271}
1272
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001273static const struct of_device_id pcs_of_match[];
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001274
Haojian Zhuanga1a277e2013-02-17 19:42:52 +08001275static int pcs_add_gpio_func(struct device_node *node, struct pcs_device *pcs)
1276{
1277 const char *propname = "pinctrl-single,gpio-range";
1278 const char *cellname = "#pinctrl-single,gpio-range-cells";
1279 struct of_phandle_args gpiospec;
1280 struct pcs_gpiofunc_range *range;
1281 int ret, i;
1282
1283 for (i = 0; ; i++) {
1284 ret = of_parse_phandle_with_args(node, propname, cellname,
1285 i, &gpiospec);
1286 /* Do not treat it as error. Only treat it as end condition. */
1287 if (ret) {
1288 ret = 0;
1289 break;
1290 }
1291 range = devm_kzalloc(pcs->dev, sizeof(*range), GFP_KERNEL);
1292 if (!range) {
1293 ret = -ENOMEM;
1294 break;
1295 }
1296 range->offset = gpiospec.args[0];
1297 range->npins = gpiospec.args[1];
1298 range->gpiofunc = gpiospec.args[2];
1299 mutex_lock(&pcs->mutex);
1300 list_add_tail(&range->node, &pcs->gpiofuncs);
1301 mutex_unlock(&pcs->mutex);
1302 }
1303 return ret;
1304}
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001305/**
1306 * @reg: virtual address of interrupt register
1307 * @hwirq: hardware irq number
1308 * @irq: virtual irq number
1309 * @node: list node
1310 */
1311struct pcs_interrupt {
1312 void __iomem *reg;
1313 irq_hw_number_t hwirq;
1314 unsigned int irq;
1315 struct list_head node;
1316};
1317
1318/**
1319 * pcs_irq_set() - enables or disables an interrupt
1320 *
1321 * Note that this currently assumes one interrupt per pinctrl
1322 * register that is typically used for wake-up events.
1323 */
1324static inline void pcs_irq_set(struct pcs_soc_data *pcs_soc,
1325 int irq, const bool enable)
1326{
1327 struct pcs_device *pcs;
1328 struct list_head *pos;
1329 unsigned mask;
1330
1331 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1332 list_for_each(pos, &pcs->irqs) {
1333 struct pcs_interrupt *pcswi;
1334 unsigned soc_mask;
1335
1336 pcswi = list_entry(pos, struct pcs_interrupt, node);
1337 if (irq != pcswi->irq)
1338 continue;
1339
1340 soc_mask = pcs_soc->irq_enable_mask;
1341 raw_spin_lock(&pcs->lock);
1342 mask = pcs->read(pcswi->reg);
1343 if (enable)
1344 mask |= soc_mask;
1345 else
1346 mask &= ~soc_mask;
1347 pcs->write(mask, pcswi->reg);
Tony Lindgren0ac3c0a42016-05-31 14:17:06 -07001348
1349 /* flush posted write */
1350 mask = pcs->read(pcswi->reg);
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001351 raw_spin_unlock(&pcs->lock);
1352 }
Roger Quadrosc9b3a7d2013-10-11 19:13:16 +03001353
1354 if (pcs_soc->rearm)
1355 pcs_soc->rearm();
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001356}
1357
1358/**
1359 * pcs_irq_mask() - mask pinctrl interrupt
1360 * @d: interrupt data
1361 */
1362static void pcs_irq_mask(struct irq_data *d)
1363{
1364 struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d);
1365
1366 pcs_irq_set(pcs_soc, d->irq, false);
1367}
1368
1369/**
1370 * pcs_irq_unmask() - unmask pinctrl interrupt
1371 * @d: interrupt data
1372 */
1373static void pcs_irq_unmask(struct irq_data *d)
1374{
1375 struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d);
1376
1377 pcs_irq_set(pcs_soc, d->irq, true);
1378}
1379
1380/**
1381 * pcs_irq_set_wake() - toggle the suspend and resume wake up
1382 * @d: interrupt data
1383 * @state: wake-up state
1384 *
1385 * Note that this should be called only for suspend and resume.
1386 * For runtime PM, the wake-up events should be enabled by default.
1387 */
1388static int pcs_irq_set_wake(struct irq_data *d, unsigned int state)
1389{
1390 if (state)
1391 pcs_irq_unmask(d);
1392 else
1393 pcs_irq_mask(d);
1394
1395 return 0;
1396}
1397
1398/**
1399 * pcs_irq_handle() - common interrupt handler
1400 * @pcs_irq: interrupt data
1401 *
1402 * Note that this currently assumes we have one interrupt bit per
1403 * mux register. This interrupt is typically used for wake-up events.
1404 * For more complex interrupts different handlers can be specified.
1405 */
1406static int pcs_irq_handle(struct pcs_soc_data *pcs_soc)
1407{
1408 struct pcs_device *pcs;
1409 struct list_head *pos;
1410 int count = 0;
1411
1412 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1413 list_for_each(pos, &pcs->irqs) {
1414 struct pcs_interrupt *pcswi;
1415 unsigned mask;
1416
1417 pcswi = list_entry(pos, struct pcs_interrupt, node);
1418 raw_spin_lock(&pcs->lock);
1419 mask = pcs->read(pcswi->reg);
1420 raw_spin_unlock(&pcs->lock);
1421 if (mask & pcs_soc->irq_status_mask) {
1422 generic_handle_irq(irq_find_mapping(pcs->domain,
1423 pcswi->hwirq));
1424 count++;
1425 }
1426 }
1427
1428 return count;
1429}
1430
1431/**
1432 * pcs_irq_handler() - handler for the shared interrupt case
1433 * @irq: interrupt
1434 * @d: data
1435 *
1436 * Use this for cases where multiple instances of
1437 * pinctrl-single share a single interrupt like on omaps.
1438 */
1439static irqreturn_t pcs_irq_handler(int irq, void *d)
1440{
1441 struct pcs_soc_data *pcs_soc = d;
1442
1443 return pcs_irq_handle(pcs_soc) ? IRQ_HANDLED : IRQ_NONE;
1444}
1445
1446/**
1447 * pcs_irq_handle() - handler for the dedicated chained interrupt case
1448 * @irq: interrupt
1449 * @desc: interrupt descriptor
1450 *
1451 * Use this if you have a separate interrupt for each
1452 * pinctrl-single instance.
1453 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +02001454static void pcs_irq_chain_handler(struct irq_desc *desc)
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001455{
1456 struct pcs_soc_data *pcs_soc = irq_desc_get_handler_data(desc);
1457 struct irq_chip *chip;
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001458
Jiang Liu5663bb22015-06-04 12:13:16 +08001459 chip = irq_desc_get_chip(desc);
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001460 chained_irq_enter(chip, desc);
Rickard Strandqvist849bfe02014-06-26 15:43:01 +02001461 pcs_irq_handle(pcs_soc);
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001462 /* REVISIT: export and add handle_bad_irq(irq, desc)? */
1463 chained_irq_exit(chip, desc);
1464
1465 return;
1466}
1467
1468static int pcs_irqdomain_map(struct irq_domain *d, unsigned int irq,
1469 irq_hw_number_t hwirq)
1470{
1471 struct pcs_soc_data *pcs_soc = d->host_data;
1472 struct pcs_device *pcs;
1473 struct pcs_interrupt *pcswi;
1474
1475 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1476 pcswi = devm_kzalloc(pcs->dev, sizeof(*pcswi), GFP_KERNEL);
1477 if (!pcswi)
1478 return -ENOMEM;
1479
1480 pcswi->reg = pcs->base + hwirq;
1481 pcswi->hwirq = hwirq;
1482 pcswi->irq = irq;
1483
1484 mutex_lock(&pcs->mutex);
1485 list_add_tail(&pcswi->node, &pcs->irqs);
1486 mutex_unlock(&pcs->mutex);
1487
1488 irq_set_chip_data(irq, pcs_soc);
1489 irq_set_chip_and_handler(irq, &pcs->chip,
1490 handle_level_irq);
Sudeep Holla3c177a12016-02-01 18:28:17 +00001491 irq_set_lockdep_class(irq, &pcs_lock_class);
Tony Lindgren1b9c0fb2013-10-18 16:20:05 -07001492 irq_set_noprobe(irq);
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001493
1494 return 0;
1495}
1496
Krzysztof Kozlowskie5b60952015-04-27 21:54:06 +09001497static const struct irq_domain_ops pcs_irqdomain_ops = {
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001498 .map = pcs_irqdomain_map,
1499 .xlate = irq_domain_xlate_onecell,
1500};
1501
1502/**
1503 * pcs_irq_init_chained_handler() - set up a chained interrupt handler
1504 * @pcs: pcs driver instance
1505 * @np: device node pointer
1506 */
1507static int pcs_irq_init_chained_handler(struct pcs_device *pcs,
1508 struct device_node *np)
1509{
1510 struct pcs_soc_data *pcs_soc = &pcs->socdata;
1511 const char *name = "pinctrl";
1512 int num_irqs;
1513
1514 if (!pcs_soc->irq_enable_mask ||
1515 !pcs_soc->irq_status_mask) {
1516 pcs_soc->irq = -1;
1517 return -EINVAL;
1518 }
1519
1520 INIT_LIST_HEAD(&pcs->irqs);
1521 pcs->chip.name = name;
1522 pcs->chip.irq_ack = pcs_irq_mask;
1523 pcs->chip.irq_mask = pcs_irq_mask;
1524 pcs->chip.irq_unmask = pcs_irq_unmask;
1525 pcs->chip.irq_set_wake = pcs_irq_set_wake;
1526
1527 if (PCS_QUIRK_HAS_SHARED_IRQ) {
1528 int res;
1529
1530 res = request_irq(pcs_soc->irq, pcs_irq_handler,
Grygorii Strashkoc10372e2015-07-06 18:13:37 +03001531 IRQF_SHARED | IRQF_NO_SUSPEND |
1532 IRQF_NO_THREAD,
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001533 name, pcs_soc);
1534 if (res) {
1535 pcs_soc->irq = -1;
1536 return res;
1537 }
1538 } else {
Thomas Gleixner20d5d142015-06-21 21:11:06 +02001539 irq_set_chained_handler_and_data(pcs_soc->irq,
1540 pcs_irq_chain_handler,
1541 pcs_soc);
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001542 }
1543
1544 /*
1545 * We can use the register offset as the hardirq
1546 * number as irq_domain_add_simple maps them lazily.
1547 * This way we can easily support more than one
1548 * interrupt per function if needed.
1549 */
1550 num_irqs = pcs->size;
1551
1552 pcs->domain = irq_domain_add_simple(np, num_irqs, 0,
1553 &pcs_irqdomain_ops,
1554 pcs_soc);
1555 if (!pcs->domain) {
1556 irq_set_chained_handler(pcs_soc->irq, NULL);
1557 return -EINVAL;
1558 }
1559
1560 return 0;
1561}
Haojian Zhuanga1a277e2013-02-17 19:42:52 +08001562
Jean-Francois Moine8cb440a2013-07-15 10:14:26 +02001563#ifdef CONFIG_PM
Hebbar Gururaja0f9bc4b2013-05-31 15:43:01 +05301564static int pinctrl_single_suspend(struct platform_device *pdev,
1565 pm_message_t state)
1566{
1567 struct pcs_device *pcs;
1568
1569 pcs = platform_get_drvdata(pdev);
1570 if (!pcs)
1571 return -EINVAL;
1572
1573 return pinctrl_force_sleep(pcs->pctl);
1574}
1575
1576static int pinctrl_single_resume(struct platform_device *pdev)
1577{
1578 struct pcs_device *pcs;
1579
1580 pcs = platform_get_drvdata(pdev);
1581 if (!pcs)
1582 return -EINVAL;
1583
1584 return pinctrl_force_default(pcs->pctl);
1585}
Jean-Francois Moine8cb440a2013-07-15 10:14:26 +02001586#endif
Hebbar Gururaja0f9bc4b2013-05-31 15:43:01 +05301587
Tony Lindgren46222152016-11-03 09:35:48 -07001588/**
1589 * pcs_quirk_missing_pinctrl_cells - handle legacy binding
1590 * @pcs: pinctrl driver instance
1591 * @np: device tree node
1592 * @cells: number of cells
1593 *
1594 * Handle legacy binding with no #pinctrl-cells. This should be
1595 * always two pinctrl-single,bit-per-mux and one for others.
1596 * At some point we may want to consider removing this.
1597 */
1598static int pcs_quirk_missing_pinctrl_cells(struct pcs_device *pcs,
1599 struct device_node *np,
1600 int cells)
1601{
1602 struct property *p;
1603 const char *name = "#pinctrl-cells";
1604 int error;
1605 u32 val;
1606
1607 error = of_property_read_u32(np, name, &val);
1608 if (!error)
1609 return 0;
1610
1611 dev_warn(pcs->dev, "please update dts to use %s = <%i>\n",
1612 name, cells);
1613
1614 p = devm_kzalloc(pcs->dev, sizeof(*p), GFP_KERNEL);
1615 if (!p)
1616 return -ENOMEM;
1617
1618 p->length = sizeof(__be32);
1619 p->value = devm_kzalloc(pcs->dev, sizeof(__be32), GFP_KERNEL);
1620 if (!p->value)
1621 return -ENOMEM;
1622 *(__be32 *)p->value = cpu_to_be32(cells);
1623
1624 p->name = devm_kstrdup(pcs->dev, name, GFP_KERNEL);
1625 if (!p->name)
1626 return -ENOMEM;
1627
1628 pcs->missing_nr_pinctrl_cells = p;
1629
1630#if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1631 error = of_add_property(np, pcs->missing_nr_pinctrl_cells);
1632#endif
1633
1634 return error;
1635}
1636
Greg Kroah-Hartman150632b2012-12-21 13:10:23 -08001637static int pcs_probe(struct platform_device *pdev)
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001638{
1639 struct device_node *np = pdev->dev.of_node;
1640 const struct of_device_id *match;
Tony Lindgrendc7743a2013-10-02 21:39:40 -07001641 struct pcs_pdata *pdata;
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001642 struct resource *res;
1643 struct pcs_device *pcs;
Tony Lindgren02e483f2013-10-02 21:39:39 -07001644 const struct pcs_soc_data *soc;
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001645 int ret;
1646
1647 match = of_match_device(pcs_of_match, &pdev->dev);
1648 if (!match)
1649 return -EINVAL;
1650
1651 pcs = devm_kzalloc(&pdev->dev, sizeof(*pcs), GFP_KERNEL);
1652 if (!pcs) {
1653 dev_err(&pdev->dev, "could not allocate\n");
1654 return -ENOMEM;
1655 }
1656 pcs->dev = &pdev->dev;
Tony Lindgren46222152016-11-03 09:35:48 -07001657 pcs->np = np;
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001658 raw_spin_lock_init(&pcs->lock);
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001659 mutex_init(&pcs->mutex);
Haojian Zhuanga1a277e2013-02-17 19:42:52 +08001660 INIT_LIST_HEAD(&pcs->gpiofuncs);
Tony Lindgren02e483f2013-10-02 21:39:39 -07001661 soc = match->data;
1662 pcs->flags = soc->flags;
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001663 memcpy(&pcs->socdata, soc, sizeof(*soc));
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001664
Tony Lindgrencd236042016-10-25 09:09:00 -07001665 ret = of_property_read_u32(np, "pinctrl-single,register-width",
1666 &pcs->width);
1667 if (ret) {
1668 dev_err(pcs->dev, "register width not specified\n");
1669
1670 return ret;
1671 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001672
Haojian Zhuang477ac772013-02-17 19:42:54 +08001673 ret = of_property_read_u32(np, "pinctrl-single,function-mask",
1674 &pcs->fmask);
1675 if (!ret) {
Keerthy56b367c2016-04-14 10:29:16 +05301676 pcs->fshift = __ffs(pcs->fmask);
Haojian Zhuang477ac772013-02-17 19:42:54 +08001677 pcs->fmax = pcs->fmask >> pcs->fshift;
1678 } else {
1679 /* If mask property doesn't exist, function mux is invalid. */
1680 pcs->fmask = 0;
1681 pcs->fshift = 0;
1682 pcs->fmax = 0;
1683 }
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001684
1685 ret = of_property_read_u32(np, "pinctrl-single,function-off",
1686 &pcs->foff);
1687 if (ret)
1688 pcs->foff = PCS_OFF_DISABLED;
1689
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +03001690 pcs->bits_per_mux = of_property_read_bool(np,
1691 "pinctrl-single,bit-per-mux");
Tony Lindgren46222152016-11-03 09:35:48 -07001692 ret = pcs_quirk_missing_pinctrl_cells(pcs, np,
1693 pcs->bits_per_mux ? 2 : 1);
1694 if (ret) {
1695 dev_err(&pdev->dev, "unable to patch #pinctrl-cells\n");
1696
1697 return ret;
1698 }
Peter Ujfalusi9e605cb2012-09-11 11:54:24 +03001699
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001700 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1701 if (!res) {
1702 dev_err(pcs->dev, "could not get resource\n");
1703 return -ENODEV;
1704 }
1705
1706 pcs->res = devm_request_mem_region(pcs->dev, res->start,
1707 resource_size(res), DRIVER_NAME);
1708 if (!pcs->res) {
1709 dev_err(pcs->dev, "could not get mem_region\n");
1710 return -EBUSY;
1711 }
1712
1713 pcs->size = resource_size(pcs->res);
1714 pcs->base = devm_ioremap(pcs->dev, pcs->res->start, pcs->size);
1715 if (!pcs->base) {
1716 dev_err(pcs->dev, "could not ioremap\n");
1717 return -ENODEV;
1718 }
1719
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001720 platform_set_drvdata(pdev, pcs);
1721
1722 switch (pcs->width) {
1723 case 8:
1724 pcs->read = pcs_readb;
1725 pcs->write = pcs_writeb;
1726 break;
1727 case 16:
1728 pcs->read = pcs_readw;
1729 pcs->write = pcs_writew;
1730 break;
1731 case 32:
1732 pcs->read = pcs_readl;
1733 pcs->write = pcs_writel;
1734 break;
1735 default:
1736 break;
1737 }
1738
1739 pcs->desc.name = DRIVER_NAME;
1740 pcs->desc.pctlops = &pcs_pinctrl_ops;
1741 pcs->desc.pmxops = &pcs_pinmux_ops;
Tony Lindgren02e483f2013-10-02 21:39:39 -07001742 if (PCS_HAS_PINCONF)
Axel Lina7bbdd72013-03-04 13:47:39 +08001743 pcs->desc.confops = &pcs_pinconf_ops;
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001744 pcs->desc.owner = THIS_MODULE;
1745
1746 ret = pcs_allocate_pin_table(pcs);
1747 if (ret < 0)
1748 goto free;
1749
Tony Lindgren950b0d92017-01-11 14:13:34 -08001750 ret = pinctrl_register_and_init(&pcs->desc, pcs->dev, pcs, &pcs->pctl);
1751 if (ret) {
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001752 dev_err(pcs->dev, "could not register single pinctrl driver\n");
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001753 goto free;
1754 }
1755
Haojian Zhuanga1a277e2013-02-17 19:42:52 +08001756 ret = pcs_add_gpio_func(np, pcs);
1757 if (ret < 0)
1758 goto free;
1759
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001760 pcs->socdata.irq = irq_of_parse_and_map(np, 0);
1761 if (pcs->socdata.irq)
1762 pcs->flags |= PCS_FEAT_IRQ;
1763
Tony Lindgrendc7743a2013-10-02 21:39:40 -07001764 /* We still need auxdata for some omaps for PRM interrupts */
1765 pdata = dev_get_platdata(&pdev->dev);
1766 if (pdata) {
1767 if (pdata->rearm)
1768 pcs->socdata.rearm = pdata->rearm;
1769 if (pdata->irq) {
1770 pcs->socdata.irq = pdata->irq;
1771 pcs->flags |= PCS_FEAT_IRQ;
1772 }
1773 }
1774
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001775 if (PCS_HAS_IRQ) {
1776 ret = pcs_irq_init_chained_handler(pcs, np);
1777 if (ret < 0)
1778 dev_warn(pcs->dev, "initialized with no interrupts\n");
1779 }
1780
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001781 dev_info(pcs->dev, "%i pins at pa %p size %u\n",
1782 pcs->desc.npins, pcs->base, pcs->size);
1783
1784 return 0;
1785
1786free:
1787 pcs_free_resources(pcs);
1788
1789 return ret;
1790}
1791
Bill Pembertonf90f54b2012-11-19 13:26:06 -05001792static int pcs_remove(struct platform_device *pdev)
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001793{
1794 struct pcs_device *pcs = platform_get_drvdata(pdev);
1795
1796 if (!pcs)
1797 return 0;
1798
1799 pcs_free_resources(pcs);
1800
1801 return 0;
1802}
1803
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001804static const struct pcs_soc_data pinctrl_single_omap_wkup = {
1805 .flags = PCS_QUIRK_SHARED_IRQ,
1806 .irq_enable_mask = (1 << 14), /* OMAP_WAKEUP_EN */
1807 .irq_status_mask = (1 << 15), /* OMAP_WAKEUP_EVENT */
1808};
1809
Nishanth Menon31320be2014-08-22 09:01:01 -05001810static const struct pcs_soc_data pinctrl_single_dra7 = {
Nishanth Menon31320be2014-08-22 09:01:01 -05001811 .irq_enable_mask = (1 << 24), /* WAKEUPENABLE */
1812 .irq_status_mask = (1 << 25), /* WAKEUPEVENT */
1813};
1814
Keerthyaa2293d2014-08-22 09:01:02 -05001815static const struct pcs_soc_data pinctrl_single_am437x = {
1816 .flags = PCS_QUIRK_SHARED_IRQ,
1817 .irq_enable_mask = (1 << 29), /* OMAP_WAKEUP_EN */
1818 .irq_status_mask = (1 << 30), /* OMAP_WAKEUP_EVENT */
1819};
1820
Tony Lindgren02e483f2013-10-02 21:39:39 -07001821static const struct pcs_soc_data pinctrl_single = {
1822};
1823
1824static const struct pcs_soc_data pinconf_single = {
1825 .flags = PCS_FEAT_PINCONF,
1826};
1827
Fabian Frederickbaa9946e2015-03-16 20:59:09 +01001828static const struct of_device_id pcs_of_match[] = {
Tony Lindgren3e6cee12013-10-02 21:39:40 -07001829 { .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup },
1830 { .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup },
1831 { .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup },
Nishanth Menon31320be2014-08-22 09:01:01 -05001832 { .compatible = "ti,dra7-padconf", .data = &pinctrl_single_dra7 },
Keerthyaa2293d2014-08-22 09:01:02 -05001833 { .compatible = "ti,am437-padconf", .data = &pinctrl_single_am437x },
Tony Lindgren02e483f2013-10-02 21:39:39 -07001834 { .compatible = "pinctrl-single", .data = &pinctrl_single },
1835 { .compatible = "pinconf-single", .data = &pinconf_single },
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001836 { },
1837};
1838MODULE_DEVICE_TABLE(of, pcs_of_match);
1839
1840static struct platform_driver pcs_driver = {
1841 .probe = pcs_probe,
Bill Pemberton2a36f082012-11-19 13:21:27 -05001842 .remove = pcs_remove,
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001843 .driver = {
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001844 .name = DRIVER_NAME,
1845 .of_match_table = pcs_of_match,
1846 },
Hebbar Gururaja0f9bc4b2013-05-31 15:43:01 +05301847#ifdef CONFIG_PM
1848 .suspend = pinctrl_single_suspend,
1849 .resume = pinctrl_single_resume,
1850#endif
Tony Lindgren8b8b0912012-07-10 02:05:46 -07001851};
1852
1853module_platform_driver(pcs_driver);
1854
1855MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>");
1856MODULE_DESCRIPTION("One-register-per-pin type device tree based pinctrl driver");
1857MODULE_LICENSE("GPL v2");