Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Core driver for the pin config portions of the pin control subsystem |
| 3 | * |
| 4 | * Copyright (C) 2011 ST-Ericsson SA |
| 5 | * Written on behalf of Linaro for ST-Ericsson |
| 6 | * |
| 7 | * Author: Linus Walleij <linus.walleij@linaro.org> |
| 8 | * |
| 9 | * License terms: GNU General Public License (GPL) version 2 |
| 10 | */ |
| 11 | #define pr_fmt(fmt) "pinconfig core: " fmt |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/device.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/debugfs.h> |
| 19 | #include <linux/seq_file.h> |
| 20 | #include <linux/pinctrl/machine.h> |
| 21 | #include <linux/pinctrl/pinctrl.h> |
| 22 | #include <linux/pinctrl/pinconf.h> |
| 23 | #include "core.h" |
| 24 | #include "pinconf.h" |
| 25 | |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 26 | int pinconf_check_ops(struct pinctrl_dev *pctldev) |
| 27 | { |
| 28 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 29 | |
| 30 | /* We must be able to read out pin status */ |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 31 | if (!ops->pin_config_get && !ops->pin_config_group_get) { |
| 32 | dev_err(pctldev->dev, |
| 33 | "pinconf must be able to read out pin status\n"); |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 34 | return -EINVAL; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 35 | } |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 36 | /* We have to be able to config the pins in SOME way */ |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 37 | if (!ops->pin_config_set && !ops->pin_config_group_set) { |
| 38 | dev_err(pctldev->dev, |
| 39 | "pinconf has to be able to set a pins config\n"); |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 40 | return -EINVAL; |
John Crispin | ad6e110 | 2012-04-26 16:47:11 +0200 | [diff] [blame] | 41 | } |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 42 | return 0; |
| 43 | } |
| 44 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 45 | int pinconf_validate_map(struct pinctrl_map const *map, int i) |
| 46 | { |
| 47 | if (!map->data.configs.group_or_pin) { |
| 48 | pr_err("failed to register map %s (%d): no group/pin given\n", |
| 49 | map->name, i); |
| 50 | return -EINVAL; |
| 51 | } |
| 52 | |
Dong Aisheng | c95df2d | 2012-05-14 19:06:36 +0800 | [diff] [blame] | 53 | if (!map->data.configs.num_configs || |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 54 | !map->data.configs.configs) { |
Dong Aisheng | c95df2d | 2012-05-14 19:06:36 +0800 | [diff] [blame] | 55 | pr_err("failed to register map %s (%d): no configs given\n", |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 56 | map->name, i); |
| 57 | return -EINVAL; |
| 58 | } |
| 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
Linus Walleij | 394349f | 2011-11-24 18:27:15 +0100 | [diff] [blame] | 63 | int pin_config_get_for_pin(struct pinctrl_dev *pctldev, unsigned pin, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 64 | unsigned long *config) |
| 65 | { |
| 66 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 67 | |
| 68 | if (!ops || !ops->pin_config_get) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 69 | dev_err(pctldev->dev, "cannot get pin configuration, missing " |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 70 | "pin_config_get() function in driver\n"); |
| 71 | return -EINVAL; |
| 72 | } |
| 73 | |
| 74 | return ops->pin_config_get(pctldev, pin, config); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * pin_config_get() - get the configuration of a single pin parameter |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 79 | * @dev_name: name of the pin controller device for this pin |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 80 | * @name: name of the pin to get the config for |
| 81 | * @config: the config pointed to by this argument will be filled in with the |
| 82 | * current pin state, it can be used directly by drivers as a numeral, or |
| 83 | * it can be dereferenced to any struct. |
| 84 | */ |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 85 | int pin_config_get(const char *dev_name, const char *name, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 86 | unsigned long *config) |
| 87 | { |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 88 | struct pinctrl_dev *pctldev; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 89 | int pin; |
| 90 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 91 | mutex_lock(&pinctrl_mutex); |
| 92 | |
Linus Walleij | 9dfac4f | 2012-02-01 18:02:47 +0100 | [diff] [blame] | 93 | pctldev = get_pinctrl_dev_from_devname(dev_name); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 94 | if (!pctldev) { |
| 95 | pin = -EINVAL; |
| 96 | goto unlock; |
| 97 | } |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 98 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 99 | pin = pin_get_from_name(pctldev, name); |
| 100 | if (pin < 0) |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 101 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 102 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 103 | pin = pin_config_get_for_pin(pctldev, pin, config); |
| 104 | |
| 105 | unlock: |
| 106 | mutex_unlock(&pinctrl_mutex); |
| 107 | return pin; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 108 | } |
| 109 | EXPORT_SYMBOL(pin_config_get); |
| 110 | |
Stephen Warren | 2b69425 | 2012-02-19 23:45:46 -0700 | [diff] [blame] | 111 | static int pin_config_set_for_pin(struct pinctrl_dev *pctldev, unsigned pin, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 112 | unsigned long config) |
| 113 | { |
| 114 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 115 | int ret; |
| 116 | |
| 117 | if (!ops || !ops->pin_config_set) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 118 | dev_err(pctldev->dev, "cannot configure pin, missing " |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 119 | "config function in driver\n"); |
| 120 | return -EINVAL; |
| 121 | } |
| 122 | |
| 123 | ret = ops->pin_config_set(pctldev, pin, config); |
| 124 | if (ret) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 125 | dev_err(pctldev->dev, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 126 | "unable to set pin configuration on pin %d\n", pin); |
| 127 | return ret; |
| 128 | } |
| 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * pin_config_set() - set the configuration of a single pin parameter |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 135 | * @dev_name: name of pin controller device for this pin |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 136 | * @name: name of the pin to set the config for |
| 137 | * @config: the config in this argument will contain the desired pin state, it |
| 138 | * can be used directly by drivers as a numeral, or it can be dereferenced |
| 139 | * to any struct. |
| 140 | */ |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 141 | int pin_config_set(const char *dev_name, const char *name, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 142 | unsigned long config) |
| 143 | { |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 144 | struct pinctrl_dev *pctldev; |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 145 | int pin, ret; |
| 146 | |
| 147 | mutex_lock(&pinctrl_mutex); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 148 | |
Linus Walleij | 9dfac4f | 2012-02-01 18:02:47 +0100 | [diff] [blame] | 149 | pctldev = get_pinctrl_dev_from_devname(dev_name); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 150 | if (!pctldev) { |
| 151 | ret = -EINVAL; |
| 152 | goto unlock; |
| 153 | } |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 154 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 155 | pin = pin_get_from_name(pctldev, name); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 156 | if (pin < 0) { |
| 157 | ret = pin; |
| 158 | goto unlock; |
| 159 | } |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 160 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 161 | ret = pin_config_set_for_pin(pctldev, pin, config); |
| 162 | |
| 163 | unlock: |
| 164 | mutex_unlock(&pinctrl_mutex); |
| 165 | return ret; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 166 | } |
| 167 | EXPORT_SYMBOL(pin_config_set); |
| 168 | |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 169 | int pin_config_group_get(const char *dev_name, const char *pin_group, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 170 | unsigned long *config) |
| 171 | { |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 172 | struct pinctrl_dev *pctldev; |
| 173 | const struct pinconf_ops *ops; |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 174 | int selector, ret; |
| 175 | |
| 176 | mutex_lock(&pinctrl_mutex); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 177 | |
Linus Walleij | 9dfac4f | 2012-02-01 18:02:47 +0100 | [diff] [blame] | 178 | pctldev = get_pinctrl_dev_from_devname(dev_name); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 179 | if (!pctldev) { |
| 180 | ret = -EINVAL; |
| 181 | goto unlock; |
| 182 | } |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 183 | ops = pctldev->desc->confops; |
| 184 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 185 | if (!ops || !ops->pin_config_group_get) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 186 | dev_err(pctldev->dev, "cannot get configuration for pin " |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 187 | "group, missing group config get function in " |
| 188 | "driver\n"); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 189 | ret = -EINVAL; |
| 190 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | selector = pinctrl_get_group_selector(pctldev, pin_group); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 194 | if (selector < 0) { |
| 195 | ret = selector; |
| 196 | goto unlock; |
| 197 | } |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 198 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 199 | ret = ops->pin_config_group_get(pctldev, selector, config); |
| 200 | |
| 201 | unlock: |
| 202 | mutex_unlock(&pinctrl_mutex); |
| 203 | return ret; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 204 | } |
| 205 | EXPORT_SYMBOL(pin_config_group_get); |
| 206 | |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 207 | int pin_config_group_set(const char *dev_name, const char *pin_group, |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 208 | unsigned long config) |
| 209 | { |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 210 | struct pinctrl_dev *pctldev; |
| 211 | const struct pinconf_ops *ops; |
| 212 | const struct pinctrl_ops *pctlops; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 213 | int selector; |
| 214 | const unsigned *pins; |
| 215 | unsigned num_pins; |
| 216 | int ret; |
| 217 | int i; |
| 218 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 219 | mutex_lock(&pinctrl_mutex); |
| 220 | |
Linus Walleij | 9dfac4f | 2012-02-01 18:02:47 +0100 | [diff] [blame] | 221 | pctldev = get_pinctrl_dev_from_devname(dev_name); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 222 | if (!pctldev) { |
| 223 | ret = -EINVAL; |
| 224 | goto unlock; |
| 225 | } |
Stephen Warren | 43699de | 2011-12-15 16:57:17 -0700 | [diff] [blame] | 226 | ops = pctldev->desc->confops; |
| 227 | pctlops = pctldev->desc->pctlops; |
| 228 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 229 | if (!ops || (!ops->pin_config_group_set && !ops->pin_config_set)) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 230 | dev_err(pctldev->dev, "cannot configure pin group, missing " |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 231 | "config function in driver\n"); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 232 | ret = -EINVAL; |
| 233 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | selector = pinctrl_get_group_selector(pctldev, pin_group); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 237 | if (selector < 0) { |
| 238 | ret = selector; |
| 239 | goto unlock; |
| 240 | } |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 241 | |
| 242 | ret = pctlops->get_group_pins(pctldev, selector, &pins, &num_pins); |
| 243 | if (ret) { |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 244 | dev_err(pctldev->dev, "cannot configure pin group, error " |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 245 | "getting pins\n"); |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 246 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | /* |
| 250 | * If the pin controller supports handling entire groups we use that |
| 251 | * capability. |
| 252 | */ |
| 253 | if (ops->pin_config_group_set) { |
| 254 | ret = ops->pin_config_group_set(pctldev, selector, config); |
| 255 | /* |
| 256 | * If the pin controller prefer that a certain group be handled |
| 257 | * pin-by-pin as well, it returns -EAGAIN. |
| 258 | */ |
| 259 | if (ret != -EAGAIN) |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 260 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /* |
| 264 | * If the controller cannot handle entire groups, we configure each pin |
| 265 | * individually. |
| 266 | */ |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 267 | if (!ops->pin_config_set) { |
| 268 | ret = 0; |
| 269 | goto unlock; |
| 270 | } |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 271 | |
| 272 | for (i = 0; i < num_pins; i++) { |
| 273 | ret = ops->pin_config_set(pctldev, pins[i], config); |
| 274 | if (ret < 0) |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 275 | goto unlock; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 278 | ret = 0; |
| 279 | |
| 280 | unlock: |
| 281 | mutex_unlock(&pinctrl_mutex); |
| 282 | |
| 283 | return ret; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 284 | } |
| 285 | EXPORT_SYMBOL(pin_config_group_set); |
| 286 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 287 | int pinconf_map_to_setting(struct pinctrl_map const *map, |
| 288 | struct pinctrl_setting *setting) |
| 289 | { |
| 290 | struct pinctrl_dev *pctldev = setting->pctldev; |
Linus Walleij | 70b3637 | 2012-03-12 21:38:29 +0100 | [diff] [blame] | 291 | int pin; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 292 | |
| 293 | switch (setting->type) { |
| 294 | case PIN_MAP_TYPE_CONFIGS_PIN: |
Linus Walleij | 70b3637 | 2012-03-12 21:38:29 +0100 | [diff] [blame] | 295 | pin = pin_get_from_name(pctldev, |
| 296 | map->data.configs.group_or_pin); |
| 297 | if (pin < 0) { |
| 298 | dev_err(pctldev->dev, "could not map pin config for \"%s\"", |
| 299 | map->data.configs.group_or_pin); |
| 300 | return pin; |
| 301 | } |
| 302 | setting->data.configs.group_or_pin = pin; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 303 | break; |
| 304 | case PIN_MAP_TYPE_CONFIGS_GROUP: |
Linus Walleij | 70b3637 | 2012-03-12 21:38:29 +0100 | [diff] [blame] | 305 | pin = pinctrl_get_group_selector(pctldev, |
| 306 | map->data.configs.group_or_pin); |
| 307 | if (pin < 0) { |
| 308 | dev_err(pctldev->dev, "could not map group config for \"%s\"", |
| 309 | map->data.configs.group_or_pin); |
| 310 | return pin; |
| 311 | } |
| 312 | setting->data.configs.group_or_pin = pin; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 313 | break; |
| 314 | default: |
| 315 | return -EINVAL; |
| 316 | } |
| 317 | |
| 318 | setting->data.configs.num_configs = map->data.configs.num_configs; |
| 319 | setting->data.configs.configs = map->data.configs.configs; |
| 320 | |
| 321 | return 0; |
| 322 | } |
| 323 | |
| 324 | void pinconf_free_setting(struct pinctrl_setting const *setting) |
| 325 | { |
| 326 | } |
| 327 | |
| 328 | int pinconf_apply_setting(struct pinctrl_setting const *setting) |
| 329 | { |
| 330 | struct pinctrl_dev *pctldev = setting->pctldev; |
| 331 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 332 | int i, ret; |
| 333 | |
| 334 | if (!ops) { |
| 335 | dev_err(pctldev->dev, "missing confops\n"); |
| 336 | return -EINVAL; |
| 337 | } |
| 338 | |
| 339 | switch (setting->type) { |
| 340 | case PIN_MAP_TYPE_CONFIGS_PIN: |
| 341 | if (!ops->pin_config_set) { |
| 342 | dev_err(pctldev->dev, "missing pin_config_set op\n"); |
| 343 | return -EINVAL; |
| 344 | } |
| 345 | for (i = 0; i < setting->data.configs.num_configs; i++) { |
| 346 | ret = ops->pin_config_set(pctldev, |
| 347 | setting->data.configs.group_or_pin, |
| 348 | setting->data.configs.configs[i]); |
| 349 | if (ret < 0) { |
| 350 | dev_err(pctldev->dev, |
| 351 | "pin_config_set op failed for pin %d config %08lx\n", |
| 352 | setting->data.configs.group_or_pin, |
| 353 | setting->data.configs.configs[i]); |
| 354 | return ret; |
| 355 | } |
| 356 | } |
| 357 | break; |
| 358 | case PIN_MAP_TYPE_CONFIGS_GROUP: |
| 359 | if (!ops->pin_config_group_set) { |
| 360 | dev_err(pctldev->dev, |
| 361 | "missing pin_config_group_set op\n"); |
| 362 | return -EINVAL; |
| 363 | } |
| 364 | for (i = 0; i < setting->data.configs.num_configs; i++) { |
| 365 | ret = ops->pin_config_group_set(pctldev, |
| 366 | setting->data.configs.group_or_pin, |
| 367 | setting->data.configs.configs[i]); |
| 368 | if (ret < 0) { |
| 369 | dev_err(pctldev->dev, |
| 370 | "pin_config_group_set op failed for group %d config %08lx\n", |
| 371 | setting->data.configs.group_or_pin, |
| 372 | setting->data.configs.configs[i]); |
| 373 | return ret; |
| 374 | } |
| 375 | } |
| 376 | break; |
| 377 | default: |
| 378 | return -EINVAL; |
| 379 | } |
| 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 384 | #ifdef CONFIG_DEBUG_FS |
| 385 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 386 | void pinconf_show_map(struct seq_file *s, struct pinctrl_map const *map) |
| 387 | { |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 388 | struct pinctrl_dev *pctldev; |
| 389 | const struct pinconf_ops *confops; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 390 | int i; |
| 391 | |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 392 | pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name); |
| 393 | if (pctldev) |
| 394 | confops = pctldev->desc->confops; |
| 395 | else |
| 396 | confops = NULL; |
| 397 | |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 398 | switch (map->type) { |
| 399 | case PIN_MAP_TYPE_CONFIGS_PIN: |
| 400 | seq_printf(s, "pin "); |
| 401 | break; |
| 402 | case PIN_MAP_TYPE_CONFIGS_GROUP: |
| 403 | seq_printf(s, "group "); |
| 404 | break; |
| 405 | default: |
| 406 | break; |
| 407 | } |
| 408 | |
| 409 | seq_printf(s, "%s\n", map->data.configs.group_or_pin); |
| 410 | |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 411 | for (i = 0; i < map->data.configs.num_configs; i++) { |
| 412 | seq_printf(s, "config "); |
| 413 | if (confops && confops->pin_config_config_dbg_show) |
| 414 | confops->pin_config_config_dbg_show(pctldev, s, |
| 415 | map->data.configs.configs[i]); |
| 416 | else |
| 417 | seq_printf(s, "%08lx", map->data.configs.configs[i]); |
| 418 | seq_printf(s, "\n"); |
| 419 | } |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | void pinconf_show_setting(struct seq_file *s, |
| 423 | struct pinctrl_setting const *setting) |
| 424 | { |
| 425 | struct pinctrl_dev *pctldev = setting->pctldev; |
| 426 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 427 | const struct pinconf_ops *confops = pctldev->desc->confops; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 428 | struct pin_desc *desc; |
| 429 | int i; |
| 430 | |
| 431 | switch (setting->type) { |
| 432 | case PIN_MAP_TYPE_CONFIGS_PIN: |
| 433 | desc = pin_desc_get(setting->pctldev, |
| 434 | setting->data.configs.group_or_pin); |
| 435 | seq_printf(s, "pin %s (%d)", |
| 436 | desc->name ? desc->name : "unnamed", |
| 437 | setting->data.configs.group_or_pin); |
| 438 | break; |
| 439 | case PIN_MAP_TYPE_CONFIGS_GROUP: |
| 440 | seq_printf(s, "group %s (%d)", |
| 441 | pctlops->get_group_name(pctldev, |
| 442 | setting->data.configs.group_or_pin), |
| 443 | setting->data.configs.group_or_pin); |
| 444 | break; |
| 445 | default: |
| 446 | break; |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * FIXME: We should really get the pin controler to dump the config |
| 451 | * values, so they can be decoded to something meaningful. |
| 452 | */ |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 453 | for (i = 0; i < setting->data.configs.num_configs; i++) { |
| 454 | seq_printf(s, " "); |
| 455 | if (confops && confops->pin_config_config_dbg_show) |
| 456 | confops->pin_config_config_dbg_show(pctldev, s, |
| 457 | setting->data.configs.configs[i]); |
| 458 | else |
| 459 | seq_printf(s, "%08lx", |
| 460 | setting->data.configs.configs[i]); |
| 461 | } |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 462 | |
| 463 | seq_printf(s, "\n"); |
| 464 | } |
| 465 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 466 | static void pinconf_dump_pin(struct pinctrl_dev *pctldev, |
| 467 | struct seq_file *s, int pin) |
| 468 | { |
| 469 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 470 | |
Linus Walleij | 394349f | 2011-11-24 18:27:15 +0100 | [diff] [blame] | 471 | /* no-op when not using generic pin config */ |
| 472 | pinconf_generic_dump_pin(pctldev, s, pin); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 473 | if (ops && ops->pin_config_dbg_show) |
| 474 | ops->pin_config_dbg_show(pctldev, s, pin); |
| 475 | } |
| 476 | |
| 477 | static int pinconf_pins_show(struct seq_file *s, void *what) |
| 478 | { |
| 479 | struct pinctrl_dev *pctldev = s->private; |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 480 | const struct pinconf_ops *ops = pctldev->desc->confops; |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 481 | unsigned i, pin; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 482 | |
Dong Aisheng | ad8bb72 | 2012-04-10 12:41:34 +0800 | [diff] [blame] | 483 | if (!ops || !ops->pin_config_get) |
| 484 | return 0; |
| 485 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 486 | seq_puts(s, "Pin config settings per pin\n"); |
Dong Aisheng | 2aeefe0 | 2012-04-16 22:07:24 +0800 | [diff] [blame] | 487 | seq_puts(s, "Format: pin (name): configs\n"); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 488 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 489 | mutex_lock(&pinctrl_mutex); |
| 490 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 491 | /* The pin number can be retrived from the pin controller descriptor */ |
Stephen Warren | 546edd8 | 2012-01-06 13:38:31 -0700 | [diff] [blame] | 492 | for (i = 0; i < pctldev->desc->npins; i++) { |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 493 | struct pin_desc *desc; |
| 494 | |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 495 | pin = pctldev->desc->pins[i].number; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 496 | desc = pin_desc_get(pctldev, pin); |
Chanho Park | 706e852 | 2012-01-03 16:47:50 +0900 | [diff] [blame] | 497 | /* Skip if we cannot search the pin */ |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 498 | if (desc == NULL) |
| 499 | continue; |
| 500 | |
| 501 | seq_printf(s, "pin %d (%s):", pin, |
| 502 | desc->name ? desc->name : "unnamed"); |
| 503 | |
| 504 | pinconf_dump_pin(pctldev, s, pin); |
| 505 | |
| 506 | seq_printf(s, "\n"); |
| 507 | } |
| 508 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 509 | mutex_unlock(&pinctrl_mutex); |
| 510 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | static void pinconf_dump_group(struct pinctrl_dev *pctldev, |
| 515 | struct seq_file *s, unsigned selector, |
| 516 | const char *gname) |
| 517 | { |
| 518 | const struct pinconf_ops *ops = pctldev->desc->confops; |
| 519 | |
Linus Walleij | 394349f | 2011-11-24 18:27:15 +0100 | [diff] [blame] | 520 | /* no-op when not using generic pin config */ |
| 521 | pinconf_generic_dump_group(pctldev, s, gname); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 522 | if (ops && ops->pin_config_group_dbg_show) |
| 523 | ops->pin_config_group_dbg_show(pctldev, s, selector); |
| 524 | } |
| 525 | |
| 526 | static int pinconf_groups_show(struct seq_file *s, void *what) |
| 527 | { |
| 528 | struct pinctrl_dev *pctldev = s->private; |
| 529 | const struct pinctrl_ops *pctlops = pctldev->desc->pctlops; |
| 530 | const struct pinconf_ops *ops = pctldev->desc->confops; |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 531 | unsigned ngroups = pctlops->get_groups_count(pctldev); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 532 | unsigned selector = 0; |
| 533 | |
| 534 | if (!ops || !ops->pin_config_group_get) |
| 535 | return 0; |
| 536 | |
| 537 | seq_puts(s, "Pin config settings per pin group\n"); |
Dong Aisheng | 2aeefe0 | 2012-04-16 22:07:24 +0800 | [diff] [blame] | 538 | seq_puts(s, "Format: group (name): configs\n"); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 539 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 540 | mutex_lock(&pinctrl_mutex); |
| 541 | |
Viresh Kumar | d1e90e9 | 2012-03-30 11:25:40 +0530 | [diff] [blame] | 542 | while (selector < ngroups) { |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 543 | const char *gname = pctlops->get_group_name(pctldev, selector); |
| 544 | |
| 545 | seq_printf(s, "%u (%s):", selector, gname); |
| 546 | pinconf_dump_group(pctldev, s, selector, gname); |
Stephen Warren | f7b9006 | 2012-02-19 23:45:58 -0700 | [diff] [blame] | 547 | seq_printf(s, "\n"); |
| 548 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 549 | selector++; |
| 550 | } |
| 551 | |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 552 | mutex_unlock(&pinctrl_mutex); |
| 553 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 554 | return 0; |
| 555 | } |
| 556 | |
| 557 | static int pinconf_pins_open(struct inode *inode, struct file *file) |
| 558 | { |
| 559 | return single_open(file, pinconf_pins_show, inode->i_private); |
| 560 | } |
| 561 | |
| 562 | static int pinconf_groups_open(struct inode *inode, struct file *file) |
| 563 | { |
| 564 | return single_open(file, pinconf_groups_show, inode->i_private); |
| 565 | } |
| 566 | |
| 567 | static const struct file_operations pinconf_pins_ops = { |
| 568 | .open = pinconf_pins_open, |
| 569 | .read = seq_read, |
| 570 | .llseek = seq_lseek, |
| 571 | .release = single_release, |
| 572 | }; |
| 573 | |
| 574 | static const struct file_operations pinconf_groups_ops = { |
| 575 | .open = pinconf_groups_open, |
| 576 | .read = seq_read, |
| 577 | .llseek = seq_lseek, |
| 578 | .release = single_release, |
| 579 | }; |
| 580 | |
| 581 | void pinconf_init_device_debugfs(struct dentry *devroot, |
| 582 | struct pinctrl_dev *pctldev) |
| 583 | { |
| 584 | debugfs_create_file("pinconf-pins", S_IFREG | S_IRUGO, |
| 585 | devroot, pctldev, &pinconf_pins_ops); |
| 586 | debugfs_create_file("pinconf-groups", S_IFREG | S_IRUGO, |
| 587 | devroot, pctldev, &pinconf_groups_ops); |
| 588 | } |
| 589 | |
| 590 | #endif |