Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Core driver for the pin muxing portions of the pin control subsystem |
| 3 | * |
Linus Walleij | e93bcee | 2012-02-09 07:23:28 +0100 | [diff] [blame] | 4 | * Copyright (C) 2011-2012 ST-Ericsson SA |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 5 | * Written on behalf of Linaro for ST-Ericsson |
| 6 | * Based on bits of regulator core, gpio core and clk core |
| 7 | * |
| 8 | * Author: Linus Walleij <linus.walleij@linaro.org> |
| 9 | * |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 10 | * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved. |
| 11 | * |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 12 | * License terms: GNU General Public License (GPL) version 2 |
| 13 | */ |
| 14 | #define pr_fmt(fmt) "pinmux core: " fmt |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/radix-tree.h> |
| 22 | #include <linux/err.h> |
| 23 | #include <linux/list.h> |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 24 | #include <linux/string.h> |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 25 | #include <linux/debugfs.h> |
| 26 | #include <linux/seq_file.h> |
| 27 | #include <linux/pinctrl/machine.h> |
| 28 | #include <linux/pinctrl/pinmux.h> |
| 29 | #include "core.h" |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 30 | #include "pinmux.h" |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 31 | |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 32 | int pinmux_check_ops(struct pinctrl_dev *pctldev) |
| 33 | { |
| 34 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
Dong Aisheng | a1d31f7 | 2012-04-06 20:18:09 +0800 | [diff] [blame] | 35 | unsigned nfuncs; |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 36 | unsigned selector = 0; |
| 37 | |
| 38 | /* Check that we implement required operations */ |
Dong Aisheng | a1d31f7 | 2012-04-06 20:18:09 +0800 | [diff] [blame] | 39 | if (!ops || |
| 40 | !ops->get_functions_count || |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 41 | !ops->get_function_name || |
| 42 | !ops->get_function_groups || |
Linus Walleij | 03e9f0c | 2014-09-03 13:02:56 +0200 | [diff] [blame] | 43 | !ops->set_mux) { |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 44 | dev_err(pctldev->dev, "pinmux ops lacks necessary functions\n"); |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 45 | return -EINVAL; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 46 | } |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 47 | /* Check that all functions registered have names */ |
Dong Aisheng | a1d31f7 | 2012-04-06 20:18:09 +0800 | [diff] [blame] | 48 | nfuncs = ops->get_functions_count(pctldev); |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 49 | while (selector < nfuncs) { |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 50 | const char *fname = ops->get_function_name(pctldev, |
| 51 | selector); |
| 52 | if (!fname) { |
Dong Aisheng | a1d31f7 | 2012-04-06 20:18:09 +0800 | [diff] [blame] | 53 | dev_err(pctldev->dev, "pinmux ops has no name for function%u\n", |
Stephen Warren | 03665e0 | 2012-02-19 23:45:45 -0700 | [diff] [blame] | 54 | selector); |
| 55 | return -EINVAL; |
| 56 | } |
| 57 | selector++; |
| 58 | } |
| 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 63 | int pinmux_validate_map(const struct pinctrl_map *map, int i) |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 64 | { |
| 65 | if (!map->data.mux.function) { |
| 66 | pr_err("failed to register map %s (%d): no function given\n", |
| 67 | map->name, i); |
| 68 | return -EINVAL; |
| 69 | } |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 74 | /** |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 75 | * pin_request() - request a single pin to be muxed in, typically for GPIO |
| 76 | * @pin: the pin number in the global pin space |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 77 | * @owner: a representation of the owner of this pin; typically the device |
| 78 | * name that controls its mux function, or the requested GPIO name |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 79 | * @gpio_range: the range matching the GPIO pin if this is a request for a |
| 80 | * single GPIO pin |
| 81 | */ |
| 82 | static int pin_request(struct pinctrl_dev *pctldev, |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 83 | int pin, const char *owner, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 84 | struct pinctrl_gpio_range *gpio_range) |
| 85 | { |
| 86 | struct pin_desc *desc; |
| 87 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 88 | int status = -EINVAL; |
| 89 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 90 | desc = pin_desc_get(pctldev, pin); |
| 91 | if (desc == NULL) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 92 | dev_err(pctldev->dev, |
Stephen Warren | d470531 | 2012-05-01 11:14:15 -0600 | [diff] [blame] | 93 | "pin %d is not registered so it cannot be requested\n", |
| 94 | pin); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 95 | goto out; |
| 96 | } |
| 97 | |
Dong Aisheng | d0bd8df | 2012-04-17 15:00:45 +0800 | [diff] [blame] | 98 | dev_dbg(pctldev->dev, "request pin %d (%s) for %s\n", |
| 99 | pin, desc->name, owner); |
| 100 | |
Vladimir Zapolskiy | b1eb8fa | 2016-12-25 02:59:28 +0200 | [diff] [blame] | 101 | if ((!gpio_range || ops->strict) && |
| 102 | desc->mux_usecount && strcmp(desc->mux_owner, owner)) { |
| 103 | dev_err(pctldev->dev, |
| 104 | "pin %s already requested by %s; cannot claim for %s\n", |
| 105 | desc->name, desc->mux_owner, owner); |
| 106 | goto out; |
| 107 | } |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 108 | |
Vladimir Zapolskiy | b1eb8fa | 2016-12-25 02:59:28 +0200 | [diff] [blame] | 109 | if ((gpio_range || ops->strict) && desc->gpio_owner) { |
| 110 | dev_err(pctldev->dev, |
| 111 | "pin %s already requested by %s; cannot claim for %s\n", |
| 112 | desc->name, desc->gpio_owner, owner); |
| 113 | goto out; |
| 114 | } |
| 115 | |
| 116 | if (gpio_range) { |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 117 | desc->gpio_owner = owner; |
| 118 | } else { |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 119 | desc->mux_usecount++; |
| 120 | if (desc->mux_usecount > 1) |
| 121 | return 0; |
| 122 | |
| 123 | desc->mux_owner = owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 124 | } |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 125 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 126 | /* Let each pin increase references to this module */ |
| 127 | if (!try_module_get(pctldev->owner)) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 128 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 129 | "could not increase module refcount for pin %d\n", |
| 130 | pin); |
| 131 | status = -EINVAL; |
| 132 | goto out_free_pin; |
| 133 | } |
| 134 | |
| 135 | /* |
| 136 | * If there is no kind of request function for the pin we just assume |
| 137 | * we got it by default and proceed. |
| 138 | */ |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 139 | if (gpio_range && ops->gpio_request_enable) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 140 | /* This requests and enables a single GPIO pin */ |
| 141 | status = ops->gpio_request_enable(pctldev, gpio_range, pin); |
| 142 | else if (ops->request) |
| 143 | status = ops->request(pctldev, pin); |
| 144 | else |
| 145 | status = 0; |
| 146 | |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 147 | if (status) { |
Stephen Warren | d470531 | 2012-05-01 11:14:15 -0600 | [diff] [blame] | 148 | dev_err(pctldev->dev, "request() failed for pin %d\n", pin); |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 149 | module_put(pctldev->owner); |
| 150 | } |
| 151 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 152 | out_free_pin: |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 153 | if (status) { |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 154 | if (gpio_range) { |
| 155 | desc->gpio_owner = NULL; |
| 156 | } else { |
| 157 | desc->mux_usecount--; |
| 158 | if (!desc->mux_usecount) |
| 159 | desc->mux_owner = NULL; |
| 160 | } |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 161 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 162 | out: |
| 163 | if (status) |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 164 | dev_err(pctldev->dev, "pin-%d (%s) status %d\n", |
Stephen Warren | d470531 | 2012-05-01 11:14:15 -0600 | [diff] [blame] | 165 | pin, owner, status); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 166 | |
| 167 | return status; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * pin_free() - release a single muxed in pin so something else can be muxed |
| 172 | * @pctldev: pin controller device handling this pin |
| 173 | * @pin: the pin to free |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 174 | * @gpio_range: the range matching the GPIO pin if this is a request for a |
| 175 | * single GPIO pin |
Linus Walleij | 336cdba0 | 2011-11-10 09:27:41 +0100 | [diff] [blame] | 176 | * |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 177 | * This function returns a pointer to the previous owner. This is used |
| 178 | * for callers that dynamically allocate an owner name so it can be freed |
Linus Walleij | 336cdba0 | 2011-11-10 09:27:41 +0100 | [diff] [blame] | 179 | * once the pin is free. This is done for GPIO request functions. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 180 | */ |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 181 | static const char *pin_free(struct pinctrl_dev *pctldev, int pin, |
| 182 | struct pinctrl_gpio_range *gpio_range) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 183 | { |
| 184 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 185 | struct pin_desc *desc; |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 186 | const char *owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 187 | |
| 188 | desc = pin_desc_get(pctldev, pin); |
| 189 | if (desc == NULL) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 190 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 191 | "pin is not registered so it cannot be freed\n"); |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 192 | return NULL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 193 | } |
| 194 | |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 195 | if (!gpio_range) { |
Richard Genoud | 740924a | 2013-03-21 12:21:47 +0100 | [diff] [blame] | 196 | /* |
| 197 | * A pin should not be freed more times than allocated. |
| 198 | */ |
| 199 | if (WARN_ON(!desc->mux_usecount)) |
| 200 | return NULL; |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 201 | desc->mux_usecount--; |
| 202 | if (desc->mux_usecount) |
| 203 | return NULL; |
| 204 | } |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 205 | |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 206 | /* |
| 207 | * If there is no kind of request function for the pin we just assume |
| 208 | * we got it by default and proceed. |
| 209 | */ |
| 210 | if (gpio_range && ops->gpio_disable_free) |
| 211 | ops->gpio_disable_free(pctldev, gpio_range, pin); |
| 212 | else if (ops->free) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 213 | ops->free(pctldev, pin); |
| 214 | |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 215 | if (gpio_range) { |
| 216 | owner = desc->gpio_owner; |
| 217 | desc->gpio_owner = NULL; |
| 218 | } else { |
| 219 | owner = desc->mux_owner; |
| 220 | desc->mux_owner = NULL; |
| 221 | desc->mux_setting = NULL; |
| 222 | } |
| 223 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 224 | module_put(pctldev->owner); |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 225 | |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 226 | return owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | /** |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 230 | * pinmux_request_gpio() - request pinmuxing for a GPIO pin |
| 231 | * @pctldev: pin controller device affected |
| 232 | * @pin: the pin to mux in for GPIO |
| 233 | * @range: the applicable GPIO range |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 234 | */ |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 235 | int pinmux_request_gpio(struct pinctrl_dev *pctldev, |
| 236 | struct pinctrl_gpio_range *range, |
| 237 | unsigned pin, unsigned gpio) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 238 | { |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 239 | const char *owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 240 | int ret; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 241 | |
| 242 | /* Conjure some name stating what chip and pin this is taken by */ |
Thomas Petazzoni | 23a895a | 2012-09-13 21:48:14 +0200 | [diff] [blame] | 243 | owner = kasprintf(GFP_KERNEL, "%s:%d", range->name, gpio); |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 244 | if (!owner) |
Masahiro Yamada | 1fb1f05 | 2016-05-25 20:14:13 +0900 | [diff] [blame] | 245 | return -ENOMEM; |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 246 | |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 247 | ret = pin_request(pctldev, pin, owner, range); |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 248 | if (ret < 0) |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 249 | kfree(owner); |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 250 | |
| 251 | return ret; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 252 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 253 | |
| 254 | /** |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 255 | * pinmux_free_gpio() - release a pin from GPIO muxing |
| 256 | * @pctldev: the pin controller device for the pin |
| 257 | * @pin: the affected currently GPIO-muxed in pin |
| 258 | * @range: applicable GPIO range |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 259 | */ |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 260 | void pinmux_free_gpio(struct pinctrl_dev *pctldev, unsigned pin, |
| 261 | struct pinctrl_gpio_range *range) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 262 | { |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 263 | const char *owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 264 | |
Stephen Warren | 3cc70ed | 2012-02-19 23:45:44 -0700 | [diff] [blame] | 265 | owner = pin_free(pctldev, pin, range); |
| 266 | kfree(owner); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 267 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 268 | |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 269 | /** |
| 270 | * pinmux_gpio_direction() - set the direction of a single muxed-in GPIO pin |
| 271 | * @pctldev: the pin controller handling this pin |
| 272 | * @range: applicable GPIO range |
| 273 | * @pin: the affected GPIO pin in this controller |
| 274 | * @input: true if we set the pin as input, false for output |
| 275 | */ |
| 276 | int pinmux_gpio_direction(struct pinctrl_dev *pctldev, |
| 277 | struct pinctrl_gpio_range *range, |
| 278 | unsigned pin, bool input) |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 279 | { |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 280 | const struct pinmux_ops *ops; |
| 281 | int ret; |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 282 | |
| 283 | ops = pctldev->desc->pmxops; |
| 284 | |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 285 | if (ops->gpio_set_direction) |
| 286 | ret = ops->gpio_set_direction(pctldev, range, pin, input); |
| 287 | else |
| 288 | ret = 0; |
| 289 | |
| 290 | return ret; |
| 291 | } |
| 292 | |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 293 | static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev, |
| 294 | const char *function) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 295 | { |
| 296 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 297 | unsigned nfuncs = ops->get_functions_count(pctldev); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 298 | unsigned selector = 0; |
| 299 | |
| 300 | /* See if this pctldev has this function */ |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 301 | while (selector < nfuncs) { |
Masahiro Yamada | 163dc9f | 2015-08-01 13:22:38 +0900 | [diff] [blame] | 302 | const char *fname = ops->get_function_name(pctldev, selector); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 303 | |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 304 | if (!strcmp(function, fname)) |
| 305 | return selector; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 306 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 307 | selector++; |
| 308 | } |
| 309 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 310 | return -EINVAL; |
| 311 | } |
| 312 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 313 | int pinmux_map_to_setting(const struct pinctrl_map *map, |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 314 | struct pinctrl_setting *setting) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 315 | { |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 316 | struct pinctrl_dev *pctldev = setting->pctldev; |
| 317 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 318 | char const * const *groups; |
| 319 | unsigned num_groups; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 320 | int ret; |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 321 | const char *group; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 322 | |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 323 | if (!pmxops) { |
| 324 | dev_err(pctldev->dev, "does not support mux function\n"); |
| 325 | return -EINVAL; |
| 326 | } |
| 327 | |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 328 | ret = pinmux_func_name_to_selector(pctldev, map->data.mux.function); |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 329 | if (ret < 0) { |
| 330 | dev_err(pctldev->dev, "invalid function %s in map table\n", |
| 331 | map->data.mux.function); |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 332 | return ret; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 333 | } |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 334 | setting->data.mux.func = ret; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 335 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 336 | ret = pmxops->get_function_groups(pctldev, setting->data.mux.func, |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 337 | &groups, &num_groups); |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 338 | if (ret < 0) { |
| 339 | dev_err(pctldev->dev, "can't query groups for function %s\n", |
| 340 | map->data.mux.function); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 341 | return ret; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 342 | } |
| 343 | if (!num_groups) { |
| 344 | dev_err(pctldev->dev, |
| 345 | "function %s can't be selected on any group\n", |
| 346 | map->data.mux.function); |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 347 | return -EINVAL; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 348 | } |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 349 | if (map->data.mux.group) { |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 350 | group = map->data.mux.group; |
Andy Shevchenko | dff4359 | 2016-03-17 14:22:20 -0700 | [diff] [blame] | 351 | ret = match_string(groups, num_groups, group); |
| 352 | if (ret < 0) { |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 353 | dev_err(pctldev->dev, |
| 354 | "invalid group \"%s\" for function \"%s\"\n", |
| 355 | group, map->data.mux.function); |
Andy Shevchenko | dff4359 | 2016-03-17 14:22:20 -0700 | [diff] [blame] | 356 | return ret; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 357 | } |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 358 | } else { |
| 359 | group = groups[0]; |
| 360 | } |
| 361 | |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 362 | ret = pinctrl_get_group_selector(pctldev, group); |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 363 | if (ret < 0) { |
| 364 | dev_err(pctldev->dev, "invalid group %s in map table\n", |
| 365 | map->data.mux.group); |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 366 | return ret; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 367 | } |
John Crispin | 15f70e1 | 2012-04-23 19:01:58 +0200 | [diff] [blame] | 368 | setting->data.mux.group = ret; |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 369 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 370 | return 0; |
| 371 | } |
| 372 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 373 | void pinmux_free_setting(const struct pinctrl_setting *setting) |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 374 | { |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 375 | /* This function is currently unused */ |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 376 | } |
| 377 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 378 | int pinmux_enable_setting(const struct pinctrl_setting *setting) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 379 | { |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 380 | struct pinctrl_dev *pctldev = setting->pctldev; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 381 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 382 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
Antoine Ténart | e5b3b2d | 2014-04-10 15:07:50 +0200 | [diff] [blame] | 383 | int ret = 0; |
| 384 | const unsigned *pins = NULL; |
| 385 | unsigned num_pins = 0; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 386 | int i; |
| 387 | struct pin_desc *desc; |
| 388 | |
Antoine Ténart | e5b3b2d | 2014-04-10 15:07:50 +0200 | [diff] [blame] | 389 | if (pctlops->get_group_pins) |
| 390 | ret = pctlops->get_group_pins(pctldev, setting->data.mux.group, |
| 391 | &pins, &num_pins); |
| 392 | |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 393 | if (ret) { |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 394 | const char *gname; |
| 395 | |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 396 | /* errors only affect debug data, so just warn */ |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 397 | gname = pctlops->get_group_name(pctldev, |
| 398 | setting->data.mux.group); |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 399 | dev_warn(pctldev->dev, |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 400 | "could not get pins for group %s\n", |
| 401 | gname); |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 402 | num_pins = 0; |
| 403 | } |
| 404 | |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 405 | /* Try to allocate all pins in this group, one by one */ |
| 406 | for (i = 0; i < num_pins; i++) { |
| 407 | ret = pin_request(pctldev, pins[i], setting->dev_name, NULL); |
| 408 | if (ret) { |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 409 | const char *gname; |
| 410 | const char *pname; |
| 411 | |
| 412 | desc = pin_desc_get(pctldev, pins[i]); |
| 413 | pname = desc ? desc->name : "non-existing"; |
| 414 | gname = pctlops->get_group_name(pctldev, |
| 415 | setting->data.mux.group); |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 416 | dev_err(pctldev->dev, |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 417 | "could not request pin %d (%s) from group %s " |
| 418 | " on device %s\n", |
| 419 | pins[i], pname, gname, |
| 420 | pinctrl_dev_get_name(pctldev)); |
Axel Lin | e38d457 | 2012-11-10 21:53:20 +0800 | [diff] [blame] | 421 | goto err_pin_request; |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | |
| 425 | /* Now that we have acquired the pins, encode the mux setting */ |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 426 | for (i = 0; i < num_pins; i++) { |
| 427 | desc = pin_desc_get(pctldev, pins[i]); |
| 428 | if (desc == NULL) { |
| 429 | dev_warn(pctldev->dev, |
| 430 | "could not get pin desc for pin %d\n", |
| 431 | pins[i]); |
| 432 | continue; |
| 433 | } |
| 434 | desc->mux_setting = &(setting->data.mux); |
| 435 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 436 | |
Linus Walleij | 03e9f0c | 2014-09-03 13:02:56 +0200 | [diff] [blame] | 437 | ret = ops->set_mux(pctldev, setting->data.mux.func, |
| 438 | setting->data.mux.group); |
Axel Lin | e38d457 | 2012-11-10 21:53:20 +0800 | [diff] [blame] | 439 | |
| 440 | if (ret) |
Linus Walleij | 03e9f0c | 2014-09-03 13:02:56 +0200 | [diff] [blame] | 441 | goto err_set_mux; |
Axel Lin | e38d457 | 2012-11-10 21:53:20 +0800 | [diff] [blame] | 442 | |
| 443 | return 0; |
| 444 | |
Linus Walleij | 03e9f0c | 2014-09-03 13:02:56 +0200 | [diff] [blame] | 445 | err_set_mux: |
Axel Lin | e38d457 | 2012-11-10 21:53:20 +0800 | [diff] [blame] | 446 | for (i = 0; i < num_pins; i++) { |
| 447 | desc = pin_desc_get(pctldev, pins[i]); |
| 448 | if (desc) |
| 449 | desc->mux_setting = NULL; |
| 450 | } |
| 451 | err_pin_request: |
| 452 | /* On error release all taken pins */ |
| 453 | while (--i >= 0) |
| 454 | pin_free(pctldev, pins[i], NULL); |
| 455 | |
| 456 | return ret; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 457 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 458 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 459 | void pinmux_disable_setting(const struct pinctrl_setting *setting) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 460 | { |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 461 | struct pinctrl_dev *pctldev = setting->pctldev; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 462 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
Antoine Ténart | e5b3b2d | 2014-04-10 15:07:50 +0200 | [diff] [blame] | 463 | int ret = 0; |
| 464 | const unsigned *pins = NULL; |
| 465 | unsigned num_pins = 0; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 466 | int i; |
| 467 | struct pin_desc *desc; |
| 468 | |
Antoine Ténart | e5b3b2d | 2014-04-10 15:07:50 +0200 | [diff] [blame] | 469 | if (pctlops->get_group_pins) |
| 470 | ret = pctlops->get_group_pins(pctldev, setting->data.mux.group, |
| 471 | &pins, &num_pins); |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 472 | if (ret) { |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 473 | const char *gname; |
| 474 | |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 475 | /* errors only affect debug data, so just warn */ |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 476 | gname = pctlops->get_group_name(pctldev, |
| 477 | setting->data.mux.group); |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 478 | dev_warn(pctldev->dev, |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 479 | "could not get pins for group %s\n", |
| 480 | gname); |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 481 | num_pins = 0; |
| 482 | } |
| 483 | |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 484 | /* Flag the descs that no setting is active */ |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 485 | for (i = 0; i < num_pins; i++) { |
| 486 | desc = pin_desc_get(pctldev, pins[i]); |
| 487 | if (desc == NULL) { |
| 488 | dev_warn(pctldev->dev, |
| 489 | "could not get pin desc for pin %d\n", |
| 490 | pins[i]); |
| 491 | continue; |
| 492 | } |
Sonic Zhang | 744f0a9 | 2013-08-14 13:26:43 +0800 | [diff] [blame] | 493 | if (desc->mux_setting == &(setting->data.mux)) { |
Sonic Zhang | 744f0a9 | 2013-08-14 13:26:43 +0800 | [diff] [blame] | 494 | pin_free(pctldev, pins[i], NULL); |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 495 | } else { |
| 496 | const char *gname; |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 497 | |
Linus Walleij | 1c8e794 | 2013-08-14 18:23:33 +0200 | [diff] [blame] | 498 | gname = pctlops->get_group_name(pctldev, |
| 499 | setting->data.mux.group); |
| 500 | dev_warn(pctldev->dev, |
| 501 | "not freeing pin %d (%s) as part of " |
| 502 | "deactivating group %s - it is already " |
| 503 | "used for some other setting", |
Michael Opdenacker | 808e657 | 2013-10-29 04:50:45 +0100 | [diff] [blame] | 504 | pins[i], desc->name, gname); |
Sonic Zhang | 744f0a9 | 2013-08-14 13:26:43 +0800 | [diff] [blame] | 505 | } |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 506 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 507 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 508 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 509 | #ifdef CONFIG_DEBUG_FS |
| 510 | |
| 511 | /* Called from pincontrol core */ |
| 512 | static int pinmux_functions_show(struct seq_file *s, void *what) |
| 513 | { |
| 514 | struct pinctrl_dev *pctldev = s->private; |
| 515 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 516 | unsigned nfuncs; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 517 | unsigned func_selector = 0; |
| 518 | |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 519 | if (!pmxops) |
| 520 | return 0; |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 521 | |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 522 | mutex_lock(&pctldev->mutex); |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 523 | nfuncs = pmxops->get_functions_count(pctldev); |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 524 | while (func_selector < nfuncs) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 525 | const char *func = pmxops->get_function_name(pctldev, |
| 526 | func_selector); |
| 527 | const char * const *groups; |
| 528 | unsigned num_groups; |
| 529 | int ret; |
| 530 | int i; |
| 531 | |
| 532 | ret = pmxops->get_function_groups(pctldev, func_selector, |
| 533 | &groups, &num_groups); |
Ludovic Desroches | 9d7ebbb | 2015-06-08 17:16:37 +0200 | [diff] [blame] | 534 | if (ret) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 535 | seq_printf(s, "function %s: COULD NOT GET GROUPS\n", |
| 536 | func); |
Ludovic Desroches | 9d7ebbb | 2015-06-08 17:16:37 +0200 | [diff] [blame] | 537 | func_selector++; |
| 538 | continue; |
| 539 | } |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 540 | |
| 541 | seq_printf(s, "function: %s, groups = [ ", func); |
| 542 | for (i = 0; i < num_groups; i++) |
| 543 | seq_printf(s, "%s ", groups[i]); |
| 544 | seq_puts(s, "]\n"); |
| 545 | |
| 546 | func_selector++; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 547 | } |
| 548 | |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 549 | mutex_unlock(&pctldev->mutex); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 550 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 551 | return 0; |
| 552 | } |
| 553 | |
| 554 | static int pinmux_pins_show(struct seq_file *s, void *what) |
| 555 | { |
| 556 | struct pinctrl_dev *pctldev = s->private; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 557 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
| 558 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 559 | unsigned i, pin; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 560 | |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 561 | if (!pmxops) |
| 562 | return 0; |
| 563 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 564 | seq_puts(s, "Pinmux settings per pin\n"); |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 565 | if (pmxops->strict) |
| 566 | seq_puts(s, |
| 567 | "Format: pin (name): mux_owner|gpio_owner (strict) hog?\n"); |
| 568 | else |
| 569 | seq_puts(s, |
| 570 | "Format: pin (name): mux_owner gpio_owner hog?\n"); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 571 | |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 572 | mutex_lock(&pctldev->mutex); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 573 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 574 | /* The pin number can be retrived from the pin controller descriptor */ |
| 575 | for (i = 0; i < pctldev->desc->npins; i++) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 576 | struct pin_desc *desc; |
Linus Walleij | 1cf94c4 | 2012-02-24 06:53:04 +0100 | [diff] [blame] | 577 | bool is_hog = false; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 578 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 579 | pin = pctldev->desc->pins[i].number; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 580 | desc = pin_desc_get(pctldev, pin); |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 581 | /* Skip if we cannot search the pin */ |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 582 | if (desc == NULL) |
| 583 | continue; |
| 584 | |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 585 | if (desc->mux_owner && |
| 586 | !strcmp(desc->mux_owner, pinctrl_dev_get_name(pctldev))) |
Linus Walleij | 1cf94c4 | 2012-02-24 06:53:04 +0100 | [diff] [blame] | 587 | is_hog = true; |
| 588 | |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 589 | if (pmxops->strict) { |
| 590 | if (desc->mux_owner) |
| 591 | seq_printf(s, "pin %d (%s): device %s%s", |
Masahiro Yamada | cf9d994 | 2016-05-24 14:26:26 +0900 | [diff] [blame] | 592 | pin, desc->name, desc->mux_owner, |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 593 | is_hog ? " (HOG)" : ""); |
| 594 | else if (desc->gpio_owner) |
| 595 | seq_printf(s, "pin %d (%s): GPIO %s", |
Masahiro Yamada | cf9d994 | 2016-05-24 14:26:26 +0900 | [diff] [blame] | 596 | pin, desc->name, desc->gpio_owner); |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 597 | else |
| 598 | seq_printf(s, "pin %d (%s): UNCLAIMED", |
Masahiro Yamada | cf9d994 | 2016-05-24 14:26:26 +0900 | [diff] [blame] | 599 | pin, desc->name); |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 600 | } else { |
| 601 | /* For non-strict controllers */ |
Masahiro Yamada | cf9d994 | 2016-05-24 14:26:26 +0900 | [diff] [blame] | 602 | seq_printf(s, "pin %d (%s): %s %s%s", pin, desc->name, |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 603 | desc->mux_owner ? desc->mux_owner |
| 604 | : "(MUX UNCLAIMED)", |
| 605 | desc->gpio_owner ? desc->gpio_owner |
| 606 | : "(GPIO UNCLAIMED)", |
| 607 | is_hog ? " (HOG)" : ""); |
| 608 | } |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 609 | |
Linus Walleij | 8150885 | 2015-05-28 10:11:19 +0200 | [diff] [blame] | 610 | /* If mux: print function+group claiming the pin */ |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 611 | if (desc->mux_setting) |
| 612 | seq_printf(s, " function %s group %s\n", |
| 613 | pmxops->get_function_name(pctldev, |
| 614 | desc->mux_setting->func), |
| 615 | pctlops->get_group_name(pctldev, |
| 616 | desc->mux_setting->group)); |
| 617 | else |
Markus Elfring | ffd10c2 | 2018-01-13 11:33:47 +0100 | [diff] [blame] | 618 | seq_putc(s, '\n'); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 619 | } |
| 620 | |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 621 | mutex_unlock(&pctldev->mutex); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 622 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 626 | void pinmux_show_map(struct seq_file *s, const struct pinctrl_map *map) |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 627 | { |
| 628 | seq_printf(s, "group %s\nfunction %s\n", |
| 629 | map->data.mux.group ? map->data.mux.group : "(default)", |
| 630 | map->data.mux.function); |
| 631 | } |
| 632 | |
| 633 | void pinmux_show_setting(struct seq_file *s, |
Masahiro Yamada | 3f713b7 | 2017-08-04 11:22:31 +0900 | [diff] [blame] | 634 | const struct pinctrl_setting *setting) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 635 | { |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 636 | struct pinctrl_dev *pctldev = setting->pctldev; |
| 637 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
| 638 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 639 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 640 | seq_printf(s, "group: %s (%u) function: %s (%u)\n", |
| 641 | pctlops->get_group_name(pctldev, setting->data.mux.group), |
| 642 | setting->data.mux.group, |
| 643 | pmxops->get_function_name(pctldev, setting->data.mux.func), |
| 644 | setting->data.mux.func); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 645 | } |
| 646 | |
Yangtao Li | 0819dc7 | 2018-11-30 11:36:17 -0500 | [diff] [blame^] | 647 | DEFINE_SHOW_ATTRIBUTE(pinmux_functions); |
| 648 | DEFINE_SHOW_ATTRIBUTE(pinmux_pins); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 649 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 650 | void pinmux_init_device_debugfs(struct dentry *devroot, |
| 651 | struct pinctrl_dev *pctldev) |
| 652 | { |
| 653 | debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO, |
Yangtao Li | 0819dc7 | 2018-11-30 11:36:17 -0500 | [diff] [blame^] | 654 | devroot, pctldev, &pinmux_functions_fops); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 655 | debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO, |
Yangtao Li | 0819dc7 | 2018-11-30 11:36:17 -0500 | [diff] [blame^] | 656 | devroot, pctldev, &pinmux_pins_fops); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | #endif /* CONFIG_DEBUG_FS */ |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 660 | |
| 661 | #ifdef CONFIG_GENERIC_PINMUX_FUNCTIONS |
| 662 | |
| 663 | /** |
| 664 | * pinmux_generic_get_function_count() - returns number of functions |
| 665 | * @pctldev: pin controller device |
| 666 | */ |
| 667 | int pinmux_generic_get_function_count(struct pinctrl_dev *pctldev) |
| 668 | { |
| 669 | return pctldev->num_functions; |
| 670 | } |
| 671 | EXPORT_SYMBOL_GPL(pinmux_generic_get_function_count); |
| 672 | |
| 673 | /** |
| 674 | * pinmux_generic_get_function_name() - returns the function name |
| 675 | * @pctldev: pin controller device |
| 676 | * @selector: function number |
| 677 | */ |
| 678 | const char * |
| 679 | pinmux_generic_get_function_name(struct pinctrl_dev *pctldev, |
| 680 | unsigned int selector) |
| 681 | { |
| 682 | struct function_desc *function; |
| 683 | |
| 684 | function = radix_tree_lookup(&pctldev->pin_function_tree, |
| 685 | selector); |
| 686 | if (!function) |
| 687 | return NULL; |
| 688 | |
| 689 | return function->name; |
| 690 | } |
| 691 | EXPORT_SYMBOL_GPL(pinmux_generic_get_function_name); |
| 692 | |
| 693 | /** |
| 694 | * pinmux_generic_get_function_groups() - gets the function groups |
| 695 | * @pctldev: pin controller device |
| 696 | * @selector: function number |
| 697 | * @groups: array of pin groups |
| 698 | * @num_groups: number of pin groups |
| 699 | */ |
| 700 | int pinmux_generic_get_function_groups(struct pinctrl_dev *pctldev, |
| 701 | unsigned int selector, |
| 702 | const char * const **groups, |
| 703 | unsigned * const num_groups) |
| 704 | { |
| 705 | struct function_desc *function; |
| 706 | |
| 707 | function = radix_tree_lookup(&pctldev->pin_function_tree, |
| 708 | selector); |
| 709 | if (!function) { |
| 710 | dev_err(pctldev->dev, "%s could not find function%i\n", |
| 711 | __func__, selector); |
| 712 | return -EINVAL; |
| 713 | } |
| 714 | *groups = function->group_names; |
| 715 | *num_groups = function->num_group_names; |
| 716 | |
| 717 | return 0; |
| 718 | } |
| 719 | EXPORT_SYMBOL_GPL(pinmux_generic_get_function_groups); |
| 720 | |
| 721 | /** |
| 722 | * pinmux_generic_get_function() - returns a function based on the number |
| 723 | * @pctldev: pin controller device |
| 724 | * @group_selector: function number |
| 725 | */ |
| 726 | struct function_desc *pinmux_generic_get_function(struct pinctrl_dev *pctldev, |
| 727 | unsigned int selector) |
| 728 | { |
| 729 | struct function_desc *function; |
| 730 | |
| 731 | function = radix_tree_lookup(&pctldev->pin_function_tree, |
| 732 | selector); |
| 733 | if (!function) |
| 734 | return NULL; |
| 735 | |
| 736 | return function; |
| 737 | } |
| 738 | EXPORT_SYMBOL_GPL(pinmux_generic_get_function); |
| 739 | |
| 740 | /** |
Geert Uytterhoeven | 6bffa7e | 2017-04-03 10:32:42 +0200 | [diff] [blame] | 741 | * pinmux_generic_add_function() - adds a function group |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 742 | * @pctldev: pin controller device |
| 743 | * @name: name of the function |
| 744 | * @groups: array of pin groups |
| 745 | * @num_groups: number of pin groups |
| 746 | * @data: pin controller driver specific data |
| 747 | */ |
| 748 | int pinmux_generic_add_function(struct pinctrl_dev *pctldev, |
| 749 | const char *name, |
| 750 | const char **groups, |
| 751 | const unsigned int num_groups, |
| 752 | void *data) |
| 753 | { |
| 754 | struct function_desc *function; |
Tony Lindgren | f913cfc | 2018-07-05 02:10:15 -0700 | [diff] [blame] | 755 | int selector; |
| 756 | |
| 757 | if (!name) |
| 758 | return -EINVAL; |
| 759 | |
| 760 | selector = pinmux_func_name_to_selector(pctldev, name); |
| 761 | if (selector >= 0) |
| 762 | return selector; |
| 763 | |
| 764 | selector = pctldev->num_functions; |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 765 | |
| 766 | function = devm_kzalloc(pctldev->dev, sizeof(*function), GFP_KERNEL); |
| 767 | if (!function) |
| 768 | return -ENOMEM; |
| 769 | |
| 770 | function->name = name; |
| 771 | function->group_names = groups; |
| 772 | function->num_group_names = num_groups; |
| 773 | function->data = data; |
| 774 | |
Tony Lindgren | f913cfc | 2018-07-05 02:10:15 -0700 | [diff] [blame] | 775 | radix_tree_insert(&pctldev->pin_function_tree, selector, function); |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 776 | |
| 777 | pctldev->num_functions++; |
| 778 | |
Tony Lindgren | f913cfc | 2018-07-05 02:10:15 -0700 | [diff] [blame] | 779 | return selector; |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 780 | } |
| 781 | EXPORT_SYMBOL_GPL(pinmux_generic_add_function); |
| 782 | |
| 783 | /** |
| 784 | * pinmux_generic_remove_function() - removes a numbered function |
| 785 | * @pctldev: pin controller device |
| 786 | * @selector: function number |
| 787 | * |
| 788 | * Note that the caller must take care of locking. |
| 789 | */ |
| 790 | int pinmux_generic_remove_function(struct pinctrl_dev *pctldev, |
| 791 | unsigned int selector) |
| 792 | { |
| 793 | struct function_desc *function; |
| 794 | |
| 795 | function = radix_tree_lookup(&pctldev->pin_function_tree, |
| 796 | selector); |
| 797 | if (!function) |
| 798 | return -ENOENT; |
| 799 | |
| 800 | radix_tree_delete(&pctldev->pin_function_tree, selector); |
| 801 | devm_kfree(pctldev->dev, function); |
| 802 | |
| 803 | pctldev->num_functions--; |
| 804 | |
| 805 | return 0; |
| 806 | } |
| 807 | EXPORT_SYMBOL_GPL(pinmux_generic_remove_function); |
| 808 | |
| 809 | /** |
| 810 | * pinmux_generic_free_functions() - removes all functions |
| 811 | * @pctldev: pin controller device |
| 812 | * |
Tony Lindgren | 664b7c4 | 2017-05-12 08:47:57 -0700 | [diff] [blame] | 813 | * Note that the caller must take care of locking. The pinctrl |
| 814 | * functions are allocated with devm_kzalloc() so no need to free |
| 815 | * them here. |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 816 | */ |
| 817 | void pinmux_generic_free_functions(struct pinctrl_dev *pctldev) |
| 818 | { |
| 819 | struct radix_tree_iter iter; |
Masahiro Yamada | 906a2a3 | 2017-08-04 13:52:05 +0900 | [diff] [blame] | 820 | void __rcu **slot; |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 821 | |
| 822 | radix_tree_for_each_slot(slot, &pctldev->pin_function_tree, &iter, 0) |
Tony Lindgren | 664b7c4 | 2017-05-12 08:47:57 -0700 | [diff] [blame] | 823 | radix_tree_delete(&pctldev->pin_function_tree, iter.index); |
Tony Lindgren | a76edc8 | 2016-12-27 09:20:01 -0800 | [diff] [blame] | 824 | |
| 825 | pctldev->num_functions = 0; |
| 826 | } |
| 827 | |
| 828 | #endif /* CONFIG_GENERIC_PINMUX_FUNCTIONS */ |