Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1 | /* |
| 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 Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 18 | #include <linux/interrupt.h> |
| 19 | |
| 20 | #include <linux/irqchip/chained_irq.h> |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 21 | |
| 22 | #include <linux/of.h> |
| 23 | #include <linux/of_device.h> |
| 24 | #include <linux/of_address.h> |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 25 | #include <linux/of_irq.h> |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 26 | |
| 27 | #include <linux/pinctrl/pinctrl.h> |
| 28 | #include <linux/pinctrl/pinmux.h> |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 29 | #include <linux/pinctrl/pinconf-generic.h> |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 30 | |
Tony Lindgren | dc7743a | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 31 | #include <linux/platform_data/pinctrl-single.h> |
| 32 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 33 | #include "core.h" |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 34 | #include "devicetree.h" |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 35 | #include "pinconf.h" |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 36 | #include "pinmux.h" |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 37 | |
| 38 | #define DRIVER_NAME "pinctrl-single" |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 39 | #define PCS_OFF_DISABLED ~0U |
| 40 | |
| 41 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 42 | * struct pcs_func_vals - mux function register offset and value pair |
| 43 | * @reg: register virtual address |
| 44 | * @val: register value |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 45 | * @mask: mask |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 46 | */ |
| 47 | struct pcs_func_vals { |
| 48 | void __iomem *reg; |
| 49 | unsigned val; |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 50 | unsigned mask; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | /** |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 54 | * struct pcs_conf_vals - pinconf parameter, pinconf register offset |
| 55 | * and value, enable, disable, mask |
| 56 | * @param: config parameter |
| 57 | * @val: user input bits in the pinconf register |
| 58 | * @enable: enable bits in the pinconf register |
| 59 | * @disable: disable bits in the pinconf register |
| 60 | * @mask: mask bits in the register value |
| 61 | */ |
| 62 | struct pcs_conf_vals { |
| 63 | enum pin_config_param param; |
| 64 | unsigned val; |
| 65 | unsigned enable; |
| 66 | unsigned disable; |
| 67 | unsigned mask; |
| 68 | }; |
| 69 | |
| 70 | /** |
| 71 | * struct pcs_conf_type - pinconf property name, pinconf param pair |
| 72 | * @name: property name in DTS file |
| 73 | * @param: config parameter |
| 74 | */ |
| 75 | struct pcs_conf_type { |
| 76 | const char *name; |
| 77 | enum pin_config_param param; |
| 78 | }; |
| 79 | |
| 80 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 81 | * struct pcs_function - pinctrl function |
| 82 | * @name: pinctrl function name |
| 83 | * @vals: register and vals array |
| 84 | * @nvals: number of entries in vals array |
| 85 | * @pgnames: array of pingroup names the function uses |
| 86 | * @npgnames: number of pingroup names the function uses |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 87 | * @conf: array of pin configurations |
| 88 | * @nconfs: number of pin configurations available |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 89 | * @node: list node |
| 90 | */ |
| 91 | struct pcs_function { |
| 92 | const char *name; |
| 93 | struct pcs_func_vals *vals; |
| 94 | unsigned nvals; |
| 95 | const char **pgnames; |
| 96 | int npgnames; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 97 | struct pcs_conf_vals *conf; |
| 98 | int nconfs; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 99 | struct list_head node; |
| 100 | }; |
| 101 | |
| 102 | /** |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 103 | * struct pcs_gpiofunc_range - pin ranges with same mux value of gpio function |
| 104 | * @offset: offset base of pins |
| 105 | * @npins: number pins with the same mux value of gpio function |
| 106 | * @gpiofunc: mux value of gpio function |
| 107 | * @node: list node |
| 108 | */ |
| 109 | struct pcs_gpiofunc_range { |
| 110 | unsigned offset; |
| 111 | unsigned npins; |
| 112 | unsigned gpiofunc; |
| 113 | struct list_head node; |
| 114 | }; |
| 115 | |
| 116 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 117 | * struct pcs_data - wrapper for data needed by pinctrl framework |
| 118 | * @pa: pindesc array |
| 119 | * @cur: index to current element |
| 120 | * |
| 121 | * REVISIT: We should be able to drop this eventually by adding |
| 122 | * support for registering pins individually in the pinctrl |
| 123 | * framework for those drivers that don't need a static array. |
| 124 | */ |
| 125 | struct pcs_data { |
| 126 | struct pinctrl_pin_desc *pa; |
| 127 | int cur; |
| 128 | }; |
| 129 | |
| 130 | /** |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 131 | * struct pcs_soc_data - SoC specific settings |
| 132 | * @flags: initial SoC specific PCS_FEAT_xxx values |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 133 | * @irq: optional interrupt for the controller |
| 134 | * @irq_enable_mask: optional SoC specific interrupt enable mask |
| 135 | * @irq_status_mask: optional SoC specific interrupt status mask |
Tony Lindgren | dc7743a | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 136 | * @rearm: optional SoC specific wake-up rearm function |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 137 | */ |
| 138 | struct pcs_soc_data { |
| 139 | unsigned flags; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 140 | int irq; |
| 141 | unsigned irq_enable_mask; |
| 142 | unsigned irq_status_mask; |
Tony Lindgren | dc7743a | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 143 | void (*rearm)(void); |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 147 | * struct pcs_device - pinctrl device instance |
| 148 | * @res: resources |
| 149 | * @base: virtual address of the controller |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 150 | * @saved_vals: saved values for the controller |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 151 | * @size: size of the ioremapped area |
| 152 | * @dev: device entry |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 153 | * @np: device tree node |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 154 | * @pctl: pin controller device |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 155 | * @flags: mask of PCS_FEAT_xxx values |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 156 | * @missing_nr_pinctrl_cells: for legacy binding, may go away |
| 157 | * @socdata: soc specific data |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 158 | * @lock: spinlock for register access |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 159 | * @mutex: mutex protecting the lists |
| 160 | * @width: bits per mux register |
| 161 | * @fmask: function register mask |
| 162 | * @fshift: function register shift |
| 163 | * @foff: value to turn mux off |
| 164 | * @fmax: max number of functions in fmask |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 165 | * @bits_per_mux: number of bits per mux |
| 166 | * @bits_per_pin: number of bits per pin |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 167 | * @pins: physical pins on the SoC |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 168 | * @gpiofuncs: list of gpio functions |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 169 | * @irqs: list of interrupt registers |
| 170 | * @chip: chip container for this instance |
| 171 | * @domain: IRQ domain for this instance |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 172 | * @desc: pin controller descriptor |
| 173 | * @read: register read function to use |
| 174 | * @write: register write function to use |
| 175 | */ |
| 176 | struct pcs_device { |
| 177 | struct resource *res; |
| 178 | void __iomem *base; |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 179 | void *saved_vals; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 180 | unsigned size; |
| 181 | struct device *dev; |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 182 | struct device_node *np; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 183 | struct pinctrl_dev *pctl; |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 184 | unsigned flags; |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 185 | #define PCS_CONTEXT_LOSS_OFF (1 << 3) |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 186 | #define PCS_QUIRK_SHARED_IRQ (1 << 2) |
| 187 | #define PCS_FEAT_IRQ (1 << 1) |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 188 | #define PCS_FEAT_PINCONF (1 << 0) |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 189 | struct property *missing_nr_pinctrl_cells; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 190 | struct pcs_soc_data socdata; |
| 191 | raw_spinlock_t lock; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 192 | struct mutex mutex; |
| 193 | unsigned width; |
| 194 | unsigned fmask; |
| 195 | unsigned fshift; |
| 196 | unsigned foff; |
| 197 | unsigned fmax; |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 198 | bool bits_per_mux; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 199 | unsigned bits_per_pin; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 200 | struct pcs_data pins; |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 201 | struct list_head gpiofuncs; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 202 | struct list_head irqs; |
| 203 | struct irq_chip chip; |
| 204 | struct irq_domain *domain; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 205 | struct pinctrl_desc desc; |
| 206 | unsigned (*read)(void __iomem *reg); |
| 207 | void (*write)(unsigned val, void __iomem *reg); |
| 208 | }; |
| 209 | |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 210 | #define PCS_QUIRK_HAS_SHARED_IRQ (pcs->flags & PCS_QUIRK_SHARED_IRQ) |
| 211 | #define PCS_HAS_IRQ (pcs->flags & PCS_FEAT_IRQ) |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 212 | #define PCS_HAS_PINCONF (pcs->flags & PCS_FEAT_PINCONF) |
| 213 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 214 | static int pcs_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin, |
| 215 | unsigned long *config); |
| 216 | static int pcs_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin, |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 217 | unsigned long *configs, unsigned num_configs); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 218 | |
| 219 | static enum pin_config_param pcs_bias[] = { |
| 220 | PIN_CONFIG_BIAS_PULL_DOWN, |
| 221 | PIN_CONFIG_BIAS_PULL_UP, |
| 222 | }; |
| 223 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 224 | /* |
Sudeep Holla | 3c177a1 | 2016-02-01 18:28:17 +0000 | [diff] [blame] | 225 | * This lock class tells lockdep that irqchip core that this single |
| 226 | * pinctrl can be in a different category than its parents, so it won't |
| 227 | * report false recursion. |
| 228 | */ |
| 229 | static struct lock_class_key pcs_lock_class; |
| 230 | |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 231 | /* Class for the IRQ request mutex */ |
| 232 | static struct lock_class_key pcs_request_class; |
| 233 | |
Sudeep Holla | 3c177a1 | 2016-02-01 18:28:17 +0000 | [diff] [blame] | 234 | /* |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 235 | * REVISIT: Reads and writes could eventually use regmap or something |
| 236 | * generic. But at least on omaps, some mux registers are performance |
| 237 | * critical as they may need to be remuxed every time before and after |
| 238 | * idle. Adding tests for register access width for every read and |
| 239 | * write like regmap is doing is not desired, and caching the registers |
| 240 | * does not help in this case. |
| 241 | */ |
| 242 | |
| 243 | static unsigned __maybe_unused pcs_readb(void __iomem *reg) |
| 244 | { |
| 245 | return readb(reg); |
| 246 | } |
| 247 | |
| 248 | static unsigned __maybe_unused pcs_readw(void __iomem *reg) |
| 249 | { |
| 250 | return readw(reg); |
| 251 | } |
| 252 | |
| 253 | static unsigned __maybe_unused pcs_readl(void __iomem *reg) |
| 254 | { |
| 255 | return readl(reg); |
| 256 | } |
| 257 | |
| 258 | static void __maybe_unused pcs_writeb(unsigned val, void __iomem *reg) |
| 259 | { |
| 260 | writeb(val, reg); |
| 261 | } |
| 262 | |
| 263 | static void __maybe_unused pcs_writew(unsigned val, void __iomem *reg) |
| 264 | { |
| 265 | writew(val, reg); |
| 266 | } |
| 267 | |
| 268 | static void __maybe_unused pcs_writel(unsigned val, void __iomem *reg) |
| 269 | { |
| 270 | writel(val, reg); |
| 271 | } |
| 272 | |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 273 | static unsigned int pcs_pin_reg_offset_get(struct pcs_device *pcs, |
| 274 | unsigned int pin) |
| 275 | { |
| 276 | unsigned int mux_bytes = pcs->width / BITS_PER_BYTE; |
| 277 | |
| 278 | if (pcs->bits_per_mux) { |
| 279 | unsigned int pin_offset_bytes; |
| 280 | |
| 281 | pin_offset_bytes = (pcs->bits_per_pin * pin) / BITS_PER_BYTE; |
| 282 | return (pin_offset_bytes / mux_bytes) * mux_bytes; |
| 283 | } |
| 284 | |
| 285 | return pin * mux_bytes; |
| 286 | } |
| 287 | |
| 288 | static unsigned int pcs_pin_shift_reg_get(struct pcs_device *pcs, |
| 289 | unsigned int pin) |
| 290 | { |
| 291 | return (pin % (pcs->width / pcs->bits_per_pin)) * pcs->bits_per_pin; |
| 292 | } |
| 293 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 294 | static void pcs_pin_dbg_show(struct pinctrl_dev *pctldev, |
| 295 | struct seq_file *s, |
Haojian Zhuang | e7ed671 | 2012-11-07 23:19:42 +0800 | [diff] [blame] | 296 | unsigned pin) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 297 | { |
Matt Porter | 7d66ce7 | 2012-09-26 15:07:43 -0400 | [diff] [blame] | 298 | struct pcs_device *pcs; |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 299 | unsigned int val; |
Tony Lindgren | 223decc | 2016-10-27 07:59:52 -0700 | [diff] [blame] | 300 | unsigned long offset; |
| 301 | size_t pa; |
Matt Porter | 7d66ce7 | 2012-09-26 15:07:43 -0400 | [diff] [blame] | 302 | |
| 303 | pcs = pinctrl_dev_get_drvdata(pctldev); |
| 304 | |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 305 | offset = pcs_pin_reg_offset_get(pcs, pin); |
Tony Lindgren | 223decc | 2016-10-27 07:59:52 -0700 | [diff] [blame] | 306 | val = pcs->read(pcs->base + offset); |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 307 | |
| 308 | if (pcs->bits_per_mux) |
| 309 | val &= pcs->fmask << pcs_pin_shift_reg_get(pcs, pin); |
| 310 | |
Tony Lindgren | 223decc | 2016-10-27 07:59:52 -0700 | [diff] [blame] | 311 | pa = pcs->res->start + offset; |
Matt Porter | 7d66ce7 | 2012-09-26 15:07:43 -0400 | [diff] [blame] | 312 | |
Tony Lindgren | 223decc | 2016-10-27 07:59:52 -0700 | [diff] [blame] | 313 | seq_printf(s, "%zx %08x %s ", pa, val, DRIVER_NAME); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static void pcs_dt_free_map(struct pinctrl_dev *pctldev, |
| 317 | struct pinctrl_map *map, unsigned num_maps) |
| 318 | { |
| 319 | struct pcs_device *pcs; |
| 320 | |
| 321 | pcs = pinctrl_dev_get_drvdata(pctldev); |
| 322 | devm_kfree(pcs->dev, map); |
| 323 | } |
| 324 | |
| 325 | static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev, |
| 326 | struct device_node *np_config, |
| 327 | struct pinctrl_map **map, unsigned *num_maps); |
| 328 | |
Laurent Pinchart | 022ab14 | 2013-02-16 10:25:07 +0100 | [diff] [blame] | 329 | static const struct pinctrl_ops pcs_pinctrl_ops = { |
Tony Lindgren | caeb774 | 2016-12-27 09:20:02 -0800 | [diff] [blame] | 330 | .get_groups_count = pinctrl_generic_get_group_count, |
| 331 | .get_group_name = pinctrl_generic_get_group_name, |
| 332 | .get_group_pins = pinctrl_generic_get_group_pins, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 333 | .pin_dbg_show = pcs_pin_dbg_show, |
| 334 | .dt_node_to_map = pcs_dt_node_to_map, |
| 335 | .dt_free_map = pcs_dt_free_map, |
| 336 | }; |
| 337 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 338 | static int pcs_get_function(struct pinctrl_dev *pctldev, unsigned pin, |
| 339 | struct pcs_function **func) |
| 340 | { |
| 341 | struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev); |
| 342 | struct pin_desc *pdesc = pin_desc_get(pctldev, pin); |
| 343 | const struct pinctrl_setting_mux *setting; |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 344 | struct function_desc *function; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 345 | unsigned fselector; |
| 346 | |
| 347 | /* If pin is not described in DTS & enabled, mux_setting is NULL. */ |
| 348 | setting = pdesc->mux_setting; |
| 349 | if (!setting) |
| 350 | return -ENOTSUPP; |
| 351 | fselector = setting->func; |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 352 | function = pinmux_generic_get_function(pctldev, fselector); |
| 353 | *func = function->data; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 354 | if (!(*func)) { |
| 355 | dev_err(pcs->dev, "%s could not find function%i\n", |
| 356 | __func__, fselector); |
| 357 | return -ENOTSUPP; |
| 358 | } |
| 359 | return 0; |
| 360 | } |
| 361 | |
Linus Walleij | 03e9f0c | 2014-09-03 13:02:56 +0200 | [diff] [blame] | 362 | static int pcs_set_mux(struct pinctrl_dev *pctldev, unsigned fselector, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 363 | unsigned group) |
| 364 | { |
| 365 | struct pcs_device *pcs; |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 366 | struct function_desc *function; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 367 | struct pcs_function *func; |
| 368 | int i; |
| 369 | |
| 370 | pcs = pinctrl_dev_get_drvdata(pctldev); |
Haojian Zhuang | 477ac77 | 2013-02-17 19:42:54 +0800 | [diff] [blame] | 371 | /* If function mask is null, needn't enable it. */ |
| 372 | if (!pcs->fmask) |
| 373 | return 0; |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 374 | function = pinmux_generic_get_function(pctldev, fselector); |
| 375 | func = function->data; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 376 | if (!func) |
| 377 | return -EINVAL; |
| 378 | |
| 379 | dev_dbg(pcs->dev, "enabling %s function%i\n", |
| 380 | func->name, fselector); |
| 381 | |
| 382 | for (i = 0; i < func->nvals; i++) { |
| 383 | struct pcs_func_vals *vals; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 384 | unsigned long flags; |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 385 | unsigned val, mask; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 386 | |
| 387 | vals = &func->vals[i]; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 388 | raw_spin_lock_irqsave(&pcs->lock, flags); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 389 | val = pcs->read(vals->reg); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 390 | |
| 391 | if (pcs->bits_per_mux) |
| 392 | mask = vals->mask; |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 393 | else |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 394 | mask = pcs->fmask; |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 395 | |
| 396 | val &= ~mask; |
| 397 | val |= (vals->val & mask); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 398 | pcs->write(val, vals->reg); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 399 | raw_spin_unlock_irqrestore(&pcs->lock, flags); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | return 0; |
| 403 | } |
| 404 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 405 | static int pcs_request_gpio(struct pinctrl_dev *pctldev, |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 406 | struct pinctrl_gpio_range *range, unsigned pin) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 407 | { |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 408 | struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev); |
| 409 | struct pcs_gpiofunc_range *frange = NULL; |
| 410 | struct list_head *pos, *tmp; |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 411 | unsigned data; |
| 412 | |
Haojian Zhuang | 477ac77 | 2013-02-17 19:42:54 +0800 | [diff] [blame] | 413 | /* If function mask is null, return directly. */ |
| 414 | if (!pcs->fmask) |
| 415 | return -ENOTSUPP; |
| 416 | |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 417 | list_for_each_safe(pos, tmp, &pcs->gpiofuncs) { |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 418 | u32 offset; |
| 419 | |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 420 | frange = list_entry(pos, struct pcs_gpiofunc_range, node); |
| 421 | if (pin >= frange->offset + frange->npins |
| 422 | || pin < frange->offset) |
| 423 | continue; |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 424 | |
| 425 | offset = pcs_pin_reg_offset_get(pcs, pin); |
David Lechner | 45dcb54 | 2018-02-19 15:57:07 -0600 | [diff] [blame] | 426 | |
| 427 | if (pcs->bits_per_mux) { |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 428 | int pin_shift = pcs_pin_shift_reg_get(pcs, pin); |
David Lechner | 45dcb54 | 2018-02-19 15:57:07 -0600 | [diff] [blame] | 429 | |
| 430 | data = pcs->read(pcs->base + offset); |
| 431 | data &= ~(pcs->fmask << pin_shift); |
| 432 | data |= frange->gpiofunc << pin_shift; |
| 433 | pcs->write(data, pcs->base + offset); |
| 434 | } else { |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 435 | data = pcs->read(pcs->base + offset); |
David Lechner | 45dcb54 | 2018-02-19 15:57:07 -0600 | [diff] [blame] | 436 | data &= ~pcs->fmask; |
| 437 | data |= frange->gpiofunc; |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 438 | pcs->write(data, pcs->base + offset); |
David Lechner | 45dcb54 | 2018-02-19 15:57:07 -0600 | [diff] [blame] | 439 | } |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 440 | break; |
| 441 | } |
| 442 | return 0; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 443 | } |
| 444 | |
Laurent Pinchart | 022ab14 | 2013-02-16 10:25:07 +0100 | [diff] [blame] | 445 | static const struct pinmux_ops pcs_pinmux_ops = { |
Tony Lindgren | 571aec4 | 2016-12-27 09:20:03 -0800 | [diff] [blame] | 446 | .get_functions_count = pinmux_generic_get_function_count, |
| 447 | .get_function_name = pinmux_generic_get_function_name, |
| 448 | .get_function_groups = pinmux_generic_get_function_groups, |
Linus Walleij | 9e3a979 | 2014-09-05 09:53:23 +0200 | [diff] [blame] | 449 | .set_mux = pcs_set_mux, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 450 | .gpio_request_enable = pcs_request_gpio, |
| 451 | }; |
| 452 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 453 | /* Clear BIAS value */ |
| 454 | static void pcs_pinconf_clear_bias(struct pinctrl_dev *pctldev, unsigned pin) |
| 455 | { |
| 456 | unsigned long config; |
| 457 | int i; |
| 458 | for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) { |
| 459 | config = pinconf_to_config_packed(pcs_bias[i], 0); |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 460 | pcs_pinconf_set(pctldev, pin, &config, 1); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 461 | } |
| 462 | } |
| 463 | |
| 464 | /* |
| 465 | * Check whether PIN_CONFIG_BIAS_DISABLE is valid. |
| 466 | * It's depend on that PULL_DOWN & PULL_UP configs are all invalid. |
| 467 | */ |
| 468 | static bool pcs_pinconf_bias_disable(struct pinctrl_dev *pctldev, unsigned pin) |
| 469 | { |
| 470 | unsigned long config; |
| 471 | int i; |
| 472 | |
| 473 | for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) { |
| 474 | config = pinconf_to_config_packed(pcs_bias[i], 0); |
| 475 | if (!pcs_pinconf_get(pctldev, pin, &config)) |
| 476 | goto out; |
| 477 | } |
| 478 | return true; |
| 479 | out: |
| 480 | return false; |
| 481 | } |
| 482 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 483 | static int pcs_pinconf_get(struct pinctrl_dev *pctldev, |
| 484 | unsigned pin, unsigned long *config) |
| 485 | { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 486 | struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev); |
| 487 | struct pcs_function *func; |
| 488 | enum pin_config_param param; |
| 489 | unsigned offset = 0, data = 0, i, j, ret; |
| 490 | |
| 491 | ret = pcs_get_function(pctldev, pin, &func); |
| 492 | if (ret) |
| 493 | return ret; |
| 494 | |
| 495 | for (i = 0; i < func->nconfs; i++) { |
| 496 | param = pinconf_to_config_param(*config); |
| 497 | if (param == PIN_CONFIG_BIAS_DISABLE) { |
| 498 | if (pcs_pinconf_bias_disable(pctldev, pin)) { |
| 499 | *config = 0; |
| 500 | return 0; |
| 501 | } else { |
| 502 | return -ENOTSUPP; |
| 503 | } |
| 504 | } else if (param != func->conf[i].param) { |
| 505 | continue; |
| 506 | } |
| 507 | |
| 508 | offset = pin * (pcs->width / BITS_PER_BYTE); |
| 509 | data = pcs->read(pcs->base + offset) & func->conf[i].mask; |
| 510 | switch (func->conf[i].param) { |
| 511 | /* 4 parameters */ |
| 512 | case PIN_CONFIG_BIAS_PULL_DOWN: |
| 513 | case PIN_CONFIG_BIAS_PULL_UP: |
| 514 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 515 | if ((data != func->conf[i].enable) || |
| 516 | (data == func->conf[i].disable)) |
| 517 | return -ENOTSUPP; |
| 518 | *config = 0; |
| 519 | break; |
| 520 | /* 2 parameters */ |
| 521 | case PIN_CONFIG_INPUT_SCHMITT: |
| 522 | for (j = 0; j < func->nconfs; j++) { |
| 523 | switch (func->conf[j].param) { |
| 524 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 525 | if (data != func->conf[j].enable) |
| 526 | return -ENOTSUPP; |
| 527 | break; |
| 528 | default: |
| 529 | break; |
| 530 | } |
| 531 | } |
| 532 | *config = data; |
| 533 | break; |
| 534 | case PIN_CONFIG_DRIVE_STRENGTH: |
| 535 | case PIN_CONFIG_SLEW_RATE: |
Andy Shevchenko | 31f9a42 | 2021-04-12 17:07:40 +0300 | [diff] [blame] | 536 | case PIN_CONFIG_MODE_LOW_POWER: |
Dario Binacchi | 8c987eb1 | 2021-06-02 17:04:20 +0200 | [diff] [blame^] | 537 | case PIN_CONFIG_INPUT_ENABLE: |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 538 | default: |
| 539 | *config = data; |
| 540 | break; |
| 541 | } |
| 542 | return 0; |
| 543 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 544 | return -ENOTSUPP; |
| 545 | } |
| 546 | |
| 547 | static int pcs_pinconf_set(struct pinctrl_dev *pctldev, |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 548 | unsigned pin, unsigned long *configs, |
| 549 | unsigned num_configs) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 550 | { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 551 | struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev); |
| 552 | struct pcs_function *func; |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 553 | unsigned offset = 0, shift = 0, i, data, ret; |
Mika Westerberg | 58957d2 | 2017-01-23 15:34:32 +0300 | [diff] [blame] | 554 | u32 arg; |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 555 | int j; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 556 | |
| 557 | ret = pcs_get_function(pctldev, pin, &func); |
| 558 | if (ret) |
| 559 | return ret; |
| 560 | |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 561 | for (j = 0; j < num_configs; j++) { |
| 562 | for (i = 0; i < func->nconfs; i++) { |
| 563 | if (pinconf_to_config_param(configs[j]) |
| 564 | != func->conf[i].param) |
| 565 | continue; |
| 566 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 567 | offset = pin * (pcs->width / BITS_PER_BYTE); |
| 568 | data = pcs->read(pcs->base + offset); |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 569 | arg = pinconf_to_config_argument(configs[j]); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 570 | switch (func->conf[i].param) { |
| 571 | /* 2 parameters */ |
| 572 | case PIN_CONFIG_INPUT_SCHMITT: |
| 573 | case PIN_CONFIG_DRIVE_STRENGTH: |
| 574 | case PIN_CONFIG_SLEW_RATE: |
Andy Shevchenko | 31f9a42 | 2021-04-12 17:07:40 +0300 | [diff] [blame] | 575 | case PIN_CONFIG_MODE_LOW_POWER: |
Dario Binacchi | 8c987eb1 | 2021-06-02 17:04:20 +0200 | [diff] [blame^] | 576 | case PIN_CONFIG_INPUT_ENABLE: |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 577 | shift = ffs(func->conf[i].mask) - 1; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 578 | data &= ~func->conf[i].mask; |
| 579 | data |= (arg << shift) & func->conf[i].mask; |
| 580 | break; |
| 581 | /* 4 parameters */ |
| 582 | case PIN_CONFIG_BIAS_DISABLE: |
| 583 | pcs_pinconf_clear_bias(pctldev, pin); |
| 584 | break; |
| 585 | case PIN_CONFIG_BIAS_PULL_DOWN: |
| 586 | case PIN_CONFIG_BIAS_PULL_UP: |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 587 | if (arg) |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 588 | pcs_pinconf_clear_bias(pctldev, pin); |
Gustavo A. R. Silva | c442955 | 2020-07-16 16:23:17 -0500 | [diff] [blame] | 589 | fallthrough; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 590 | case PIN_CONFIG_INPUT_SCHMITT_ENABLE: |
| 591 | data &= ~func->conf[i].mask; |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 592 | if (arg) |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 593 | data |= func->conf[i].enable; |
| 594 | else |
| 595 | data |= func->conf[i].disable; |
| 596 | break; |
| 597 | default: |
| 598 | return -ENOTSUPP; |
| 599 | } |
| 600 | pcs->write(data, pcs->base + offset); |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 601 | |
| 602 | break; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 603 | } |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 604 | if (i >= func->nconfs) |
| 605 | return -ENOTSUPP; |
| 606 | } /* for each config */ |
| 607 | |
| 608 | return 0; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | static int pcs_pinconf_group_get(struct pinctrl_dev *pctldev, |
| 612 | unsigned group, unsigned long *config) |
| 613 | { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 614 | const unsigned *pins; |
| 615 | unsigned npins, old = 0; |
| 616 | int i, ret; |
| 617 | |
Tony Lindgren | caeb774 | 2016-12-27 09:20:02 -0800 | [diff] [blame] | 618 | ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 619 | if (ret) |
| 620 | return ret; |
| 621 | for (i = 0; i < npins; i++) { |
| 622 | if (pcs_pinconf_get(pctldev, pins[i], config)) |
| 623 | return -ENOTSUPP; |
| 624 | /* configs do not match between two pins */ |
| 625 | if (i && (old != *config)) |
| 626 | return -ENOTSUPP; |
| 627 | old = *config; |
| 628 | } |
| 629 | return 0; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static int pcs_pinconf_group_set(struct pinctrl_dev *pctldev, |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 633 | unsigned group, unsigned long *configs, |
| 634 | unsigned num_configs) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 635 | { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 636 | const unsigned *pins; |
| 637 | unsigned npins; |
| 638 | int i, ret; |
| 639 | |
Tony Lindgren | caeb774 | 2016-12-27 09:20:02 -0800 | [diff] [blame] | 640 | ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 641 | if (ret) |
| 642 | return ret; |
| 643 | for (i = 0; i < npins; i++) { |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 644 | if (pcs_pinconf_set(pctldev, pins[i], configs, num_configs)) |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 645 | return -ENOTSUPP; |
| 646 | } |
| 647 | return 0; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | static void pcs_pinconf_dbg_show(struct pinctrl_dev *pctldev, |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 651 | struct seq_file *s, unsigned pin) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 652 | { |
| 653 | } |
| 654 | |
| 655 | static void pcs_pinconf_group_dbg_show(struct pinctrl_dev *pctldev, |
| 656 | struct seq_file *s, unsigned selector) |
| 657 | { |
| 658 | } |
| 659 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 660 | static void pcs_pinconf_config_dbg_show(struct pinctrl_dev *pctldev, |
| 661 | struct seq_file *s, |
| 662 | unsigned long config) |
| 663 | { |
| 664 | pinconf_generic_dump_config(pctldev, s, config); |
| 665 | } |
| 666 | |
Laurent Pinchart | 022ab14 | 2013-02-16 10:25:07 +0100 | [diff] [blame] | 667 | static const struct pinconf_ops pcs_pinconf_ops = { |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 668 | .pin_config_get = pcs_pinconf_get, |
| 669 | .pin_config_set = pcs_pinconf_set, |
| 670 | .pin_config_group_get = pcs_pinconf_group_get, |
| 671 | .pin_config_group_set = pcs_pinconf_group_set, |
| 672 | .pin_config_dbg_show = pcs_pinconf_dbg_show, |
| 673 | .pin_config_group_dbg_show = pcs_pinconf_group_dbg_show, |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 674 | .pin_config_config_dbg_show = pcs_pinconf_config_dbg_show, |
Axel Lin | a7bbdd7 | 2013-03-04 13:47:39 +0800 | [diff] [blame] | 675 | .is_generic = true, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 676 | }; |
| 677 | |
| 678 | /** |
| 679 | * pcs_add_pin() - add a pin to the static per controller pin array |
| 680 | * @pcs: pcs driver instance |
| 681 | * @offset: register offset from base |
| 682 | */ |
Hanna Hawa | 8fa2ea2 | 2021-03-19 17:21:32 +0200 | [diff] [blame] | 683 | static int pcs_add_pin(struct pcs_device *pcs, unsigned int offset) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 684 | { |
Tony Lindgren | 5896862 | 2014-04-10 16:47:19 -0700 | [diff] [blame] | 685 | struct pcs_soc_data *pcs_soc = &pcs->socdata; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 686 | struct pinctrl_pin_desc *pin; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 687 | int i; |
| 688 | |
| 689 | i = pcs->pins.cur; |
| 690 | if (i >= pcs->desc.npins) { |
| 691 | dev_err(pcs->dev, "too many pins, max %i\n", |
| 692 | pcs->desc.npins); |
| 693 | return -ENOMEM; |
| 694 | } |
| 695 | |
Tony Lindgren | 5896862 | 2014-04-10 16:47:19 -0700 | [diff] [blame] | 696 | if (pcs_soc->irq_enable_mask) { |
| 697 | unsigned val; |
| 698 | |
| 699 | val = pcs->read(pcs->base + offset); |
| 700 | if (val & pcs_soc->irq_enable_mask) { |
| 701 | dev_dbg(pcs->dev, "irq enabled at boot for pin at %lx (%x), clearing\n", |
| 702 | (unsigned long)pcs->res->start + offset, val); |
| 703 | val &= ~pcs_soc->irq_enable_mask; |
| 704 | pcs->write(val, pcs->base + offset); |
| 705 | } |
| 706 | } |
| 707 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 708 | pin = &pcs->pins.pa[i]; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 709 | pin->number = i; |
| 710 | pcs->pins.cur++; |
| 711 | |
| 712 | return i; |
| 713 | } |
| 714 | |
| 715 | /** |
| 716 | * pcs_allocate_pin_table() - adds all the pins for the pinctrl driver |
| 717 | * @pcs: pcs driver instance |
| 718 | * |
| 719 | * In case of errors, resources are freed in pcs_free_resources. |
| 720 | * |
| 721 | * If your hardware needs holes in the address space, then just set |
| 722 | * up multiple driver instances. |
| 723 | */ |
Greg Kroah-Hartman | 150632b | 2012-12-21 13:10:23 -0800 | [diff] [blame] | 724 | static int pcs_allocate_pin_table(struct pcs_device *pcs) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 725 | { |
| 726 | int mux_bytes, nr_pins, i; |
| 727 | |
| 728 | mux_bytes = pcs->width / BITS_PER_BYTE; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 729 | |
| 730 | if (pcs->bits_per_mux) { |
| 731 | pcs->bits_per_pin = fls(pcs->fmask); |
| 732 | nr_pins = (pcs->size * BITS_PER_BYTE) / pcs->bits_per_pin; |
| 733 | } else { |
| 734 | nr_pins = pcs->size / mux_bytes; |
| 735 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 736 | |
| 737 | dev_dbg(pcs->dev, "allocating %i pins\n", nr_pins); |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 738 | pcs->pins.pa = devm_kcalloc(pcs->dev, |
| 739 | nr_pins, sizeof(*pcs->pins.pa), |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 740 | GFP_KERNEL); |
| 741 | if (!pcs->pins.pa) |
| 742 | return -ENOMEM; |
| 743 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 744 | pcs->desc.pins = pcs->pins.pa; |
| 745 | pcs->desc.npins = nr_pins; |
| 746 | |
| 747 | for (i = 0; i < pcs->desc.npins; i++) { |
| 748 | unsigned offset; |
| 749 | int res; |
| 750 | |
Hanna Hawa | bd85125 | 2021-03-19 17:21:33 +0200 | [diff] [blame] | 751 | offset = pcs_pin_reg_offset_get(pcs, i); |
Hanna Hawa | 8fa2ea2 | 2021-03-19 17:21:32 +0200 | [diff] [blame] | 752 | res = pcs_add_pin(pcs, offset); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 753 | if (res < 0) { |
| 754 | dev_err(pcs->dev, "error adding pins: %i\n", res); |
| 755 | return res; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | return 0; |
| 760 | } |
| 761 | |
| 762 | /** |
| 763 | * pcs_add_function() - adds a new function to the function list |
| 764 | * @pcs: pcs driver instance |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 765 | * @fcn: new function allocated |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 766 | * @name: name of the function |
| 767 | * @vals: array of mux register value pairs used by the function |
| 768 | * @nvals: number of mux register value pairs |
| 769 | * @pgnames: array of pingroup names for the function |
| 770 | * @npgnames: number of pingroup names |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 771 | * |
| 772 | * Caller must take care of locking. |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 773 | */ |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 774 | static int pcs_add_function(struct pcs_device *pcs, |
| 775 | struct pcs_function **fcn, |
| 776 | const char *name, |
| 777 | struct pcs_func_vals *vals, |
| 778 | unsigned int nvals, |
| 779 | const char **pgnames, |
| 780 | unsigned int npgnames) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 781 | { |
| 782 | struct pcs_function *function; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 783 | int selector; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 784 | |
| 785 | function = devm_kzalloc(pcs->dev, sizeof(*function), GFP_KERNEL); |
| 786 | if (!function) |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 787 | return -ENOMEM; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 788 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 789 | function->vals = vals; |
| 790 | function->nvals = nvals; |
Drew Fustini | 4739b1b | 2021-01-25 12:35:43 -0800 | [diff] [blame] | 791 | function->name = name; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 792 | |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 793 | selector = pinmux_generic_add_function(pcs->pctl, name, |
| 794 | pgnames, npgnames, |
| 795 | function); |
| 796 | if (selector < 0) { |
| 797 | devm_kfree(pcs->dev, function); |
| 798 | *fcn = NULL; |
| 799 | } else { |
| 800 | *fcn = function; |
| 801 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 802 | |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 803 | return selector; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 804 | } |
| 805 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 806 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 807 | * pcs_get_pin_by_offset() - get a pin index based on the register offset |
| 808 | * @pcs: pcs driver instance |
| 809 | * @offset: register offset from the base |
| 810 | * |
| 811 | * Note that this is OK as long as the pins are in a static array. |
| 812 | */ |
| 813 | static int pcs_get_pin_by_offset(struct pcs_device *pcs, unsigned offset) |
| 814 | { |
| 815 | unsigned index; |
| 816 | |
| 817 | if (offset >= pcs->size) { |
| 818 | dev_err(pcs->dev, "mux offset out of range: 0x%x (0x%x)\n", |
| 819 | offset, pcs->size); |
| 820 | return -EINVAL; |
| 821 | } |
| 822 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 823 | if (pcs->bits_per_mux) |
| 824 | index = (offset * BITS_PER_BYTE) / pcs->bits_per_pin; |
| 825 | else |
| 826 | index = offset / (pcs->width / BITS_PER_BYTE); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 827 | |
| 828 | return index; |
| 829 | } |
| 830 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 831 | /* |
| 832 | * check whether data matches enable bits or disable bits |
| 833 | * Return value: 1 for matching enable bits, 0 for matching disable bits, |
| 834 | * and negative value for matching failure. |
| 835 | */ |
| 836 | static int pcs_config_match(unsigned data, unsigned enable, unsigned disable) |
| 837 | { |
| 838 | int ret = -EINVAL; |
| 839 | |
| 840 | if (data == enable) |
| 841 | ret = 1; |
| 842 | else if (data == disable) |
| 843 | ret = 0; |
| 844 | return ret; |
| 845 | } |
| 846 | |
| 847 | static void add_config(struct pcs_conf_vals **conf, enum pin_config_param param, |
| 848 | unsigned value, unsigned enable, unsigned disable, |
| 849 | unsigned mask) |
| 850 | { |
| 851 | (*conf)->param = param; |
| 852 | (*conf)->val = value; |
| 853 | (*conf)->enable = enable; |
| 854 | (*conf)->disable = disable; |
| 855 | (*conf)->mask = mask; |
| 856 | (*conf)++; |
| 857 | } |
| 858 | |
| 859 | static void add_setting(unsigned long **setting, enum pin_config_param param, |
| 860 | unsigned arg) |
| 861 | { |
| 862 | **setting = pinconf_to_config_packed(param, arg); |
| 863 | (*setting)++; |
| 864 | } |
| 865 | |
| 866 | /* add pinconf setting with 2 parameters */ |
| 867 | static void pcs_add_conf2(struct pcs_device *pcs, struct device_node *np, |
| 868 | const char *name, enum pin_config_param param, |
| 869 | struct pcs_conf_vals **conf, unsigned long **settings) |
| 870 | { |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 871 | unsigned value[2], shift; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 872 | int ret; |
| 873 | |
| 874 | ret = of_property_read_u32_array(np, name, value, 2); |
| 875 | if (ret) |
| 876 | return; |
| 877 | /* set value & mask */ |
| 878 | value[0] &= value[1]; |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 879 | shift = ffs(value[1]) - 1; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 880 | /* skip enable & disable */ |
| 881 | add_config(conf, param, value[0], 0, 0, value[1]); |
Haojian Zhuang | 7cba5b3 | 2013-03-13 16:01:26 +0800 | [diff] [blame] | 882 | add_setting(settings, param, value[0] >> shift); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | /* add pinconf setting with 4 parameters */ |
| 886 | static void pcs_add_conf4(struct pcs_device *pcs, struct device_node *np, |
| 887 | const char *name, enum pin_config_param param, |
| 888 | struct pcs_conf_vals **conf, unsigned long **settings) |
| 889 | { |
| 890 | unsigned value[4]; |
| 891 | int ret; |
| 892 | |
| 893 | /* value to set, enable, disable, mask */ |
| 894 | ret = of_property_read_u32_array(np, name, value, 4); |
| 895 | if (ret) |
| 896 | return; |
| 897 | if (!value[3]) { |
| 898 | dev_err(pcs->dev, "mask field of the property can't be 0\n"); |
| 899 | return; |
| 900 | } |
| 901 | value[0] &= value[3]; |
| 902 | value[1] &= value[3]; |
| 903 | value[2] &= value[3]; |
| 904 | ret = pcs_config_match(value[0], value[1], value[2]); |
| 905 | if (ret < 0) |
| 906 | dev_dbg(pcs->dev, "failed to match enable or disable bits\n"); |
| 907 | add_config(conf, param, value[0], value[1], value[2], value[3]); |
| 908 | add_setting(settings, param, ret); |
| 909 | } |
| 910 | |
| 911 | static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np, |
| 912 | struct pcs_function *func, |
| 913 | struct pinctrl_map **map) |
| 914 | |
| 915 | { |
| 916 | struct pinctrl_map *m = *map; |
| 917 | int i = 0, nconfs = 0; |
| 918 | unsigned long *settings = NULL, *s = NULL; |
| 919 | struct pcs_conf_vals *conf = NULL; |
Colin Ian King | b582658 | 2017-09-19 15:42:18 +0100 | [diff] [blame] | 920 | static const struct pcs_conf_type prop2[] = { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 921 | { "pinctrl-single,drive-strength", PIN_CONFIG_DRIVE_STRENGTH, }, |
| 922 | { "pinctrl-single,slew-rate", PIN_CONFIG_SLEW_RATE, }, |
Dario Binacchi | 8c987eb1 | 2021-06-02 17:04:20 +0200 | [diff] [blame^] | 923 | { "pinctrl-single,input-enable", PIN_CONFIG_INPUT_ENABLE, }, |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 924 | { "pinctrl-single,input-schmitt", PIN_CONFIG_INPUT_SCHMITT, }, |
Andy Shevchenko | 31f9a42 | 2021-04-12 17:07:40 +0300 | [diff] [blame] | 925 | { "pinctrl-single,low-power-mode", PIN_CONFIG_MODE_LOW_POWER, }, |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 926 | }; |
Colin Ian King | b582658 | 2017-09-19 15:42:18 +0100 | [diff] [blame] | 927 | static const struct pcs_conf_type prop4[] = { |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 928 | { "pinctrl-single,bias-pullup", PIN_CONFIG_BIAS_PULL_UP, }, |
| 929 | { "pinctrl-single,bias-pulldown", PIN_CONFIG_BIAS_PULL_DOWN, }, |
| 930 | { "pinctrl-single,input-schmitt-enable", |
| 931 | PIN_CONFIG_INPUT_SCHMITT_ENABLE, }, |
| 932 | }; |
| 933 | |
| 934 | /* If pinconf isn't supported, don't parse properties in below. */ |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 935 | if (!PCS_HAS_PINCONF) |
Drew Fustini | f46fe79 | 2020-06-08 14:51:43 +0200 | [diff] [blame] | 936 | return -ENOTSUPP; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 937 | |
| 938 | /* cacluate how much properties are supported in current node */ |
| 939 | for (i = 0; i < ARRAY_SIZE(prop2); i++) { |
| 940 | if (of_find_property(np, prop2[i].name, NULL)) |
| 941 | nconfs++; |
| 942 | } |
| 943 | for (i = 0; i < ARRAY_SIZE(prop4); i++) { |
| 944 | if (of_find_property(np, prop4[i].name, NULL)) |
| 945 | nconfs++; |
| 946 | } |
| 947 | if (!nconfs) |
Drew Fustini | f46fe79 | 2020-06-08 14:51:43 +0200 | [diff] [blame] | 948 | return -ENOTSUPP; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 949 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 950 | func->conf = devm_kcalloc(pcs->dev, |
| 951 | nconfs, sizeof(struct pcs_conf_vals), |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 952 | GFP_KERNEL); |
| 953 | if (!func->conf) |
| 954 | return -ENOMEM; |
| 955 | func->nconfs = nconfs; |
| 956 | conf = &(func->conf[0]); |
| 957 | m++; |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 958 | settings = devm_kcalloc(pcs->dev, nconfs, sizeof(unsigned long), |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 959 | GFP_KERNEL); |
| 960 | if (!settings) |
| 961 | return -ENOMEM; |
| 962 | s = &settings[0]; |
| 963 | |
| 964 | for (i = 0; i < ARRAY_SIZE(prop2); i++) |
| 965 | pcs_add_conf2(pcs, np, prop2[i].name, prop2[i].param, |
| 966 | &conf, &s); |
| 967 | for (i = 0; i < ARRAY_SIZE(prop4); i++) |
| 968 | pcs_add_conf4(pcs, np, prop4[i].name, prop4[i].param, |
| 969 | &conf, &s); |
| 970 | m->type = PIN_MAP_TYPE_CONFIGS_GROUP; |
| 971 | m->data.configs.group_or_pin = np->name; |
| 972 | m->data.configs.configs = settings; |
| 973 | m->data.configs.num_configs = nconfs; |
| 974 | return 0; |
| 975 | } |
| 976 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 977 | /** |
Drew Fustini | bc6d201 | 2020-06-17 20:05:43 +0200 | [diff] [blame] | 978 | * pcs_parse_one_pinctrl_entry() - parses a device tree mux entry |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 979 | * @pcs: pinctrl driver instance |
| 980 | * @np: device node of the mux entry |
| 981 | * @map: map entry |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 982 | * @num_maps: number of map |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 983 | * @pgnames: pingroup names |
| 984 | * |
| 985 | * Note that this binding currently supports only sets of one register + value. |
| 986 | * |
| 987 | * Also note that this driver tries to avoid understanding pin and function |
| 988 | * names because of the extra bloat they would cause especially in the case of |
| 989 | * a large number of pins. This driver just sets what is specified for the board |
| 990 | * in the .dts file. Further user space debugging tools can be developed to |
| 991 | * decipher the pin and function names using debugfs. |
| 992 | * |
| 993 | * If you are concerned about the boot time, set up the static pins in |
| 994 | * the bootloader, and only set up selected pins as device tree entries. |
| 995 | */ |
| 996 | static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs, |
| 997 | struct device_node *np, |
| 998 | struct pinctrl_map **map, |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 999 | unsigned *num_maps, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1000 | const char **pgnames) |
| 1001 | { |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1002 | const char *name = "pinctrl-single,pins"; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1003 | struct pcs_func_vals *vals; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1004 | int rows, *pins, found = 0, res = -ENOMEM, i, fsel, gsel; |
| 1005 | struct pcs_function *function = NULL; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1006 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1007 | rows = pinctrl_count_index_with_args(np, name); |
Axel Haslam | de7416b | 2016-11-09 15:54:00 +0100 | [diff] [blame] | 1008 | if (rows <= 0) { |
Colin Ian King | 059a6e6 | 2016-12-23 00:47:14 +0000 | [diff] [blame] | 1009 | dev_err(pcs->dev, "Invalid number of rows: %d\n", rows); |
Axel Haslam | de7416b | 2016-11-09 15:54:00 +0100 | [diff] [blame] | 1010 | return -EINVAL; |
| 1011 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1012 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1013 | vals = devm_kcalloc(pcs->dev, rows, sizeof(*vals), GFP_KERNEL); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1014 | if (!vals) |
| 1015 | return -ENOMEM; |
| 1016 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1017 | pins = devm_kcalloc(pcs->dev, rows, sizeof(*pins), GFP_KERNEL); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1018 | if (!pins) |
| 1019 | goto free_vals; |
| 1020 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1021 | for (i = 0; i < rows; i++) { |
| 1022 | struct of_phandle_args pinctrl_spec; |
| 1023 | unsigned int offset; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1024 | int pin; |
| 1025 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1026 | res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec); |
| 1027 | if (res) |
| 1028 | return res; |
| 1029 | |
Drew Fustini | 9b9448f | 2020-09-30 12:48:40 -0500 | [diff] [blame] | 1030 | if (pinctrl_spec.args_count < 2 || pinctrl_spec.args_count > 3) { |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1031 | dev_err(pcs->dev, "invalid args_count for spec: %i\n", |
| 1032 | pinctrl_spec.args_count); |
| 1033 | break; |
| 1034 | } |
| 1035 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1036 | offset = pinctrl_spec.args[0]; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1037 | vals[found].reg = pcs->base + offset; |
Drew Fustini | a133954 | 2020-07-01 03:33:19 +0200 | [diff] [blame] | 1038 | |
| 1039 | switch (pinctrl_spec.args_count) { |
| 1040 | case 2: |
| 1041 | vals[found].val = pinctrl_spec.args[1]; |
| 1042 | break; |
| 1043 | case 3: |
| 1044 | vals[found].val = (pinctrl_spec.args[1] | pinctrl_spec.args[2]); |
| 1045 | break; |
| 1046 | } |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1047 | |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1048 | dev_dbg(pcs->dev, "%pOFn index: 0x%x value: 0x%x\n", |
Drew Fustini | f4a2b19 | 2020-09-14 01:03:07 +0200 | [diff] [blame] | 1049 | pinctrl_spec.np, offset, vals[found].val); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1050 | |
| 1051 | pin = pcs_get_pin_by_offset(pcs, offset); |
| 1052 | if (pin < 0) { |
| 1053 | dev_err(pcs->dev, |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1054 | "could not add functions for %pOFn %ux\n", |
| 1055 | np, offset); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1056 | break; |
| 1057 | } |
| 1058 | pins[found++] = pin; |
| 1059 | } |
| 1060 | |
| 1061 | pgnames[0] = np->name; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1062 | mutex_lock(&pcs->mutex); |
| 1063 | fsel = pcs_add_function(pcs, &function, np->name, vals, found, |
| 1064 | pgnames, 1); |
| 1065 | if (fsel < 0) { |
| 1066 | res = fsel; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1067 | goto free_pins; |
Dan Carpenter | 712778d | 2016-11-16 14:41:51 +0300 | [diff] [blame] | 1068 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1069 | |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1070 | gsel = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs); |
| 1071 | if (gsel < 0) { |
| 1072 | res = gsel; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1073 | goto free_function; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1074 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1075 | |
| 1076 | (*map)->type = PIN_MAP_TYPE_MUX_GROUP; |
| 1077 | (*map)->data.mux.group = np->name; |
| 1078 | (*map)->data.mux.function = np->name; |
| 1079 | |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1080 | if (PCS_HAS_PINCONF && function) { |
Wei Yongjun | 18442e6 | 2013-05-07 20:06:19 +0800 | [diff] [blame] | 1081 | res = pcs_parse_pinconf(pcs, np, function, map); |
Drew Fustini | f46fe79 | 2020-06-08 14:51:43 +0200 | [diff] [blame] | 1082 | if (res == 0) |
| 1083 | *num_maps = 2; |
| 1084 | else if (res == -ENOTSUPP) |
| 1085 | *num_maps = 1; |
| 1086 | else |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 1087 | goto free_pingroups; |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 1088 | } else { |
| 1089 | *num_maps = 1; |
| 1090 | } |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1091 | mutex_unlock(&pcs->mutex); |
| 1092 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1093 | return 0; |
| 1094 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 1095 | free_pingroups: |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1096 | pinctrl_generic_remove_group(pcs->pctl, gsel); |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 1097 | *num_maps = 1; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1098 | free_function: |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1099 | pinmux_generic_remove_function(pcs->pctl, fsel); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1100 | free_pins: |
Wei Yongjun | 673ba5a | 2018-07-11 12:33:31 +0000 | [diff] [blame] | 1101 | mutex_unlock(&pcs->mutex); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1102 | devm_kfree(pcs->dev, pins); |
| 1103 | |
| 1104 | free_vals: |
| 1105 | devm_kfree(pcs->dev, vals); |
| 1106 | |
| 1107 | return res; |
| 1108 | } |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1109 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1110 | static int pcs_parse_bits_in_pinctrl_entry(struct pcs_device *pcs, |
| 1111 | struct device_node *np, |
| 1112 | struct pinctrl_map **map, |
| 1113 | unsigned *num_maps, |
| 1114 | const char **pgnames) |
| 1115 | { |
Axel Haslam | dd68a52 | 2016-11-09 15:54:01 +0100 | [diff] [blame] | 1116 | const char *name = "pinctrl-single,bits"; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1117 | struct pcs_func_vals *vals; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1118 | int rows, *pins, found = 0, res = -ENOMEM, i, fsel, gsel; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1119 | int npins_in_row; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1120 | struct pcs_function *function = NULL; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1121 | |
Tony Lindgren | 22d5127 | 2016-11-03 09:35:49 -0700 | [diff] [blame] | 1122 | rows = pinctrl_count_index_with_args(np, name); |
Axel Haslam | de7416b | 2016-11-09 15:54:00 +0100 | [diff] [blame] | 1123 | if (rows <= 0) { |
| 1124 | dev_err(pcs->dev, "Invalid number of rows: %d\n", rows); |
| 1125 | return -EINVAL; |
| 1126 | } |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1127 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1128 | npins_in_row = pcs->width / pcs->bits_per_pin; |
| 1129 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1130 | vals = devm_kzalloc(pcs->dev, |
| 1131 | array3_size(rows, npins_in_row, sizeof(*vals)), |
| 1132 | GFP_KERNEL); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1133 | if (!vals) |
| 1134 | return -ENOMEM; |
| 1135 | |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1136 | pins = devm_kzalloc(pcs->dev, |
| 1137 | array3_size(rows, npins_in_row, sizeof(*pins)), |
| 1138 | GFP_KERNEL); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1139 | if (!pins) |
| 1140 | goto free_vals; |
| 1141 | |
Tony Lindgren | 22d5127 | 2016-11-03 09:35:49 -0700 | [diff] [blame] | 1142 | for (i = 0; i < rows; i++) { |
| 1143 | struct of_phandle_args pinctrl_spec; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1144 | unsigned offset, val; |
| 1145 | unsigned mask, bit_pos, val_pos, mask_pos, submask; |
| 1146 | unsigned pin_num_from_lsb; |
| 1147 | int pin; |
| 1148 | |
Tony Lindgren | 22d5127 | 2016-11-03 09:35:49 -0700 | [diff] [blame] | 1149 | res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec); |
| 1150 | if (res) |
| 1151 | return res; |
| 1152 | |
| 1153 | if (pinctrl_spec.args_count < 3) { |
| 1154 | dev_err(pcs->dev, "invalid args_count for spec: %i\n", |
| 1155 | pinctrl_spec.args_count); |
| 1156 | break; |
| 1157 | } |
| 1158 | |
| 1159 | /* Index plus two value cells */ |
| 1160 | offset = pinctrl_spec.args[0]; |
| 1161 | val = pinctrl_spec.args[1]; |
| 1162 | mask = pinctrl_spec.args[2]; |
| 1163 | |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1164 | dev_dbg(pcs->dev, "%pOFn index: 0x%x value: 0x%x mask: 0x%x\n", |
| 1165 | pinctrl_spec.np, offset, val, mask); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1166 | |
| 1167 | /* Parse pins in each row from LSB */ |
| 1168 | while (mask) { |
Keerthy | 56b367c | 2016-04-14 10:29:16 +0530 | [diff] [blame] | 1169 | bit_pos = __ffs(mask); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1170 | pin_num_from_lsb = bit_pos / pcs->bits_per_pin; |
Keerthy | 56b367c | 2016-04-14 10:29:16 +0530 | [diff] [blame] | 1171 | mask_pos = ((pcs->fmask) << bit_pos); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1172 | val_pos = val & mask_pos; |
| 1173 | submask = mask & mask_pos; |
Tomi Valkeinen | ad5d25f | 2014-01-09 14:50:29 +0200 | [diff] [blame] | 1174 | |
| 1175 | if ((mask & mask_pos) == 0) { |
| 1176 | dev_err(pcs->dev, |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1177 | "Invalid mask for %pOFn at 0x%x\n", |
| 1178 | np, offset); |
Tomi Valkeinen | ad5d25f | 2014-01-09 14:50:29 +0200 | [diff] [blame] | 1179 | break; |
| 1180 | } |
| 1181 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1182 | mask &= ~mask_pos; |
| 1183 | |
| 1184 | if (submask != mask_pos) { |
| 1185 | dev_warn(pcs->dev, |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1186 | "Invalid submask 0x%x for %pOFn at 0x%x\n", |
| 1187 | submask, np, offset); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1188 | continue; |
| 1189 | } |
| 1190 | |
| 1191 | vals[found].mask = submask; |
| 1192 | vals[found].reg = pcs->base + offset; |
| 1193 | vals[found].val = val_pos; |
| 1194 | |
| 1195 | pin = pcs_get_pin_by_offset(pcs, offset); |
| 1196 | if (pin < 0) { |
| 1197 | dev_err(pcs->dev, |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1198 | "could not add functions for %pOFn %ux\n", |
| 1199 | np, offset); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1200 | break; |
| 1201 | } |
| 1202 | pins[found++] = pin + pin_num_from_lsb; |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | pgnames[0] = np->name; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1207 | mutex_lock(&pcs->mutex); |
| 1208 | fsel = pcs_add_function(pcs, &function, np->name, vals, found, |
| 1209 | pgnames, 1); |
| 1210 | if (fsel < 0) { |
| 1211 | res = fsel; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1212 | goto free_pins; |
Dan Carpenter | 712778d | 2016-11-16 14:41:51 +0300 | [diff] [blame] | 1213 | } |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1214 | |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1215 | gsel = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs); |
| 1216 | if (gsel < 0) { |
| 1217 | res = gsel; |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1218 | goto free_function; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1219 | } |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1220 | |
| 1221 | (*map)->type = PIN_MAP_TYPE_MUX_GROUP; |
| 1222 | (*map)->data.mux.group = np->name; |
| 1223 | (*map)->data.mux.function = np->name; |
| 1224 | |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1225 | if (PCS_HAS_PINCONF) { |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1226 | dev_err(pcs->dev, "pinconf not supported\n"); |
| 1227 | goto free_pingroups; |
| 1228 | } |
| 1229 | |
| 1230 | *num_maps = 1; |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1231 | mutex_unlock(&pcs->mutex); |
| 1232 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1233 | return 0; |
| 1234 | |
| 1235 | free_pingroups: |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1236 | pinctrl_generic_remove_group(pcs->pctl, gsel); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1237 | *num_maps = 1; |
| 1238 | free_function: |
Tony Lindgren | a4ab108 | 2018-07-05 02:10:16 -0700 | [diff] [blame] | 1239 | pinmux_generic_remove_function(pcs->pctl, fsel); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1240 | free_pins: |
Wei Yongjun | 673ba5a | 2018-07-11 12:33:31 +0000 | [diff] [blame] | 1241 | mutex_unlock(&pcs->mutex); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1242 | devm_kfree(pcs->dev, pins); |
| 1243 | |
| 1244 | free_vals: |
| 1245 | devm_kfree(pcs->dev, vals); |
| 1246 | |
| 1247 | return res; |
| 1248 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1249 | /** |
| 1250 | * pcs_dt_node_to_map() - allocates and parses pinctrl maps |
| 1251 | * @pctldev: pinctrl instance |
| 1252 | * @np_config: device tree pinmux entry |
| 1253 | * @map: array of map entries |
| 1254 | * @num_maps: number of maps |
| 1255 | */ |
| 1256 | static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev, |
| 1257 | struct device_node *np_config, |
| 1258 | struct pinctrl_map **map, unsigned *num_maps) |
| 1259 | { |
| 1260 | struct pcs_device *pcs; |
| 1261 | const char **pgnames; |
| 1262 | int ret; |
| 1263 | |
| 1264 | pcs = pinctrl_dev_get_drvdata(pctldev); |
| 1265 | |
Haojian Zhuang | 9dddb4d | 2013-02-17 19:42:55 +0800 | [diff] [blame] | 1266 | /* create 2 maps. One is for pinmux, and the other is for pinconf. */ |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 1267 | *map = devm_kcalloc(pcs->dev, 2, sizeof(**map), GFP_KERNEL); |
Sachin Kamat | 00e79d1 | 2012-11-20 16:34:39 +0530 | [diff] [blame] | 1268 | if (!*map) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1269 | return -ENOMEM; |
| 1270 | |
| 1271 | *num_maps = 0; |
| 1272 | |
| 1273 | pgnames = devm_kzalloc(pcs->dev, sizeof(*pgnames), GFP_KERNEL); |
| 1274 | if (!pgnames) { |
| 1275 | ret = -ENOMEM; |
| 1276 | goto free_map; |
| 1277 | } |
| 1278 | |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1279 | if (pcs->bits_per_mux) { |
| 1280 | ret = pcs_parse_bits_in_pinctrl_entry(pcs, np_config, map, |
| 1281 | num_maps, pgnames); |
| 1282 | if (ret < 0) { |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1283 | dev_err(pcs->dev, "no pins entries for %pOFn\n", |
| 1284 | np_config); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1285 | goto free_pgnames; |
| 1286 | } |
| 1287 | } else { |
| 1288 | ret = pcs_parse_one_pinctrl_entry(pcs, np_config, map, |
| 1289 | num_maps, pgnames); |
| 1290 | if (ret < 0) { |
Rob Herring | 94f4e54 | 2018-08-27 20:52:41 -0500 | [diff] [blame] | 1291 | dev_err(pcs->dev, "no pins entries for %pOFn\n", |
| 1292 | np_config); |
Manjunathappa, Prakash | 4e7e801 | 2013-05-21 19:38:00 +0530 | [diff] [blame] | 1293 | goto free_pgnames; |
| 1294 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1295 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1296 | |
| 1297 | return 0; |
| 1298 | |
| 1299 | free_pgnames: |
| 1300 | devm_kfree(pcs->dev, pgnames); |
| 1301 | free_map: |
| 1302 | devm_kfree(pcs->dev, *map); |
| 1303 | |
| 1304 | return ret; |
| 1305 | } |
| 1306 | |
| 1307 | /** |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1308 | * pcs_irq_free() - free interrupt |
| 1309 | * @pcs: pcs driver instance |
| 1310 | */ |
| 1311 | static void pcs_irq_free(struct pcs_device *pcs) |
| 1312 | { |
| 1313 | struct pcs_soc_data *pcs_soc = &pcs->socdata; |
| 1314 | |
| 1315 | if (pcs_soc->irq < 0) |
| 1316 | return; |
| 1317 | |
| 1318 | if (pcs->domain) |
| 1319 | irq_domain_remove(pcs->domain); |
| 1320 | |
| 1321 | if (PCS_QUIRK_HAS_SHARED_IRQ) |
| 1322 | free_irq(pcs_soc->irq, pcs_soc); |
| 1323 | else |
| 1324 | irq_set_chained_handler(pcs_soc->irq, NULL); |
| 1325 | } |
| 1326 | |
| 1327 | /** |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1328 | * pcs_free_resources() - free memory used by this driver |
| 1329 | * @pcs: pcs driver instance |
| 1330 | */ |
| 1331 | static void pcs_free_resources(struct pcs_device *pcs) |
| 1332 | { |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1333 | pcs_irq_free(pcs); |
Markus Elfring | f10a258 | 2015-11-05 17:10:22 +0100 | [diff] [blame] | 1334 | pinctrl_unregister(pcs->pctl); |
Tony Lindgren | caeb774 | 2016-12-27 09:20:02 -0800 | [diff] [blame] | 1335 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1336 | #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE) |
| 1337 | if (pcs->missing_nr_pinctrl_cells) |
| 1338 | of_remove_property(pcs->np, pcs->missing_nr_pinctrl_cells); |
| 1339 | #endif |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 1342 | static int pcs_add_gpio_func(struct device_node *node, struct pcs_device *pcs) |
| 1343 | { |
| 1344 | const char *propname = "pinctrl-single,gpio-range"; |
| 1345 | const char *cellname = "#pinctrl-single,gpio-range-cells"; |
| 1346 | struct of_phandle_args gpiospec; |
| 1347 | struct pcs_gpiofunc_range *range; |
| 1348 | int ret, i; |
| 1349 | |
| 1350 | for (i = 0; ; i++) { |
| 1351 | ret = of_parse_phandle_with_args(node, propname, cellname, |
| 1352 | i, &gpiospec); |
| 1353 | /* Do not treat it as error. Only treat it as end condition. */ |
| 1354 | if (ret) { |
| 1355 | ret = 0; |
| 1356 | break; |
| 1357 | } |
| 1358 | range = devm_kzalloc(pcs->dev, sizeof(*range), GFP_KERNEL); |
| 1359 | if (!range) { |
| 1360 | ret = -ENOMEM; |
| 1361 | break; |
| 1362 | } |
| 1363 | range->offset = gpiospec.args[0]; |
| 1364 | range->npins = gpiospec.args[1]; |
| 1365 | range->gpiofunc = gpiospec.args[2]; |
| 1366 | mutex_lock(&pcs->mutex); |
| 1367 | list_add_tail(&range->node, &pcs->gpiofuncs); |
| 1368 | mutex_unlock(&pcs->mutex); |
| 1369 | } |
| 1370 | return ret; |
| 1371 | } |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 1372 | |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1373 | /** |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 1374 | * struct pcs_interrupt |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1375 | * @reg: virtual address of interrupt register |
| 1376 | * @hwirq: hardware irq number |
| 1377 | * @irq: virtual irq number |
| 1378 | * @node: list node |
| 1379 | */ |
| 1380 | struct pcs_interrupt { |
| 1381 | void __iomem *reg; |
| 1382 | irq_hw_number_t hwirq; |
| 1383 | unsigned int irq; |
| 1384 | struct list_head node; |
| 1385 | }; |
| 1386 | |
| 1387 | /** |
| 1388 | * pcs_irq_set() - enables or disables an interrupt |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 1389 | * @pcs_soc: SoC specific settings |
| 1390 | * @irq: interrupt |
| 1391 | * @enable: enable or disable the interrupt |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1392 | * |
| 1393 | * Note that this currently assumes one interrupt per pinctrl |
| 1394 | * register that is typically used for wake-up events. |
| 1395 | */ |
| 1396 | static inline void pcs_irq_set(struct pcs_soc_data *pcs_soc, |
| 1397 | int irq, const bool enable) |
| 1398 | { |
| 1399 | struct pcs_device *pcs; |
| 1400 | struct list_head *pos; |
| 1401 | unsigned mask; |
| 1402 | |
| 1403 | pcs = container_of(pcs_soc, struct pcs_device, socdata); |
| 1404 | list_for_each(pos, &pcs->irqs) { |
| 1405 | struct pcs_interrupt *pcswi; |
| 1406 | unsigned soc_mask; |
| 1407 | |
| 1408 | pcswi = list_entry(pos, struct pcs_interrupt, node); |
| 1409 | if (irq != pcswi->irq) |
| 1410 | continue; |
| 1411 | |
| 1412 | soc_mask = pcs_soc->irq_enable_mask; |
| 1413 | raw_spin_lock(&pcs->lock); |
| 1414 | mask = pcs->read(pcswi->reg); |
| 1415 | if (enable) |
| 1416 | mask |= soc_mask; |
| 1417 | else |
| 1418 | mask &= ~soc_mask; |
| 1419 | pcs->write(mask, pcswi->reg); |
Tony Lindgren | 0ac3c0a4 | 2016-05-31 14:17:06 -0700 | [diff] [blame] | 1420 | |
| 1421 | /* flush posted write */ |
| 1422 | mask = pcs->read(pcswi->reg); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1423 | raw_spin_unlock(&pcs->lock); |
| 1424 | } |
Roger Quadros | c9b3a7d | 2013-10-11 19:13:16 +0300 | [diff] [blame] | 1425 | |
| 1426 | if (pcs_soc->rearm) |
| 1427 | pcs_soc->rearm(); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | /** |
| 1431 | * pcs_irq_mask() - mask pinctrl interrupt |
| 1432 | * @d: interrupt data |
| 1433 | */ |
| 1434 | static void pcs_irq_mask(struct irq_data *d) |
| 1435 | { |
| 1436 | struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d); |
| 1437 | |
| 1438 | pcs_irq_set(pcs_soc, d->irq, false); |
| 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * pcs_irq_unmask() - unmask pinctrl interrupt |
| 1443 | * @d: interrupt data |
| 1444 | */ |
| 1445 | static void pcs_irq_unmask(struct irq_data *d) |
| 1446 | { |
| 1447 | struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d); |
| 1448 | |
| 1449 | pcs_irq_set(pcs_soc, d->irq, true); |
| 1450 | } |
| 1451 | |
| 1452 | /** |
| 1453 | * pcs_irq_set_wake() - toggle the suspend and resume wake up |
| 1454 | * @d: interrupt data |
| 1455 | * @state: wake-up state |
| 1456 | * |
| 1457 | * Note that this should be called only for suspend and resume. |
| 1458 | * For runtime PM, the wake-up events should be enabled by default. |
| 1459 | */ |
| 1460 | static int pcs_irq_set_wake(struct irq_data *d, unsigned int state) |
| 1461 | { |
| 1462 | if (state) |
| 1463 | pcs_irq_unmask(d); |
| 1464 | else |
| 1465 | pcs_irq_mask(d); |
| 1466 | |
| 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | /** |
| 1471 | * pcs_irq_handle() - common interrupt handler |
Lee Jones | 0ba5ab0 | 2020-07-13 15:49:26 +0100 | [diff] [blame] | 1472 | * @pcs_soc: SoC specific settings |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1473 | * |
| 1474 | * Note that this currently assumes we have one interrupt bit per |
| 1475 | * mux register. This interrupt is typically used for wake-up events. |
| 1476 | * For more complex interrupts different handlers can be specified. |
| 1477 | */ |
| 1478 | static int pcs_irq_handle(struct pcs_soc_data *pcs_soc) |
| 1479 | { |
| 1480 | struct pcs_device *pcs; |
| 1481 | struct list_head *pos; |
| 1482 | int count = 0; |
| 1483 | |
| 1484 | pcs = container_of(pcs_soc, struct pcs_device, socdata); |
| 1485 | list_for_each(pos, &pcs->irqs) { |
| 1486 | struct pcs_interrupt *pcswi; |
| 1487 | unsigned mask; |
| 1488 | |
| 1489 | pcswi = list_entry(pos, struct pcs_interrupt, node); |
| 1490 | raw_spin_lock(&pcs->lock); |
| 1491 | mask = pcs->read(pcswi->reg); |
| 1492 | raw_spin_unlock(&pcs->lock); |
| 1493 | if (mask & pcs_soc->irq_status_mask) { |
| 1494 | generic_handle_irq(irq_find_mapping(pcs->domain, |
| 1495 | pcswi->hwirq)); |
| 1496 | count++; |
| 1497 | } |
| 1498 | } |
| 1499 | |
| 1500 | return count; |
| 1501 | } |
| 1502 | |
| 1503 | /** |
| 1504 | * pcs_irq_handler() - handler for the shared interrupt case |
| 1505 | * @irq: interrupt |
| 1506 | * @d: data |
| 1507 | * |
| 1508 | * Use this for cases where multiple instances of |
| 1509 | * pinctrl-single share a single interrupt like on omaps. |
| 1510 | */ |
| 1511 | static irqreturn_t pcs_irq_handler(int irq, void *d) |
| 1512 | { |
| 1513 | struct pcs_soc_data *pcs_soc = d; |
| 1514 | |
| 1515 | return pcs_irq_handle(pcs_soc) ? IRQ_HANDLED : IRQ_NONE; |
| 1516 | } |
| 1517 | |
| 1518 | /** |
Yang Li | b9045af | 2021-05-26 11:07:44 +0800 | [diff] [blame] | 1519 | * pcs_irq_chain_handler() - handler for the dedicated chained interrupt case |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1520 | * @desc: interrupt descriptor |
| 1521 | * |
| 1522 | * Use this if you have a separate interrupt for each |
| 1523 | * pinctrl-single instance. |
| 1524 | */ |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 1525 | static void pcs_irq_chain_handler(struct irq_desc *desc) |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1526 | { |
| 1527 | struct pcs_soc_data *pcs_soc = irq_desc_get_handler_data(desc); |
| 1528 | struct irq_chip *chip; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1529 | |
Jiang Liu | 5663bb2 | 2015-06-04 12:13:16 +0800 | [diff] [blame] | 1530 | chip = irq_desc_get_chip(desc); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1531 | chained_irq_enter(chip, desc); |
Rickard Strandqvist | 849bfe0 | 2014-06-26 15:43:01 +0200 | [diff] [blame] | 1532 | pcs_irq_handle(pcs_soc); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1533 | /* REVISIT: export and add handle_bad_irq(irq, desc)? */ |
| 1534 | chained_irq_exit(chip, desc); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
| 1537 | static int pcs_irqdomain_map(struct irq_domain *d, unsigned int irq, |
| 1538 | irq_hw_number_t hwirq) |
| 1539 | { |
| 1540 | struct pcs_soc_data *pcs_soc = d->host_data; |
| 1541 | struct pcs_device *pcs; |
| 1542 | struct pcs_interrupt *pcswi; |
| 1543 | |
| 1544 | pcs = container_of(pcs_soc, struct pcs_device, socdata); |
| 1545 | pcswi = devm_kzalloc(pcs->dev, sizeof(*pcswi), GFP_KERNEL); |
| 1546 | if (!pcswi) |
| 1547 | return -ENOMEM; |
| 1548 | |
| 1549 | pcswi->reg = pcs->base + hwirq; |
| 1550 | pcswi->hwirq = hwirq; |
| 1551 | pcswi->irq = irq; |
| 1552 | |
| 1553 | mutex_lock(&pcs->mutex); |
| 1554 | list_add_tail(&pcswi->node, &pcs->irqs); |
| 1555 | mutex_unlock(&pcs->mutex); |
| 1556 | |
| 1557 | irq_set_chip_data(irq, pcs_soc); |
| 1558 | irq_set_chip_and_handler(irq, &pcs->chip, |
| 1559 | handle_level_irq); |
Andrew Lunn | 39c3fd5 | 2017-12-02 18:11:04 +0100 | [diff] [blame] | 1560 | irq_set_lockdep_class(irq, &pcs_lock_class, &pcs_request_class); |
Tony Lindgren | 1b9c0fb | 2013-10-18 16:20:05 -0700 | [diff] [blame] | 1561 | irq_set_noprobe(irq); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1562 | |
| 1563 | return 0; |
| 1564 | } |
| 1565 | |
Krzysztof Kozlowski | e5b6095 | 2015-04-27 21:54:06 +0900 | [diff] [blame] | 1566 | static const struct irq_domain_ops pcs_irqdomain_ops = { |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1567 | .map = pcs_irqdomain_map, |
| 1568 | .xlate = irq_domain_xlate_onecell, |
| 1569 | }; |
| 1570 | |
| 1571 | /** |
| 1572 | * pcs_irq_init_chained_handler() - set up a chained interrupt handler |
| 1573 | * @pcs: pcs driver instance |
| 1574 | * @np: device node pointer |
| 1575 | */ |
| 1576 | static int pcs_irq_init_chained_handler(struct pcs_device *pcs, |
| 1577 | struct device_node *np) |
| 1578 | { |
| 1579 | struct pcs_soc_data *pcs_soc = &pcs->socdata; |
| 1580 | const char *name = "pinctrl"; |
| 1581 | int num_irqs; |
| 1582 | |
| 1583 | if (!pcs_soc->irq_enable_mask || |
| 1584 | !pcs_soc->irq_status_mask) { |
| 1585 | pcs_soc->irq = -1; |
| 1586 | return -EINVAL; |
| 1587 | } |
| 1588 | |
| 1589 | INIT_LIST_HEAD(&pcs->irqs); |
| 1590 | pcs->chip.name = name; |
| 1591 | pcs->chip.irq_ack = pcs_irq_mask; |
| 1592 | pcs->chip.irq_mask = pcs_irq_mask; |
| 1593 | pcs->chip.irq_unmask = pcs_irq_unmask; |
| 1594 | pcs->chip.irq_set_wake = pcs_irq_set_wake; |
| 1595 | |
| 1596 | if (PCS_QUIRK_HAS_SHARED_IRQ) { |
| 1597 | int res; |
| 1598 | |
| 1599 | res = request_irq(pcs_soc->irq, pcs_irq_handler, |
Grygorii Strashko | c10372e | 2015-07-06 18:13:37 +0300 | [diff] [blame] | 1600 | IRQF_SHARED | IRQF_NO_SUSPEND | |
| 1601 | IRQF_NO_THREAD, |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1602 | name, pcs_soc); |
| 1603 | if (res) { |
| 1604 | pcs_soc->irq = -1; |
| 1605 | return res; |
| 1606 | } |
| 1607 | } else { |
Thomas Gleixner | 20d5d14 | 2015-06-21 21:11:06 +0200 | [diff] [blame] | 1608 | irq_set_chained_handler_and_data(pcs_soc->irq, |
| 1609 | pcs_irq_chain_handler, |
| 1610 | pcs_soc); |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
| 1613 | /* |
| 1614 | * We can use the register offset as the hardirq |
| 1615 | * number as irq_domain_add_simple maps them lazily. |
| 1616 | * This way we can easily support more than one |
| 1617 | * interrupt per function if needed. |
| 1618 | */ |
| 1619 | num_irqs = pcs->size; |
| 1620 | |
| 1621 | pcs->domain = irq_domain_add_simple(np, num_irqs, 0, |
| 1622 | &pcs_irqdomain_ops, |
| 1623 | pcs_soc); |
| 1624 | if (!pcs->domain) { |
| 1625 | irq_set_chained_handler(pcs_soc->irq, NULL); |
| 1626 | return -EINVAL; |
| 1627 | } |
| 1628 | |
| 1629 | return 0; |
| 1630 | } |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 1631 | |
Jean-Francois Moine | 8cb440a | 2013-07-15 10:14:26 +0200 | [diff] [blame] | 1632 | #ifdef CONFIG_PM |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1633 | static int pcs_save_context(struct pcs_device *pcs) |
| 1634 | { |
| 1635 | int i, mux_bytes; |
| 1636 | u64 *regsl; |
| 1637 | u32 *regsw; |
| 1638 | u16 *regshw; |
| 1639 | |
| 1640 | mux_bytes = pcs->width / BITS_PER_BYTE; |
| 1641 | |
Colin Ian King | 7f57871 | 2018-06-06 14:43:38 +0100 | [diff] [blame] | 1642 | if (!pcs->saved_vals) { |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1643 | pcs->saved_vals = devm_kzalloc(pcs->dev, pcs->size, GFP_ATOMIC); |
Colin Ian King | 7f57871 | 2018-06-06 14:43:38 +0100 | [diff] [blame] | 1644 | if (!pcs->saved_vals) |
| 1645 | return -ENOMEM; |
| 1646 | } |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1647 | |
| 1648 | switch (pcs->width) { |
| 1649 | case 64: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1650 | regsl = pcs->saved_vals; |
| 1651 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1652 | *regsl++ = pcs->read(pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1653 | break; |
| 1654 | case 32: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1655 | regsw = pcs->saved_vals; |
| 1656 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1657 | *regsw++ = pcs->read(pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1658 | break; |
| 1659 | case 16: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1660 | regshw = pcs->saved_vals; |
| 1661 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1662 | *regshw++ = pcs->read(pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1663 | break; |
| 1664 | } |
| 1665 | |
| 1666 | return 0; |
| 1667 | } |
| 1668 | |
| 1669 | static void pcs_restore_context(struct pcs_device *pcs) |
| 1670 | { |
| 1671 | int i, mux_bytes; |
| 1672 | u64 *regsl; |
| 1673 | u32 *regsw; |
| 1674 | u16 *regshw; |
| 1675 | |
| 1676 | mux_bytes = pcs->width / BITS_PER_BYTE; |
| 1677 | |
| 1678 | switch (pcs->width) { |
| 1679 | case 64: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1680 | regsl = pcs->saved_vals; |
| 1681 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1682 | pcs->write(*regsl++, pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1683 | break; |
| 1684 | case 32: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1685 | regsw = pcs->saved_vals; |
| 1686 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1687 | pcs->write(*regsw++, pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1688 | break; |
| 1689 | case 16: |
Geert Uytterhoeven | 7d71b5f | 2018-06-07 14:24:34 +0200 | [diff] [blame] | 1690 | regshw = pcs->saved_vals; |
| 1691 | for (i = 0; i < pcs->size; i += mux_bytes) |
| 1692 | pcs->write(*regshw++, pcs->base + i); |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1693 | break; |
| 1694 | } |
| 1695 | } |
| 1696 | |
Hebbar Gururaja | 0f9bc4b | 2013-05-31 15:43:01 +0530 | [diff] [blame] | 1697 | static int pinctrl_single_suspend(struct platform_device *pdev, |
| 1698 | pm_message_t state) |
| 1699 | { |
| 1700 | struct pcs_device *pcs; |
| 1701 | |
| 1702 | pcs = platform_get_drvdata(pdev); |
| 1703 | if (!pcs) |
| 1704 | return -EINVAL; |
| 1705 | |
Colin Ian King | 7f57871 | 2018-06-06 14:43:38 +0100 | [diff] [blame] | 1706 | if (pcs->flags & PCS_CONTEXT_LOSS_OFF) { |
| 1707 | int ret; |
| 1708 | |
| 1709 | ret = pcs_save_context(pcs); |
| 1710 | if (ret < 0) |
| 1711 | return ret; |
| 1712 | } |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1713 | |
Hebbar Gururaja | 0f9bc4b | 2013-05-31 15:43:01 +0530 | [diff] [blame] | 1714 | return pinctrl_force_sleep(pcs->pctl); |
| 1715 | } |
| 1716 | |
| 1717 | static int pinctrl_single_resume(struct platform_device *pdev) |
| 1718 | { |
| 1719 | struct pcs_device *pcs; |
| 1720 | |
| 1721 | pcs = platform_get_drvdata(pdev); |
| 1722 | if (!pcs) |
| 1723 | return -EINVAL; |
| 1724 | |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1725 | if (pcs->flags & PCS_CONTEXT_LOSS_OFF) |
| 1726 | pcs_restore_context(pcs); |
| 1727 | |
Hebbar Gururaja | 0f9bc4b | 2013-05-31 15:43:01 +0530 | [diff] [blame] | 1728 | return pinctrl_force_default(pcs->pctl); |
| 1729 | } |
Jean-Francois Moine | 8cb440a | 2013-07-15 10:14:26 +0200 | [diff] [blame] | 1730 | #endif |
Hebbar Gururaja | 0f9bc4b | 2013-05-31 15:43:01 +0530 | [diff] [blame] | 1731 | |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1732 | /** |
| 1733 | * pcs_quirk_missing_pinctrl_cells - handle legacy binding |
| 1734 | * @pcs: pinctrl driver instance |
| 1735 | * @np: device tree node |
| 1736 | * @cells: number of cells |
| 1737 | * |
| 1738 | * Handle legacy binding with no #pinctrl-cells. This should be |
| 1739 | * always two pinctrl-single,bit-per-mux and one for others. |
| 1740 | * At some point we may want to consider removing this. |
| 1741 | */ |
| 1742 | static int pcs_quirk_missing_pinctrl_cells(struct pcs_device *pcs, |
| 1743 | struct device_node *np, |
| 1744 | int cells) |
| 1745 | { |
| 1746 | struct property *p; |
| 1747 | const char *name = "#pinctrl-cells"; |
| 1748 | int error; |
| 1749 | u32 val; |
| 1750 | |
| 1751 | error = of_property_read_u32(np, name, &val); |
| 1752 | if (!error) |
| 1753 | return 0; |
| 1754 | |
| 1755 | dev_warn(pcs->dev, "please update dts to use %s = <%i>\n", |
| 1756 | name, cells); |
| 1757 | |
| 1758 | p = devm_kzalloc(pcs->dev, sizeof(*p), GFP_KERNEL); |
| 1759 | if (!p) |
| 1760 | return -ENOMEM; |
| 1761 | |
| 1762 | p->length = sizeof(__be32); |
| 1763 | p->value = devm_kzalloc(pcs->dev, sizeof(__be32), GFP_KERNEL); |
| 1764 | if (!p->value) |
| 1765 | return -ENOMEM; |
| 1766 | *(__be32 *)p->value = cpu_to_be32(cells); |
| 1767 | |
| 1768 | p->name = devm_kstrdup(pcs->dev, name, GFP_KERNEL); |
| 1769 | if (!p->name) |
| 1770 | return -ENOMEM; |
| 1771 | |
| 1772 | pcs->missing_nr_pinctrl_cells = p; |
| 1773 | |
| 1774 | #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE) |
| 1775 | error = of_add_property(np, pcs->missing_nr_pinctrl_cells); |
| 1776 | #endif |
| 1777 | |
| 1778 | return error; |
| 1779 | } |
| 1780 | |
Greg Kroah-Hartman | 150632b | 2012-12-21 13:10:23 -0800 | [diff] [blame] | 1781 | static int pcs_probe(struct platform_device *pdev) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1782 | { |
| 1783 | struct device_node *np = pdev->dev.of_node; |
Tony Lindgren | dc7743a | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1784 | struct pcs_pdata *pdata; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1785 | struct resource *res; |
| 1786 | struct pcs_device *pcs; |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1787 | const struct pcs_soc_data *soc; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1788 | int ret; |
| 1789 | |
Masahiro Yamada | 1a8764f | 2017-05-21 01:02:17 +0900 | [diff] [blame] | 1790 | soc = of_device_get_match_data(&pdev->dev); |
| 1791 | if (WARN_ON(!soc)) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1792 | return -EINVAL; |
| 1793 | |
| 1794 | pcs = devm_kzalloc(&pdev->dev, sizeof(*pcs), GFP_KERNEL); |
Markus Elfring | a14aa27 | 2017-12-25 11:27:55 +0100 | [diff] [blame] | 1795 | if (!pcs) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1796 | return -ENOMEM; |
Markus Elfring | a14aa27 | 2017-12-25 11:27:55 +0100 | [diff] [blame] | 1797 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1798 | pcs->dev = &pdev->dev; |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1799 | pcs->np = np; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1800 | raw_spin_lock_init(&pcs->lock); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1801 | mutex_init(&pcs->mutex); |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 1802 | INIT_LIST_HEAD(&pcs->gpiofuncs); |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1803 | pcs->flags = soc->flags; |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1804 | memcpy(&pcs->socdata, soc, sizeof(*soc)); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1805 | |
Tony Lindgren | cd23604 | 2016-10-25 09:09:00 -0700 | [diff] [blame] | 1806 | ret = of_property_read_u32(np, "pinctrl-single,register-width", |
| 1807 | &pcs->width); |
| 1808 | if (ret) { |
| 1809 | dev_err(pcs->dev, "register width not specified\n"); |
| 1810 | |
| 1811 | return ret; |
| 1812 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1813 | |
Haojian Zhuang | 477ac77 | 2013-02-17 19:42:54 +0800 | [diff] [blame] | 1814 | ret = of_property_read_u32(np, "pinctrl-single,function-mask", |
| 1815 | &pcs->fmask); |
| 1816 | if (!ret) { |
Keerthy | 56b367c | 2016-04-14 10:29:16 +0530 | [diff] [blame] | 1817 | pcs->fshift = __ffs(pcs->fmask); |
Haojian Zhuang | 477ac77 | 2013-02-17 19:42:54 +0800 | [diff] [blame] | 1818 | pcs->fmax = pcs->fmask >> pcs->fshift; |
| 1819 | } else { |
| 1820 | /* If mask property doesn't exist, function mux is invalid. */ |
| 1821 | pcs->fmask = 0; |
| 1822 | pcs->fshift = 0; |
| 1823 | pcs->fmax = 0; |
| 1824 | } |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1825 | |
| 1826 | ret = of_property_read_u32(np, "pinctrl-single,function-off", |
| 1827 | &pcs->foff); |
| 1828 | if (ret) |
| 1829 | pcs->foff = PCS_OFF_DISABLED; |
| 1830 | |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 1831 | pcs->bits_per_mux = of_property_read_bool(np, |
| 1832 | "pinctrl-single,bit-per-mux"); |
Tony Lindgren | 4622215 | 2016-11-03 09:35:48 -0700 | [diff] [blame] | 1833 | ret = pcs_quirk_missing_pinctrl_cells(pcs, np, |
| 1834 | pcs->bits_per_mux ? 2 : 1); |
| 1835 | if (ret) { |
| 1836 | dev_err(&pdev->dev, "unable to patch #pinctrl-cells\n"); |
| 1837 | |
| 1838 | return ret; |
| 1839 | } |
Peter Ujfalusi | 9e605cb | 2012-09-11 11:54:24 +0300 | [diff] [blame] | 1840 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1841 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1842 | if (!res) { |
| 1843 | dev_err(pcs->dev, "could not get resource\n"); |
| 1844 | return -ENODEV; |
| 1845 | } |
| 1846 | |
| 1847 | pcs->res = devm_request_mem_region(pcs->dev, res->start, |
| 1848 | resource_size(res), DRIVER_NAME); |
| 1849 | if (!pcs->res) { |
| 1850 | dev_err(pcs->dev, "could not get mem_region\n"); |
| 1851 | return -EBUSY; |
| 1852 | } |
| 1853 | |
| 1854 | pcs->size = resource_size(pcs->res); |
| 1855 | pcs->base = devm_ioremap(pcs->dev, pcs->res->start, pcs->size); |
| 1856 | if (!pcs->base) { |
| 1857 | dev_err(pcs->dev, "could not ioremap\n"); |
| 1858 | return -ENODEV; |
| 1859 | } |
| 1860 | |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1861 | platform_set_drvdata(pdev, pcs); |
| 1862 | |
| 1863 | switch (pcs->width) { |
| 1864 | case 8: |
| 1865 | pcs->read = pcs_readb; |
| 1866 | pcs->write = pcs_writeb; |
| 1867 | break; |
| 1868 | case 16: |
| 1869 | pcs->read = pcs_readw; |
| 1870 | pcs->write = pcs_writew; |
| 1871 | break; |
| 1872 | case 32: |
| 1873 | pcs->read = pcs_readl; |
| 1874 | pcs->write = pcs_writel; |
| 1875 | break; |
| 1876 | default: |
| 1877 | break; |
| 1878 | } |
| 1879 | |
| 1880 | pcs->desc.name = DRIVER_NAME; |
| 1881 | pcs->desc.pctlops = &pcs_pinctrl_ops; |
| 1882 | pcs->desc.pmxops = &pcs_pinmux_ops; |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1883 | if (PCS_HAS_PINCONF) |
Axel Lin | a7bbdd7 | 2013-03-04 13:47:39 +0800 | [diff] [blame] | 1884 | pcs->desc.confops = &pcs_pinconf_ops; |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1885 | pcs->desc.owner = THIS_MODULE; |
| 1886 | |
| 1887 | ret = pcs_allocate_pin_table(pcs); |
| 1888 | if (ret < 0) |
| 1889 | goto free; |
| 1890 | |
Tony Lindgren | 950b0d9 | 2017-01-11 14:13:34 -0800 | [diff] [blame] | 1891 | ret = pinctrl_register_and_init(&pcs->desc, pcs->dev, pcs, &pcs->pctl); |
| 1892 | if (ret) { |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1893 | dev_err(pcs->dev, "could not register single pinctrl driver\n"); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1894 | goto free; |
| 1895 | } |
| 1896 | |
Haojian Zhuang | a1a277e | 2013-02-17 19:42:52 +0800 | [diff] [blame] | 1897 | ret = pcs_add_gpio_func(np, pcs); |
| 1898 | if (ret < 0) |
| 1899 | goto free; |
| 1900 | |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1901 | pcs->socdata.irq = irq_of_parse_and_map(np, 0); |
| 1902 | if (pcs->socdata.irq) |
| 1903 | pcs->flags |= PCS_FEAT_IRQ; |
| 1904 | |
Tony Lindgren | dc7743a | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1905 | /* We still need auxdata for some omaps for PRM interrupts */ |
| 1906 | pdata = dev_get_platdata(&pdev->dev); |
| 1907 | if (pdata) { |
| 1908 | if (pdata->rearm) |
| 1909 | pcs->socdata.rearm = pdata->rearm; |
| 1910 | if (pdata->irq) { |
| 1911 | pcs->socdata.irq = pdata->irq; |
| 1912 | pcs->flags |= PCS_FEAT_IRQ; |
| 1913 | } |
| 1914 | } |
| 1915 | |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1916 | if (PCS_HAS_IRQ) { |
| 1917 | ret = pcs_irq_init_chained_handler(pcs, np); |
| 1918 | if (ret < 0) |
| 1919 | dev_warn(pcs->dev, "initialized with no interrupts\n"); |
| 1920 | } |
| 1921 | |
Tony Lindgren | c258492 | 2017-12-14 08:51:15 -0800 | [diff] [blame] | 1922 | dev_info(pcs->dev, "%i pins, size %u\n", pcs->desc.npins, pcs->size); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1923 | |
Tony Lindgren | 6118714 | 2017-03-30 09:16:39 -0700 | [diff] [blame] | 1924 | return pinctrl_enable(pcs->pctl); |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1925 | |
| 1926 | free: |
| 1927 | pcs_free_resources(pcs); |
| 1928 | |
| 1929 | return ret; |
| 1930 | } |
| 1931 | |
Bill Pemberton | f90f54b | 2012-11-19 13:26:06 -0500 | [diff] [blame] | 1932 | static int pcs_remove(struct platform_device *pdev) |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1933 | { |
| 1934 | struct pcs_device *pcs = platform_get_drvdata(pdev); |
| 1935 | |
| 1936 | if (!pcs) |
| 1937 | return 0; |
| 1938 | |
| 1939 | pcs_free_resources(pcs); |
| 1940 | |
| 1941 | return 0; |
| 1942 | } |
| 1943 | |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1944 | static const struct pcs_soc_data pinctrl_single_omap_wkup = { |
| 1945 | .flags = PCS_QUIRK_SHARED_IRQ, |
| 1946 | .irq_enable_mask = (1 << 14), /* OMAP_WAKEUP_EN */ |
| 1947 | .irq_status_mask = (1 << 15), /* OMAP_WAKEUP_EVENT */ |
| 1948 | }; |
| 1949 | |
Nishanth Menon | 31320be | 2014-08-22 09:01:01 -0500 | [diff] [blame] | 1950 | static const struct pcs_soc_data pinctrl_single_dra7 = { |
Nishanth Menon | 31320be | 2014-08-22 09:01:01 -0500 | [diff] [blame] | 1951 | .irq_enable_mask = (1 << 24), /* WAKEUPENABLE */ |
| 1952 | .irq_status_mask = (1 << 25), /* WAKEUPEVENT */ |
| 1953 | }; |
| 1954 | |
Keerthy | aa2293d | 2014-08-22 09:01:02 -0500 | [diff] [blame] | 1955 | static const struct pcs_soc_data pinctrl_single_am437x = { |
Keerthy | 88a1dbd | 2018-05-17 10:10:21 +0530 | [diff] [blame] | 1956 | .flags = PCS_QUIRK_SHARED_IRQ | PCS_CONTEXT_LOSS_OFF, |
Keerthy | aa2293d | 2014-08-22 09:01:02 -0500 | [diff] [blame] | 1957 | .irq_enable_mask = (1 << 29), /* OMAP_WAKEUP_EN */ |
| 1958 | .irq_status_mask = (1 << 30), /* OMAP_WAKEUP_EVENT */ |
| 1959 | }; |
| 1960 | |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1961 | static const struct pcs_soc_data pinctrl_single = { |
| 1962 | }; |
| 1963 | |
| 1964 | static const struct pcs_soc_data pinconf_single = { |
| 1965 | .flags = PCS_FEAT_PINCONF, |
| 1966 | }; |
| 1967 | |
Fabian Frederick | baa9946e | 2015-03-16 20:59:09 +0100 | [diff] [blame] | 1968 | static const struct of_device_id pcs_of_match[] = { |
Tony Lindgren | 3e6cee1 | 2013-10-02 21:39:40 -0700 | [diff] [blame] | 1969 | { .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup }, |
| 1970 | { .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup }, |
| 1971 | { .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup }, |
Nishanth Menon | 31320be | 2014-08-22 09:01:01 -0500 | [diff] [blame] | 1972 | { .compatible = "ti,dra7-padconf", .data = &pinctrl_single_dra7 }, |
Keerthy | aa2293d | 2014-08-22 09:01:02 -0500 | [diff] [blame] | 1973 | { .compatible = "ti,am437-padconf", .data = &pinctrl_single_am437x }, |
Tony Lindgren | 02e483f | 2013-10-02 21:39:39 -0700 | [diff] [blame] | 1974 | { .compatible = "pinctrl-single", .data = &pinctrl_single }, |
| 1975 | { .compatible = "pinconf-single", .data = &pinconf_single }, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1976 | { }, |
| 1977 | }; |
| 1978 | MODULE_DEVICE_TABLE(of, pcs_of_match); |
| 1979 | |
| 1980 | static struct platform_driver pcs_driver = { |
| 1981 | .probe = pcs_probe, |
Bill Pemberton | 2a36f08 | 2012-11-19 13:21:27 -0500 | [diff] [blame] | 1982 | .remove = pcs_remove, |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1983 | .driver = { |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1984 | .name = DRIVER_NAME, |
| 1985 | .of_match_table = pcs_of_match, |
| 1986 | }, |
Hebbar Gururaja | 0f9bc4b | 2013-05-31 15:43:01 +0530 | [diff] [blame] | 1987 | #ifdef CONFIG_PM |
| 1988 | .suspend = pinctrl_single_suspend, |
| 1989 | .resume = pinctrl_single_resume, |
| 1990 | #endif |
Tony Lindgren | 8b8b091b | 2012-07-10 02:05:46 -0700 | [diff] [blame] | 1991 | }; |
| 1992 | |
| 1993 | module_platform_driver(pcs_driver); |
| 1994 | |
| 1995 | MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>"); |
| 1996 | MODULE_DESCRIPTION("One-register-per-pin type device tree based pinctrl driver"); |
| 1997 | MODULE_LICENSE("GPL v2"); |