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