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 | * |
| 4 | * Copyright (C) 2011 ST-Ericsson SA |
| 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 | * |
| 10 | * License terms: GNU General Public License (GPL) version 2 |
| 11 | */ |
| 12 | #define pr_fmt(fmt) "pinmux core: " fmt |
| 13 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/radix-tree.h> |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/list.h> |
| 22 | #include <linux/mutex.h> |
| 23 | #include <linux/spinlock.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/sysfs.h> |
| 26 | #include <linux/debugfs.h> |
| 27 | #include <linux/seq_file.h> |
| 28 | #include <linux/pinctrl/machine.h> |
| 29 | #include <linux/pinctrl/pinmux.h> |
| 30 | #include "core.h" |
| 31 | |
| 32 | /* List of pinmuxes */ |
| 33 | static DEFINE_MUTEX(pinmux_list_mutex); |
| 34 | static LIST_HEAD(pinmux_list); |
| 35 | |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 36 | /* Global pinmux maps */ |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 37 | static struct pinmux_map *pinmux_maps; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 38 | static unsigned pinmux_maps_num; |
| 39 | |
| 40 | /** |
| 41 | * struct pinmux_group - group list item for pinmux groups |
| 42 | * @node: pinmux group list node |
| 43 | * @group_selector: the group selector for this group |
| 44 | */ |
| 45 | struct pinmux_group { |
| 46 | struct list_head node; |
| 47 | unsigned group_selector; |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * struct pinmux - per-device pinmux state holder |
| 52 | * @node: global list node |
| 53 | * @dev: the device using this pinmux |
| 54 | * @usecount: the number of active users of this mux setting, used to keep |
| 55 | * track of nested use cases |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 56 | * @pctldev: pin control device handling this pinmux |
| 57 | * @func_selector: the function selector for the pinmux device handling |
| 58 | * this pinmux |
| 59 | * @groups: the group selectors for the pinmux device and |
| 60 | * selector combination handling this pinmux, this is a list that |
| 61 | * will be traversed on all pinmux operations such as |
| 62 | * get/put/enable/disable |
| 63 | * @mutex: a lock for the pinmux state holder |
| 64 | */ |
| 65 | struct pinmux { |
| 66 | struct list_head node; |
| 67 | struct device *dev; |
| 68 | unsigned usecount; |
| 69 | struct pinctrl_dev *pctldev; |
| 70 | unsigned func_selector; |
| 71 | struct list_head groups; |
| 72 | struct mutex mutex; |
| 73 | }; |
| 74 | |
| 75 | /** |
| 76 | * struct pinmux_hog - a list item to stash mux hogs |
| 77 | * @node: pinmux hog list node |
| 78 | * @map: map entry responsible for this hogging |
| 79 | * @pmx: the pinmux hogged by this item |
| 80 | */ |
| 81 | struct pinmux_hog { |
| 82 | struct list_head node; |
| 83 | struct pinmux_map const *map; |
| 84 | struct pinmux *pmx; |
| 85 | }; |
| 86 | |
| 87 | /** |
| 88 | * pin_request() - request a single pin to be muxed in, typically for GPIO |
| 89 | * @pin: the pin number in the global pin space |
| 90 | * @function: a functional name to give to this pin, passed to the driver |
| 91 | * so it knows what function to mux in, e.g. the string "gpioNN" |
| 92 | * means that you want to mux in the pin for use as GPIO number NN |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 93 | * @gpio_range: the range matching the GPIO pin if this is a request for a |
| 94 | * single GPIO pin |
| 95 | */ |
| 96 | static int pin_request(struct pinctrl_dev *pctldev, |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 97 | int pin, const char *function, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 98 | struct pinctrl_gpio_range *gpio_range) |
| 99 | { |
| 100 | struct pin_desc *desc; |
| 101 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 102 | int status = -EINVAL; |
| 103 | |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 104 | dev_dbg(pctldev->dev, "request pin %d for %s\n", pin, function); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 105 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 106 | desc = pin_desc_get(pctldev, pin); |
| 107 | if (desc == NULL) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 108 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 109 | "pin is not registered so it cannot be requested\n"); |
| 110 | goto out; |
| 111 | } |
| 112 | |
Marek Belisko | d2f6a1c | 2011-10-26 22:57:20 +0200 | [diff] [blame] | 113 | if (!function) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 114 | dev_err(pctldev->dev, "no function name given\n"); |
Marek Belisko | d2f6a1c | 2011-10-26 22:57:20 +0200 | [diff] [blame] | 115 | return -EINVAL; |
| 116 | } |
| 117 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 118 | spin_lock(&desc->lock); |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 119 | if (desc->mux_function) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 120 | spin_unlock(&desc->lock); |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 121 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 122 | "pin already requested\n"); |
| 123 | goto out; |
| 124 | } |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 125 | desc->mux_function = function; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 126 | spin_unlock(&desc->lock); |
| 127 | |
| 128 | /* Let each pin increase references to this module */ |
| 129 | if (!try_module_get(pctldev->owner)) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 130 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 131 | "could not increase module refcount for pin %d\n", |
| 132 | pin); |
| 133 | status = -EINVAL; |
| 134 | goto out_free_pin; |
| 135 | } |
| 136 | |
| 137 | /* |
| 138 | * If there is no kind of request function for the pin we just assume |
| 139 | * we got it by default and proceed. |
| 140 | */ |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 141 | if (gpio_range && ops->gpio_request_enable) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 142 | /* This requests and enables a single GPIO pin */ |
| 143 | status = ops->gpio_request_enable(pctldev, gpio_range, pin); |
| 144 | else if (ops->request) |
| 145 | status = ops->request(pctldev, pin); |
| 146 | else |
| 147 | status = 0; |
| 148 | |
| 149 | if (status) |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 150 | dev_err(pctldev->dev, "->request on device %s failed for pin %d\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 151 | pctldev->desc->name, pin); |
| 152 | out_free_pin: |
| 153 | if (status) { |
| 154 | spin_lock(&desc->lock); |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 155 | desc->mux_function = NULL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 156 | spin_unlock(&desc->lock); |
| 157 | } |
| 158 | out: |
| 159 | if (status) |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 160 | dev_err(pctldev->dev, "pin-%d (%s) status %d\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 161 | pin, function ? : "?", status); |
| 162 | |
| 163 | return status; |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * pin_free() - release a single muxed in pin so something else can be muxed |
| 168 | * @pctldev: pin controller device handling this pin |
| 169 | * @pin: the pin to free |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 170 | * @gpio_range: the range matching the GPIO pin if this is a request for a |
| 171 | * single GPIO pin |
Linus Walleij | 336cdba0 | 2011-11-10 09:27:41 +0100 | [diff] [blame] | 172 | * |
| 173 | * This function returns a pointer to the function name in use. This is used |
| 174 | * for callers that dynamically allocate a function name so it can be freed |
| 175 | * once the pin is free. This is done for GPIO request functions. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 176 | */ |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 177 | static const char *pin_free(struct pinctrl_dev *pctldev, int pin, |
| 178 | struct pinctrl_gpio_range *gpio_range) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 179 | { |
| 180 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 181 | struct pin_desc *desc; |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 182 | const char *func; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 183 | |
| 184 | desc = pin_desc_get(pctldev, pin); |
| 185 | if (desc == NULL) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 186 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 187 | "pin is not registered so it cannot be freed\n"); |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 188 | return NULL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 191 | /* |
| 192 | * If there is no kind of request function for the pin we just assume |
| 193 | * we got it by default and proceed. |
| 194 | */ |
| 195 | if (gpio_range && ops->gpio_disable_free) |
| 196 | ops->gpio_disable_free(pctldev, gpio_range, pin); |
| 197 | else if (ops->free) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 198 | ops->free(pctldev, pin); |
| 199 | |
| 200 | spin_lock(&desc->lock); |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 201 | func = desc->mux_function; |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 202 | desc->mux_function = NULL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 203 | spin_unlock(&desc->lock); |
| 204 | module_put(pctldev->owner); |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 205 | |
| 206 | return func; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | /** |
| 210 | * pinmux_request_gpio() - request a single pin to be muxed in as GPIO |
| 211 | * @gpio: the GPIO pin number from the GPIO subsystem number space |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 212 | * |
| 213 | * This function should *ONLY* be used from gpiolib-based GPIO drivers, |
| 214 | * as part of their gpio_request() semantics, platforms and individual drivers |
| 215 | * shall *NOT* request GPIO pins to be muxed in. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 216 | */ |
| 217 | int pinmux_request_gpio(unsigned gpio) |
| 218 | { |
| 219 | char gpiostr[16]; |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 220 | const char *function; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 221 | struct pinctrl_dev *pctldev; |
| 222 | struct pinctrl_gpio_range *range; |
| 223 | int ret; |
| 224 | int pin; |
| 225 | |
| 226 | ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range); |
| 227 | if (ret) |
| 228 | return -EINVAL; |
| 229 | |
| 230 | /* Convert to the pin controllers number space */ |
Chanho Park | 3c739ad | 2011-11-11 18:47:58 +0900 | [diff] [blame] | 231 | pin = gpio - range->base + range->pin_base; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 232 | |
| 233 | /* Conjure some name stating what chip and pin this is taken by */ |
| 234 | snprintf(gpiostr, 15, "%s:%d", range->name, gpio); |
| 235 | |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 236 | function = kstrdup(gpiostr, GFP_KERNEL); |
| 237 | if (!function) |
| 238 | return -EINVAL; |
| 239 | |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 240 | ret = pin_request(pctldev, pin, function, range); |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 241 | if (ret < 0) |
| 242 | kfree(function); |
| 243 | |
| 244 | return ret; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 245 | } |
| 246 | EXPORT_SYMBOL_GPL(pinmux_request_gpio); |
| 247 | |
| 248 | /** |
| 249 | * pinmux_free_gpio() - free a single pin, currently used as GPIO |
| 250 | * @gpio: the GPIO pin number from the GPIO subsystem number space |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 251 | * |
| 252 | * This function should *ONLY* be used from gpiolib-based GPIO drivers, |
| 253 | * as part of their gpio_free() semantics, platforms and individual drivers |
| 254 | * shall *NOT* request GPIO pins to be muxed out. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 255 | */ |
| 256 | void pinmux_free_gpio(unsigned gpio) |
| 257 | { |
| 258 | struct pinctrl_dev *pctldev; |
| 259 | struct pinctrl_gpio_range *range; |
| 260 | int ret; |
| 261 | int pin; |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 262 | const char *func; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 263 | |
| 264 | ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range); |
| 265 | if (ret) |
| 266 | return; |
| 267 | |
| 268 | /* Convert to the pin controllers number space */ |
Chanho Park | 3c739ad | 2011-11-11 18:47:58 +0900 | [diff] [blame] | 269 | pin = gpio - range->base + range->pin_base; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 270 | |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 271 | func = pin_free(pctldev, pin, range); |
| 272 | kfree(func); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 273 | } |
| 274 | EXPORT_SYMBOL_GPL(pinmux_free_gpio); |
| 275 | |
Linus Walleij | 542e704 | 2011-11-14 10:06:22 +0100 | [diff] [blame] | 276 | static int pinmux_gpio_direction(unsigned gpio, bool input) |
| 277 | { |
| 278 | struct pinctrl_dev *pctldev; |
| 279 | struct pinctrl_gpio_range *range; |
| 280 | const struct pinmux_ops *ops; |
| 281 | int ret; |
| 282 | int pin; |
| 283 | |
| 284 | ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range); |
| 285 | if (ret) |
| 286 | return ret; |
| 287 | |
| 288 | ops = pctldev->desc->pmxops; |
| 289 | |
| 290 | /* Convert to the pin controllers number space */ |
| 291 | pin = gpio - range->base + range->pin_base; |
| 292 | |
| 293 | if (ops->gpio_set_direction) |
| 294 | ret = ops->gpio_set_direction(pctldev, range, pin, input); |
| 295 | else |
| 296 | ret = 0; |
| 297 | |
| 298 | return ret; |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * pinmux_gpio_direction_input() - request a GPIO pin to go into input mode |
| 303 | * @gpio: the GPIO pin number from the GPIO subsystem number space |
| 304 | * |
| 305 | * This function should *ONLY* be used from gpiolib-based GPIO drivers, |
| 306 | * as part of their gpio_direction_input() semantics, platforms and individual |
| 307 | * drivers shall *NOT* touch pinmux GPIO calls. |
| 308 | */ |
| 309 | int pinmux_gpio_direction_input(unsigned gpio) |
| 310 | { |
| 311 | return pinmux_gpio_direction(gpio, true); |
| 312 | } |
| 313 | EXPORT_SYMBOL_GPL(pinmux_gpio_direction_input); |
| 314 | |
| 315 | /** |
| 316 | * pinmux_gpio_direction_output() - request a GPIO pin to go into output mode |
| 317 | * @gpio: the GPIO pin number from the GPIO subsystem number space |
| 318 | * |
| 319 | * This function should *ONLY* be used from gpiolib-based GPIO drivers, |
| 320 | * as part of their gpio_direction_output() semantics, platforms and individual |
| 321 | * drivers shall *NOT* touch pinmux GPIO calls. |
| 322 | */ |
| 323 | int pinmux_gpio_direction_output(unsigned gpio) |
| 324 | { |
| 325 | return pinmux_gpio_direction(gpio, false); |
| 326 | } |
| 327 | EXPORT_SYMBOL_GPL(pinmux_gpio_direction_output); |
| 328 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 329 | /** |
| 330 | * pinmux_register_mappings() - register a set of pinmux mappings |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 331 | * @maps: the pinmux mappings table to register, this should be marked with |
| 332 | * __initdata so it can be discarded after boot, this function will |
| 333 | * perform a shallow copy for the mapping entries. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 334 | * @num_maps: the number of maps in the mapping table |
| 335 | * |
| 336 | * Only call this once during initialization of your machine, the function is |
| 337 | * tagged as __init and won't be callable after init has completed. The map |
| 338 | * passed into this function will be owned by the pinmux core and cannot be |
Dong Aisheng | e6337c3 | 2011-12-20 17:51:59 +0800 | [diff] [blame] | 339 | * freed. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 340 | */ |
| 341 | int __init pinmux_register_mappings(struct pinmux_map const *maps, |
| 342 | unsigned num_maps) |
| 343 | { |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 344 | void *tmp_maps; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 345 | int i; |
| 346 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 347 | pr_debug("add %d pinmux maps\n", num_maps); |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 348 | |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 349 | /* First sanity check the new mapping */ |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 350 | for (i = 0; i < num_maps; i++) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 351 | if (!maps[i].name) { |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 352 | pr_err("failed to register map %d: no map name given\n", |
| 353 | i); |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 354 | return -EINVAL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 355 | } |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 356 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 357 | if (!maps[i].ctrl_dev && !maps[i].ctrl_dev_name) { |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 358 | pr_err("failed to register map %s (%d): no pin control device given\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 359 | maps[i].name, i); |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 360 | return -EINVAL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 361 | } |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 362 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 363 | if (!maps[i].function) { |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 364 | pr_err("failed to register map %s (%d): no function ID given\n", |
| 365 | maps[i].name, i); |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 366 | return -EINVAL; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | if (!maps[i].dev && !maps[i].dev_name) |
| 370 | pr_debug("add system map %s function %s with no device\n", |
| 371 | maps[i].name, |
| 372 | maps[i].function); |
| 373 | else |
| 374 | pr_debug("register map %s, function %s\n", |
| 375 | maps[i].name, |
| 376 | maps[i].function); |
| 377 | } |
| 378 | |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 379 | /* |
| 380 | * Make a copy of the map array - string pointers will end up in the |
| 381 | * kernel const section anyway so these do not need to be deep copied. |
| 382 | */ |
| 383 | if (!pinmux_maps_num) { |
| 384 | /* On first call, just copy them */ |
| 385 | tmp_maps = kmemdup(maps, |
| 386 | sizeof(struct pinmux_map) * num_maps, |
| 387 | GFP_KERNEL); |
| 388 | if (!tmp_maps) |
| 389 | return -ENOMEM; |
| 390 | } else { |
| 391 | /* Subsequent calls, reallocate array to new size */ |
| 392 | size_t oldsize = sizeof(struct pinmux_map) * pinmux_maps_num; |
| 393 | size_t newsize = sizeof(struct pinmux_map) * num_maps; |
Linus Walleij | 97607d1 | 2011-11-29 12:52:39 +0100 | [diff] [blame] | 394 | |
Linus Walleij | 59b099b | 2011-11-30 13:28:14 +0100 | [diff] [blame] | 395 | tmp_maps = krealloc(pinmux_maps, oldsize + newsize, GFP_KERNEL); |
| 396 | if (!tmp_maps) |
| 397 | return -ENOMEM; |
| 398 | memcpy((tmp_maps + oldsize), maps, newsize); |
| 399 | } |
| 400 | |
| 401 | pinmux_maps = tmp_maps; |
| 402 | pinmux_maps_num += num_maps; |
| 403 | return 0; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | /** |
Tony Lindgren | de849ee | 2012-01-20 08:17:33 -0800 | [diff] [blame] | 407 | * acquire_pins() - acquire all the pins for a certain function on a pinmux |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 408 | * @pctldev: the device to take the pins on |
| 409 | * @func_selector: the function selector to acquire the pins for |
| 410 | * @group_selector: the group selector containing the pins to acquire |
| 411 | */ |
| 412 | static int acquire_pins(struct pinctrl_dev *pctldev, |
| 413 | unsigned func_selector, |
| 414 | unsigned group_selector) |
| 415 | { |
| 416 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
| 417 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
| 418 | const char *func = pmxops->get_function_name(pctldev, |
| 419 | func_selector); |
Stephen Warren | a5818a8 | 2011-10-19 16:19:25 -0600 | [diff] [blame] | 420 | const unsigned *pins; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 421 | unsigned num_pins; |
| 422 | int ret; |
| 423 | int i; |
| 424 | |
| 425 | ret = pctlops->get_group_pins(pctldev, group_selector, |
| 426 | &pins, &num_pins); |
| 427 | if (ret) |
| 428 | return ret; |
| 429 | |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 430 | dev_dbg(pctldev->dev, "requesting the %u pins from group %u\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 431 | num_pins, group_selector); |
| 432 | |
| 433 | /* Try to allocate all pins in this group, one by one */ |
| 434 | for (i = 0; i < num_pins; i++) { |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 435 | ret = pin_request(pctldev, pins[i], func, NULL); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 436 | if (ret) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 437 | dev_err(pctldev->dev, |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 438 | "could not get pin %d for function %s on device %s - conflicting mux mappings?\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 439 | pins[i], func ? : "(undefined)", |
| 440 | pinctrl_dev_get_name(pctldev)); |
| 441 | /* On error release all taken pins */ |
| 442 | i--; /* this pin just failed */ |
| 443 | for (; i >= 0; i--) |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 444 | pin_free(pctldev, pins[i], NULL); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 445 | return -ENODEV; |
| 446 | } |
| 447 | } |
| 448 | return 0; |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * release_pins() - release pins taken by earlier acquirement |
Tony Lindgren | de849ee | 2012-01-20 08:17:33 -0800 | [diff] [blame] | 453 | * @pctldev: the device to free the pins on |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 454 | * @group_selector: the group selector containing the pins to free |
| 455 | */ |
| 456 | static void release_pins(struct pinctrl_dev *pctldev, |
| 457 | unsigned group_selector) |
| 458 | { |
| 459 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
Stephen Warren | a5818a8 | 2011-10-19 16:19:25 -0600 | [diff] [blame] | 460 | const unsigned *pins; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 461 | unsigned num_pins; |
| 462 | int ret; |
| 463 | int i; |
| 464 | |
| 465 | ret = pctlops->get_group_pins(pctldev, group_selector, |
| 466 | &pins, &num_pins); |
| 467 | if (ret) { |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 468 | dev_err(pctldev->dev, "could not get pins to release for group selector %d\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 469 | group_selector); |
| 470 | return; |
| 471 | } |
| 472 | for (i = 0; i < num_pins; i++) |
Stephen Warren | 3712a3c | 2011-10-21 12:25:53 -0600 | [diff] [blame] | 473 | pin_free(pctldev, pins[i], NULL); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | /** |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 477 | * pinmux_check_pin_group() - check function and pin group combo |
| 478 | * @pctldev: device to check the pin group vs function for |
| 479 | * @func_selector: the function selector to check the pin group for, we have |
| 480 | * already looked this up in the calling function |
| 481 | * @pin_group: the pin group to match to the function |
| 482 | * |
| 483 | * This function will check that the pinmux driver can supply the |
| 484 | * selected pin group for a certain function, returns the group selector if |
| 485 | * the group and function selector will work fine together, else returns |
| 486 | * negative |
| 487 | */ |
| 488 | static int pinmux_check_pin_group(struct pinctrl_dev *pctldev, |
| 489 | unsigned func_selector, |
| 490 | const char *pin_group) |
| 491 | { |
| 492 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
| 493 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
| 494 | int ret; |
| 495 | |
| 496 | /* |
| 497 | * If the driver does not support different pin groups for the |
| 498 | * functions, we only support group 0, and assume this exists. |
| 499 | */ |
| 500 | if (!pctlops || !pctlops->list_groups) |
| 501 | return 0; |
| 502 | |
| 503 | /* |
| 504 | * Passing NULL (no specific group) will select the first and |
| 505 | * hopefully only group of pins available for this function. |
| 506 | */ |
| 507 | if (!pin_group) { |
| 508 | char const * const *groups; |
| 509 | unsigned num_groups; |
| 510 | |
| 511 | ret = pmxops->get_function_groups(pctldev, func_selector, |
| 512 | &groups, &num_groups); |
| 513 | if (ret) |
| 514 | return ret; |
| 515 | if (num_groups < 1) |
| 516 | return -EINVAL; |
Linus Walleij | 7afde8b | 2011-10-19 17:07:16 +0200 | [diff] [blame] | 517 | ret = pinctrl_get_group_selector(pctldev, groups[0]); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 518 | if (ret < 0) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 519 | dev_err(pctldev->dev, |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 520 | "function %s wants group %s but the pin controller does not seem to have that group\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 521 | pmxops->get_function_name(pctldev, func_selector), |
| 522 | groups[0]); |
| 523 | return ret; |
| 524 | } |
| 525 | |
| 526 | if (num_groups > 1) |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 527 | dev_dbg(pctldev->dev, |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 528 | "function %s support more than one group, default-selecting first group %s (%d)\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 529 | pmxops->get_function_name(pctldev, func_selector), |
| 530 | groups[0], |
| 531 | ret); |
| 532 | |
| 533 | return ret; |
| 534 | } |
| 535 | |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 536 | dev_dbg(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 537 | "check if we have pin group %s on controller %s\n", |
| 538 | pin_group, pinctrl_dev_get_name(pctldev)); |
| 539 | |
Linus Walleij | 7afde8b | 2011-10-19 17:07:16 +0200 | [diff] [blame] | 540 | ret = pinctrl_get_group_selector(pctldev, pin_group); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 541 | if (ret < 0) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 542 | dev_dbg(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 543 | "%s does not support pin group %s with function %s\n", |
| 544 | pinctrl_dev_get_name(pctldev), |
| 545 | pin_group, |
| 546 | pmxops->get_function_name(pctldev, func_selector)); |
| 547 | } |
| 548 | return ret; |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * pinmux_search_function() - check pin control driver for a certain function |
| 553 | * @pctldev: device to check for function and position |
| 554 | * @map: function map containing the function and position to look for |
| 555 | * @func_selector: returns the applicable function selector if found |
| 556 | * @group_selector: returns the applicable group selector if found |
| 557 | * |
| 558 | * This will search the pinmux driver for an applicable |
| 559 | * function with a specific pin group, returns 0 if these can be mapped |
| 560 | * negative otherwise |
| 561 | */ |
| 562 | static int pinmux_search_function(struct pinctrl_dev *pctldev, |
| 563 | struct pinmux_map const *map, |
| 564 | unsigned *func_selector, |
| 565 | unsigned *group_selector) |
| 566 | { |
| 567 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 568 | unsigned selector = 0; |
| 569 | |
| 570 | /* See if this pctldev has this function */ |
| 571 | while (ops->list_functions(pctldev, selector) >= 0) { |
| 572 | const char *fname = ops->get_function_name(pctldev, |
| 573 | selector); |
| 574 | int ret; |
| 575 | |
| 576 | if (!strcmp(map->function, fname)) { |
| 577 | /* Found the function, check pin group */ |
| 578 | ret = pinmux_check_pin_group(pctldev, selector, |
| 579 | map->group); |
| 580 | if (ret < 0) |
| 581 | return ret; |
| 582 | |
| 583 | /* This function and group selector can be used */ |
| 584 | *func_selector = selector; |
| 585 | *group_selector = ret; |
| 586 | return 0; |
| 587 | |
| 588 | } |
| 589 | selector++; |
| 590 | } |
| 591 | |
| 592 | pr_err("%s does not support function %s\n", |
| 593 | pinctrl_dev_get_name(pctldev), map->function); |
| 594 | return -EINVAL; |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * pinmux_enable_muxmap() - enable a map entry for a certain pinmux |
| 599 | */ |
| 600 | static int pinmux_enable_muxmap(struct pinctrl_dev *pctldev, |
| 601 | struct pinmux *pmx, |
| 602 | struct device *dev, |
| 603 | const char *devname, |
| 604 | struct pinmux_map const *map) |
| 605 | { |
| 606 | unsigned func_selector; |
| 607 | unsigned group_selector; |
| 608 | struct pinmux_group *grp; |
| 609 | int ret; |
| 610 | |
| 611 | /* |
| 612 | * Note that we're not locking the pinmux mutex here, because |
| 613 | * this is only called at pinmux initialization time when it |
| 614 | * has not been added to any list and thus is not reachable |
| 615 | * by anyone else. |
| 616 | */ |
| 617 | |
| 618 | if (pmx->pctldev && pmx->pctldev != pctldev) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 619 | dev_err(pctldev->dev, |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 620 | "different pin control devices given for device %s, function %s\n", |
| 621 | devname, map->function); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 622 | return -EINVAL; |
| 623 | } |
| 624 | pmx->dev = dev; |
| 625 | pmx->pctldev = pctldev; |
| 626 | |
| 627 | /* Now go into the driver and try to match a function and group */ |
| 628 | ret = pinmux_search_function(pctldev, map, &func_selector, |
| 629 | &group_selector); |
| 630 | if (ret < 0) |
| 631 | return ret; |
| 632 | |
| 633 | /* |
| 634 | * If the function selector is already set, it needs to be identical, |
| 635 | * we support several groups with one function but not several |
| 636 | * functions with one or several groups in the same pinmux. |
| 637 | */ |
| 638 | if (pmx->func_selector != UINT_MAX && |
| 639 | pmx->func_selector != func_selector) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 640 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 641 | "dual function defines in the map for device %s\n", |
| 642 | devname); |
| 643 | return -EINVAL; |
| 644 | } |
| 645 | pmx->func_selector = func_selector; |
| 646 | |
| 647 | /* Now add this group selector, we may have many of them */ |
| 648 | grp = kmalloc(sizeof(struct pinmux_group), GFP_KERNEL); |
| 649 | if (!grp) |
| 650 | return -ENOMEM; |
| 651 | grp->group_selector = group_selector; |
| 652 | ret = acquire_pins(pctldev, func_selector, group_selector); |
| 653 | if (ret) { |
| 654 | kfree(grp); |
| 655 | return ret; |
| 656 | } |
| 657 | list_add(&grp->node, &pmx->groups); |
| 658 | |
| 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | static void pinmux_free_groups(struct pinmux *pmx) |
| 663 | { |
| 664 | struct list_head *node, *tmp; |
| 665 | |
| 666 | list_for_each_safe(node, tmp, &pmx->groups) { |
| 667 | struct pinmux_group *grp = |
| 668 | list_entry(node, struct pinmux_group, node); |
| 669 | /* Release all pins taken by this group */ |
| 670 | release_pins(pmx->pctldev, grp->group_selector); |
| 671 | list_del(node); |
| 672 | kfree(grp); |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * pinmux_get() - retrieves the pinmux for a certain device |
| 678 | * @dev: the device to get the pinmux for |
| 679 | * @name: an optional specific mux mapping name or NULL, the name is only |
| 680 | * needed if you want to have more than one mapping per device, or if you |
| 681 | * need an anonymous pinmux (not tied to any specific device) |
| 682 | */ |
| 683 | struct pinmux *pinmux_get(struct device *dev, const char *name) |
| 684 | { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 685 | struct pinmux_map const *map = NULL; |
| 686 | struct pinctrl_dev *pctldev = NULL; |
| 687 | const char *devname = NULL; |
| 688 | struct pinmux *pmx; |
| 689 | bool found_map; |
| 690 | unsigned num_maps = 0; |
| 691 | int ret = -ENODEV; |
| 692 | int i; |
| 693 | |
| 694 | /* We must have dev or ID or both */ |
| 695 | if (!dev && !name) |
| 696 | return ERR_PTR(-EINVAL); |
| 697 | |
| 698 | if (dev) |
| 699 | devname = dev_name(dev); |
| 700 | |
| 701 | pr_debug("get mux %s for device %s\n", name, |
| 702 | devname ? devname : "(none)"); |
| 703 | |
| 704 | /* |
| 705 | * create the state cookie holder struct pinmux for each |
| 706 | * mapping, this is what consumers will get when requesting |
| 707 | * a pinmux handle with pinmux_get() |
| 708 | */ |
| 709 | pmx = kzalloc(sizeof(struct pinmux), GFP_KERNEL); |
| 710 | if (pmx == NULL) |
| 711 | return ERR_PTR(-ENOMEM); |
| 712 | mutex_init(&pmx->mutex); |
| 713 | pmx->func_selector = UINT_MAX; |
| 714 | INIT_LIST_HEAD(&pmx->groups); |
| 715 | |
| 716 | /* Iterate over the pinmux maps to locate the right ones */ |
| 717 | for (i = 0; i < pinmux_maps_num; i++) { |
| 718 | map = &pinmux_maps[i]; |
| 719 | found_map = false; |
| 720 | |
| 721 | /* |
| 722 | * First, try to find the pctldev given in the map |
| 723 | */ |
| 724 | pctldev = get_pinctrl_dev_from_dev(map->ctrl_dev, |
| 725 | map->ctrl_dev_name); |
| 726 | if (!pctldev) { |
| 727 | const char *devname = NULL; |
| 728 | |
| 729 | if (map->ctrl_dev) |
| 730 | devname = dev_name(map->ctrl_dev); |
| 731 | else if (map->ctrl_dev_name) |
| 732 | devname = map->ctrl_dev_name; |
| 733 | |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 734 | pr_warning("could not find a pinctrl device for pinmux function %s, fishy, they shall all have one\n", |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 735 | map->function); |
| 736 | pr_warning("given pinctrl device name: %s", |
| 737 | devname ? devname : "UNDEFINED"); |
| 738 | |
| 739 | /* Continue to check the other mappings anyway... */ |
| 740 | continue; |
| 741 | } |
| 742 | |
| 743 | pr_debug("in map, found pctldev %s to handle function %s", |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 744 | dev_name(pctldev->dev), map->function); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 745 | |
| 746 | |
| 747 | /* |
| 748 | * If we're looking for a specific named map, this must match, |
| 749 | * else we loop and look for the next. |
| 750 | */ |
| 751 | if (name != NULL) { |
| 752 | if (map->name == NULL) |
| 753 | continue; |
| 754 | if (strcmp(map->name, name)) |
| 755 | continue; |
| 756 | } |
| 757 | |
| 758 | /* |
| 759 | * This is for the case where no device name is given, we |
| 760 | * already know that the function name matches from above |
| 761 | * code. |
| 762 | */ |
| 763 | if (!map->dev_name && (name != NULL)) |
| 764 | found_map = true; |
| 765 | |
| 766 | /* If the mapping has a device set up it must match */ |
| 767 | if (map->dev_name && |
| 768 | (!devname || !strcmp(map->dev_name, devname))) |
| 769 | /* MATCH! */ |
| 770 | found_map = true; |
| 771 | |
| 772 | /* If this map is applicable, then apply it */ |
| 773 | if (found_map) { |
| 774 | ret = pinmux_enable_muxmap(pctldev, pmx, dev, |
| 775 | devname, map); |
| 776 | if (ret) { |
| 777 | pinmux_free_groups(pmx); |
| 778 | kfree(pmx); |
| 779 | return ERR_PTR(ret); |
| 780 | } |
| 781 | num_maps++; |
| 782 | } |
| 783 | } |
| 784 | |
| 785 | |
| 786 | /* We should have atleast one map, right */ |
| 787 | if (!num_maps) { |
| 788 | pr_err("could not find any mux maps for device %s, ID %s\n", |
| 789 | devname ? devname : "(anonymous)", |
| 790 | name ? name : "(undefined)"); |
| 791 | kfree(pmx); |
| 792 | return ERR_PTR(-EINVAL); |
| 793 | } |
| 794 | |
| 795 | pr_debug("found %u mux maps for device %s, UD %s\n", |
| 796 | num_maps, |
| 797 | devname ? devname : "(anonymous)", |
| 798 | name ? name : "(undefined)"); |
| 799 | |
| 800 | /* Add the pinmux to the global list */ |
| 801 | mutex_lock(&pinmux_list_mutex); |
| 802 | list_add(&pmx->node, &pinmux_list); |
| 803 | mutex_unlock(&pinmux_list_mutex); |
| 804 | |
| 805 | return pmx; |
| 806 | } |
| 807 | EXPORT_SYMBOL_GPL(pinmux_get); |
| 808 | |
| 809 | /** |
| 810 | * pinmux_put() - release a previously claimed pinmux |
| 811 | * @pmx: a pinmux previously claimed by pinmux_get() |
| 812 | */ |
| 813 | void pinmux_put(struct pinmux *pmx) |
| 814 | { |
| 815 | if (pmx == NULL) |
| 816 | return; |
| 817 | |
| 818 | mutex_lock(&pmx->mutex); |
| 819 | if (pmx->usecount) |
| 820 | pr_warn("releasing pinmux with active users!\n"); |
| 821 | /* Free the groups and all acquired pins */ |
| 822 | pinmux_free_groups(pmx); |
| 823 | mutex_unlock(&pmx->mutex); |
| 824 | |
| 825 | /* Remove from list */ |
| 826 | mutex_lock(&pinmux_list_mutex); |
| 827 | list_del(&pmx->node); |
| 828 | mutex_unlock(&pinmux_list_mutex); |
| 829 | |
| 830 | kfree(pmx); |
| 831 | } |
| 832 | EXPORT_SYMBOL_GPL(pinmux_put); |
| 833 | |
| 834 | /** |
| 835 | * pinmux_enable() - enable a certain pinmux setting |
| 836 | * @pmx: the pinmux to enable, previously claimed by pinmux_get() |
| 837 | */ |
| 838 | int pinmux_enable(struct pinmux *pmx) |
| 839 | { |
| 840 | int ret = 0; |
| 841 | |
| 842 | if (pmx == NULL) |
| 843 | return -EINVAL; |
| 844 | mutex_lock(&pmx->mutex); |
| 845 | if (pmx->usecount++ == 0) { |
| 846 | struct pinctrl_dev *pctldev = pmx->pctldev; |
| 847 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 848 | struct pinmux_group *grp; |
| 849 | |
| 850 | list_for_each_entry(grp, &pmx->groups, node) { |
| 851 | ret = ops->enable(pctldev, pmx->func_selector, |
| 852 | grp->group_selector); |
| 853 | if (ret) { |
| 854 | /* |
| 855 | * TODO: call disable() on all groups we called |
| 856 | * enable() on to this point? |
| 857 | */ |
| 858 | pmx->usecount--; |
| 859 | break; |
| 860 | } |
| 861 | } |
| 862 | } |
| 863 | mutex_unlock(&pmx->mutex); |
| 864 | return ret; |
| 865 | } |
| 866 | EXPORT_SYMBOL_GPL(pinmux_enable); |
| 867 | |
| 868 | /** |
| 869 | * pinmux_disable() - disable a certain pinmux setting |
| 870 | * @pmx: the pinmux to disable, previously claimed by pinmux_get() |
| 871 | */ |
| 872 | void pinmux_disable(struct pinmux *pmx) |
| 873 | { |
| 874 | if (pmx == NULL) |
| 875 | return; |
| 876 | |
| 877 | mutex_lock(&pmx->mutex); |
| 878 | if (--pmx->usecount == 0) { |
| 879 | struct pinctrl_dev *pctldev = pmx->pctldev; |
| 880 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 881 | struct pinmux_group *grp; |
| 882 | |
| 883 | list_for_each_entry(grp, &pmx->groups, node) { |
| 884 | ops->disable(pctldev, pmx->func_selector, |
| 885 | grp->group_selector); |
| 886 | } |
| 887 | } |
| 888 | mutex_unlock(&pmx->mutex); |
| 889 | } |
| 890 | EXPORT_SYMBOL_GPL(pinmux_disable); |
| 891 | |
Tony Lindgren | b9130b7 | 2012-01-24 16:28:08 -0800 | [diff] [blame] | 892 | int pinmux_check_ops(struct pinctrl_dev *pctldev) |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 893 | { |
Tony Lindgren | b9130b7 | 2012-01-24 16:28:08 -0800 | [diff] [blame] | 894 | const struct pinmux_ops *ops = pctldev->desc->pmxops; |
| 895 | unsigned selector = 0; |
| 896 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 897 | /* Check that we implement required operations */ |
| 898 | if (!ops->list_functions || |
| 899 | !ops->get_function_name || |
| 900 | !ops->get_function_groups || |
| 901 | !ops->enable || |
| 902 | !ops->disable) |
| 903 | return -EINVAL; |
| 904 | |
Tony Lindgren | b9130b7 | 2012-01-24 16:28:08 -0800 | [diff] [blame] | 905 | /* Check that all functions registered have names */ |
| 906 | while (ops->list_functions(pctldev, selector) >= 0) { |
| 907 | const char *fname = ops->get_function_name(pctldev, |
| 908 | selector); |
| 909 | if (!fname) { |
| 910 | pr_err("pinmux ops has no name for function%u\n", |
| 911 | selector); |
| 912 | return -EINVAL; |
| 913 | } |
| 914 | selector++; |
| 915 | } |
| 916 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 917 | return 0; |
| 918 | } |
| 919 | |
| 920 | /* Hog a single map entry and add to the hoglist */ |
| 921 | static int pinmux_hog_map(struct pinctrl_dev *pctldev, |
| 922 | struct pinmux_map const *map) |
| 923 | { |
| 924 | struct pinmux_hog *hog; |
| 925 | struct pinmux *pmx; |
| 926 | int ret; |
| 927 | |
| 928 | if (map->dev || map->dev_name) { |
| 929 | /* |
| 930 | * TODO: the day we have device tree support, we can |
| 931 | * traverse the device tree and hog to specific device nodes |
| 932 | * without any problems, so then we can hog pinmuxes for |
| 933 | * all devices that just want a static pin mux at this point. |
| 934 | */ |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 935 | dev_err(pctldev->dev, "map %s wants to hog a non-system pinmux, this is not going to work\n", |
| 936 | map->name); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 937 | return -EINVAL; |
| 938 | } |
| 939 | |
| 940 | hog = kzalloc(sizeof(struct pinmux_hog), GFP_KERNEL); |
| 941 | if (!hog) |
| 942 | return -ENOMEM; |
| 943 | |
| 944 | pmx = pinmux_get(NULL, map->name); |
| 945 | if (IS_ERR(pmx)) { |
| 946 | kfree(hog); |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 947 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 948 | "could not get the %s pinmux mapping for hogging\n", |
| 949 | map->name); |
| 950 | return PTR_ERR(pmx); |
| 951 | } |
| 952 | |
| 953 | ret = pinmux_enable(pmx); |
| 954 | if (ret) { |
| 955 | pinmux_put(pmx); |
| 956 | kfree(hog); |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 957 | dev_err(pctldev->dev, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 958 | "could not enable the %s pinmux mapping for hogging\n", |
| 959 | map->name); |
| 960 | return ret; |
| 961 | } |
| 962 | |
| 963 | hog->map = map; |
| 964 | hog->pmx = pmx; |
| 965 | |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 966 | dev_info(pctldev->dev, "hogged map %s, function %s\n", map->name, |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 967 | map->function); |
| 968 | mutex_lock(&pctldev->pinmux_hogs_lock); |
| 969 | list_add(&hog->node, &pctldev->pinmux_hogs); |
| 970 | mutex_unlock(&pctldev->pinmux_hogs_lock); |
| 971 | |
| 972 | return 0; |
| 973 | } |
| 974 | |
| 975 | /** |
| 976 | * pinmux_hog_maps() - hog specific map entries on controller device |
| 977 | * @pctldev: the pin control device to hog entries on |
| 978 | * |
| 979 | * When the pin controllers are registered, there may be some specific pinmux |
| 980 | * map entries that need to be hogged, i.e. get+enabled until the system shuts |
| 981 | * down. |
| 982 | */ |
| 983 | int pinmux_hog_maps(struct pinctrl_dev *pctldev) |
| 984 | { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 985 | struct device *dev = pctldev->dev; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 986 | const char *devname = dev_name(dev); |
| 987 | int ret; |
| 988 | int i; |
| 989 | |
| 990 | INIT_LIST_HEAD(&pctldev->pinmux_hogs); |
| 991 | mutex_init(&pctldev->pinmux_hogs_lock); |
| 992 | |
| 993 | for (i = 0; i < pinmux_maps_num; i++) { |
| 994 | struct pinmux_map const *map = &pinmux_maps[i]; |
| 995 | |
Tony Lindgren | 9e2551e | 2012-01-20 07:43:53 -0800 | [diff] [blame] | 996 | if (!map->hog_on_boot) |
| 997 | continue; |
| 998 | |
| 999 | if ((map->ctrl_dev == dev) || |
| 1000 | (map->ctrl_dev_name && |
| 1001 | !strcmp(map->ctrl_dev_name, devname))) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1002 | /* OK time to hog! */ |
| 1003 | ret = pinmux_hog_map(pctldev, map); |
| 1004 | if (ret) |
| 1005 | return ret; |
| 1006 | } |
| 1007 | } |
| 1008 | return 0; |
| 1009 | } |
| 1010 | |
| 1011 | /** |
Linus Walleij | 336cdba0 | 2011-11-10 09:27:41 +0100 | [diff] [blame] | 1012 | * pinmux_unhog_maps() - unhog specific map entries on controller device |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1013 | * @pctldev: the pin control device to unhog entries on |
| 1014 | */ |
| 1015 | void pinmux_unhog_maps(struct pinctrl_dev *pctldev) |
| 1016 | { |
| 1017 | struct list_head *node, *tmp; |
| 1018 | |
| 1019 | mutex_lock(&pctldev->pinmux_hogs_lock); |
| 1020 | list_for_each_safe(node, tmp, &pctldev->pinmux_hogs) { |
| 1021 | struct pinmux_hog *hog = |
| 1022 | list_entry(node, struct pinmux_hog, node); |
| 1023 | pinmux_disable(hog->pmx); |
| 1024 | pinmux_put(hog->pmx); |
| 1025 | list_del(node); |
| 1026 | kfree(hog); |
| 1027 | } |
| 1028 | mutex_unlock(&pctldev->pinmux_hogs_lock); |
| 1029 | } |
| 1030 | |
| 1031 | #ifdef CONFIG_DEBUG_FS |
| 1032 | |
| 1033 | /* Called from pincontrol core */ |
| 1034 | static int pinmux_functions_show(struct seq_file *s, void *what) |
| 1035 | { |
| 1036 | struct pinctrl_dev *pctldev = s->private; |
| 1037 | const struct pinmux_ops *pmxops = pctldev->desc->pmxops; |
| 1038 | unsigned func_selector = 0; |
| 1039 | |
| 1040 | while (pmxops->list_functions(pctldev, func_selector) >= 0) { |
| 1041 | const char *func = pmxops->get_function_name(pctldev, |
| 1042 | func_selector); |
| 1043 | const char * const *groups; |
| 1044 | unsigned num_groups; |
| 1045 | int ret; |
| 1046 | int i; |
| 1047 | |
| 1048 | ret = pmxops->get_function_groups(pctldev, func_selector, |
| 1049 | &groups, &num_groups); |
| 1050 | if (ret) |
| 1051 | seq_printf(s, "function %s: COULD NOT GET GROUPS\n", |
| 1052 | func); |
| 1053 | |
| 1054 | seq_printf(s, "function: %s, groups = [ ", func); |
| 1055 | for (i = 0; i < num_groups; i++) |
| 1056 | seq_printf(s, "%s ", groups[i]); |
| 1057 | seq_puts(s, "]\n"); |
| 1058 | |
| 1059 | func_selector++; |
| 1060 | |
| 1061 | } |
| 1062 | |
| 1063 | return 0; |
| 1064 | } |
| 1065 | |
| 1066 | static int pinmux_pins_show(struct seq_file *s, void *what) |
| 1067 | { |
| 1068 | struct pinctrl_dev *pctldev = s->private; |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 1069 | unsigned i, pin; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1070 | |
| 1071 | seq_puts(s, "Pinmux settings per pin\n"); |
| 1072 | seq_puts(s, "Format: pin (name): pinmuxfunction\n"); |
| 1073 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 1074 | /* The pin number can be retrived from the pin controller descriptor */ |
| 1075 | for (i = 0; i < pctldev->desc->npins; i++) { |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1076 | |
| 1077 | struct pin_desc *desc; |
| 1078 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 1079 | pin = pctldev->desc->pins[i].number; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1080 | desc = pin_desc_get(pctldev, pin); |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 1081 | /* Skip if we cannot search the pin */ |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1082 | if (desc == NULL) |
| 1083 | continue; |
| 1084 | |
| 1085 | seq_printf(s, "pin %d (%s): %s\n", pin, |
| 1086 | desc->name ? desc->name : "unnamed", |
Stephen Warren | 5d2eaf8 | 2011-10-19 16:19:28 -0600 | [diff] [blame] | 1087 | desc->mux_function ? desc->mux_function |
| 1088 | : "UNCLAIMED"); |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | return 0; |
| 1092 | } |
| 1093 | |
| 1094 | static int pinmux_hogs_show(struct seq_file *s, void *what) |
| 1095 | { |
| 1096 | struct pinctrl_dev *pctldev = s->private; |
| 1097 | struct pinmux_hog *hog; |
| 1098 | |
| 1099 | seq_puts(s, "Pinmux map hogs held by device\n"); |
| 1100 | |
| 1101 | list_for_each_entry(hog, &pctldev->pinmux_hogs, node) |
| 1102 | seq_printf(s, "%s\n", hog->map->name); |
| 1103 | |
| 1104 | return 0; |
| 1105 | } |
| 1106 | |
| 1107 | static int pinmux_show(struct seq_file *s, void *what) |
| 1108 | { |
| 1109 | struct pinmux *pmx; |
| 1110 | |
| 1111 | seq_puts(s, "Requested pinmuxes and their maps:\n"); |
| 1112 | list_for_each_entry(pmx, &pinmux_list, node) { |
| 1113 | struct pinctrl_dev *pctldev = pmx->pctldev; |
| 1114 | const struct pinmux_ops *pmxops; |
| 1115 | const struct pinctrl_ops *pctlops; |
| 1116 | struct pinmux_group *grp; |
| 1117 | |
| 1118 | if (!pctldev) { |
| 1119 | seq_puts(s, "NO PIN CONTROLLER DEVICE\n"); |
| 1120 | continue; |
| 1121 | } |
| 1122 | |
| 1123 | pmxops = pctldev->desc->pmxops; |
| 1124 | pctlops = pctldev->desc->pctlops; |
| 1125 | |
| 1126 | seq_printf(s, "device: %s function: %s (%u),", |
| 1127 | pinctrl_dev_get_name(pmx->pctldev), |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 1128 | pmxops->get_function_name(pctldev, |
| 1129 | pmx->func_selector), |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1130 | pmx->func_selector); |
| 1131 | |
| 1132 | seq_printf(s, " groups: ["); |
| 1133 | list_for_each_entry(grp, &pmx->groups, node) { |
| 1134 | seq_printf(s, " %s (%u)", |
Uwe Kleine-König | f9d41d7 | 2012-01-19 22:42:48 +0100 | [diff] [blame] | 1135 | pctlops->get_group_name(pctldev, |
| 1136 | grp->group_selector), |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1137 | grp->group_selector); |
| 1138 | } |
| 1139 | seq_printf(s, " ]"); |
| 1140 | |
| 1141 | seq_printf(s, " users: %u map-> %s\n", |
| 1142 | pmx->usecount, |
| 1143 | pmx->dev ? dev_name(pmx->dev) : "(system)"); |
| 1144 | } |
| 1145 | |
| 1146 | return 0; |
| 1147 | } |
| 1148 | |
| 1149 | static int pinmux_maps_show(struct seq_file *s, void *what) |
| 1150 | { |
| 1151 | int i; |
| 1152 | |
| 1153 | seq_puts(s, "Pinmux maps:\n"); |
| 1154 | |
| 1155 | for (i = 0; i < pinmux_maps_num; i++) { |
| 1156 | struct pinmux_map const *map = &pinmux_maps[i]; |
| 1157 | |
| 1158 | seq_printf(s, "%s:\n", map->name); |
| 1159 | if (map->dev || map->dev_name) |
| 1160 | seq_printf(s, " device: %s\n", |
| 1161 | map->dev ? dev_name(map->dev) : |
| 1162 | map->dev_name); |
| 1163 | else |
| 1164 | seq_printf(s, " SYSTEM MUX\n"); |
| 1165 | seq_printf(s, " controlling device %s\n", |
| 1166 | map->ctrl_dev ? dev_name(map->ctrl_dev) : |
| 1167 | map->ctrl_dev_name); |
| 1168 | seq_printf(s, " function: %s\n", map->function); |
| 1169 | seq_printf(s, " group: %s\n", map->group ? map->group : |
| 1170 | "(default)"); |
| 1171 | } |
| 1172 | return 0; |
| 1173 | } |
| 1174 | |
| 1175 | static int pinmux_functions_open(struct inode *inode, struct file *file) |
| 1176 | { |
| 1177 | return single_open(file, pinmux_functions_show, inode->i_private); |
| 1178 | } |
| 1179 | |
| 1180 | static int pinmux_pins_open(struct inode *inode, struct file *file) |
| 1181 | { |
| 1182 | return single_open(file, pinmux_pins_show, inode->i_private); |
| 1183 | } |
| 1184 | |
| 1185 | static int pinmux_hogs_open(struct inode *inode, struct file *file) |
| 1186 | { |
| 1187 | return single_open(file, pinmux_hogs_show, inode->i_private); |
| 1188 | } |
| 1189 | |
| 1190 | static int pinmux_open(struct inode *inode, struct file *file) |
| 1191 | { |
| 1192 | return single_open(file, pinmux_show, NULL); |
| 1193 | } |
| 1194 | |
| 1195 | static int pinmux_maps_open(struct inode *inode, struct file *file) |
| 1196 | { |
| 1197 | return single_open(file, pinmux_maps_show, NULL); |
| 1198 | } |
| 1199 | |
| 1200 | static const struct file_operations pinmux_functions_ops = { |
| 1201 | .open = pinmux_functions_open, |
| 1202 | .read = seq_read, |
| 1203 | .llseek = seq_lseek, |
| 1204 | .release = single_release, |
| 1205 | }; |
| 1206 | |
| 1207 | static const struct file_operations pinmux_pins_ops = { |
| 1208 | .open = pinmux_pins_open, |
| 1209 | .read = seq_read, |
| 1210 | .llseek = seq_lseek, |
| 1211 | .release = single_release, |
| 1212 | }; |
| 1213 | |
| 1214 | static const struct file_operations pinmux_hogs_ops = { |
| 1215 | .open = pinmux_hogs_open, |
| 1216 | .read = seq_read, |
| 1217 | .llseek = seq_lseek, |
| 1218 | .release = single_release, |
| 1219 | }; |
| 1220 | |
| 1221 | static const struct file_operations pinmux_ops = { |
| 1222 | .open = pinmux_open, |
| 1223 | .read = seq_read, |
| 1224 | .llseek = seq_lseek, |
| 1225 | .release = single_release, |
| 1226 | }; |
| 1227 | |
| 1228 | static const struct file_operations pinmux_maps_ops = { |
| 1229 | .open = pinmux_maps_open, |
| 1230 | .read = seq_read, |
| 1231 | .llseek = seq_lseek, |
| 1232 | .release = single_release, |
| 1233 | }; |
| 1234 | |
| 1235 | void pinmux_init_device_debugfs(struct dentry *devroot, |
| 1236 | struct pinctrl_dev *pctldev) |
| 1237 | { |
| 1238 | debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO, |
| 1239 | devroot, pctldev, &pinmux_functions_ops); |
| 1240 | debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO, |
| 1241 | devroot, pctldev, &pinmux_pins_ops); |
| 1242 | debugfs_create_file("pinmux-hogs", S_IFREG | S_IRUGO, |
| 1243 | devroot, pctldev, &pinmux_hogs_ops); |
| 1244 | } |
| 1245 | |
| 1246 | void pinmux_init_debugfs(struct dentry *subsys_root) |
| 1247 | { |
| 1248 | debugfs_create_file("pinmuxes", S_IFREG | S_IRUGO, |
| 1249 | subsys_root, NULL, &pinmux_ops); |
| 1250 | debugfs_create_file("pinmux-maps", S_IFREG | S_IRUGO, |
| 1251 | subsys_root, NULL, &pinmux_maps_ops); |
| 1252 | } |
| 1253 | |
| 1254 | #endif /* CONFIG_DEBUG_FS */ |