Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Core private header for 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 | |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 12 | #include <linux/kref.h> |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 13 | #include <linux/mutex.h> |
| 14 | #include <linux/radix-tree.h> |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 15 | #include <linux/pinctrl/pinconf.h> |
Linus Walleij | 872acc3 | 2012-03-06 13:52:22 +0100 | [diff] [blame] | 16 | #include <linux/pinctrl/machine.h> |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 17 | |
| 18 | struct pinctrl_gpio_range; |
| 19 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 20 | /** |
| 21 | * struct pinctrl_dev - pin control class device |
| 22 | * @node: node to include this pin controller in the global pin controller list |
| 23 | * @desc: the pin controller descriptor supplied when initializing this pin |
| 24 | * controller |
| 25 | * @pin_desc_tree: each pin descriptor for this pin controller is stored in |
| 26 | * this radix tree |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 27 | * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller, |
| 28 | * ranges are added to this list at runtime |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 29 | * @dev: the device entry for this pin controller |
| 30 | * @owner: module providing the pin controller, used for refcounting |
| 31 | * @driver_data: driver data for drivers registering to the pin controller |
| 32 | * subsystem |
Stephen Warren | 46919ae | 2012-03-01 18:48:32 -0700 | [diff] [blame] | 33 | * @p: result of pinctrl_get() for this device |
Julien Delacou | 840a47b | 2012-12-10 14:47:33 +0100 | [diff] [blame] | 34 | * @hog_default: default state for pins hogged by this device |
| 35 | * @hog_sleep: sleep state for pins hogged by this device |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 36 | * @mutex: mutex taken on each pin controller specific action |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 37 | * @device_root: debugfs root for this device |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 38 | */ |
| 39 | struct pinctrl_dev { |
| 40 | struct list_head node; |
| 41 | struct pinctrl_desc *desc; |
| 42 | struct radix_tree_root pin_desc_tree; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 43 | struct list_head gpio_ranges; |
Stephen Warren | 51cd24e | 2011-12-09 16:59:05 -0700 | [diff] [blame] | 44 | struct device *dev; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 45 | struct module *owner; |
| 46 | void *driver_data; |
Stephen Warren | 46919ae | 2012-03-01 18:48:32 -0700 | [diff] [blame] | 47 | struct pinctrl *p; |
Julien Delacou | 840a47b | 2012-12-10 14:47:33 +0100 | [diff] [blame] | 48 | struct pinctrl_state *hog_default; |
| 49 | struct pinctrl_state *hog_sleep; |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 50 | struct mutex mutex; |
Tony Lindgren | 0215716 | 2012-01-20 08:17:22 -0800 | [diff] [blame] | 51 | #ifdef CONFIG_DEBUG_FS |
| 52 | struct dentry *device_root; |
| 53 | #endif |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | /** |
| 57 | * struct pinctrl - per-device pin control state holder |
| 58 | * @node: global list node |
| 59 | * @dev: the device using this pin control handle |
Stephen Warren | 6e5e959 | 2012-03-02 13:05:47 -0700 | [diff] [blame] | 60 | * @states: a list of states for this device |
| 61 | * @state: the current state |
Stephen Warren | 57291ce | 2012-03-23 10:29:46 -0600 | [diff] [blame] | 62 | * @dt_maps: the mapping table chunks dynamically parsed from device tree for |
| 63 | * this device, if any |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 64 | * @users: reference count |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 65 | */ |
| 66 | struct pinctrl { |
| 67 | struct list_head node; |
| 68 | struct device *dev; |
Stephen Warren | 6e5e959 | 2012-03-02 13:05:47 -0700 | [diff] [blame] | 69 | struct list_head states; |
| 70 | struct pinctrl_state *state; |
Stephen Warren | 57291ce | 2012-03-23 10:29:46 -0600 | [diff] [blame] | 71 | struct list_head dt_maps; |
Linus Walleij | ab78029 | 2013-01-22 10:56:14 -0700 | [diff] [blame] | 72 | struct kref users; |
Stephen Warren | 6e5e959 | 2012-03-02 13:05:47 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /** |
| 76 | * struct pinctrl_state - a pinctrl state for a device |
Richard Genoud | 2c9abf8 | 2013-03-25 15:47:20 +0100 | [diff] [blame] | 77 | * @node: list node for struct pinctrl's @states field |
Stephen Warren | 6e5e959 | 2012-03-02 13:05:47 -0700 | [diff] [blame] | 78 | * @name: the name of this state |
| 79 | * @settings: a list of settings for this state |
| 80 | */ |
| 81 | struct pinctrl_state { |
| 82 | struct list_head node; |
| 83 | const char *name; |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 84 | struct list_head settings; |
| 85 | }; |
| 86 | |
| 87 | /** |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 88 | * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP |
| 89 | * @group: the group selector to program |
| 90 | * @func: the function selector to program |
| 91 | */ |
| 92 | struct pinctrl_setting_mux { |
| 93 | unsigned group; |
| 94 | unsigned func; |
| 95 | }; |
| 96 | |
| 97 | /** |
| 98 | * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_* |
| 99 | * @group_or_pin: the group selector or pin ID to program |
| 100 | * @configs: a pointer to an array of config parameters/values to program into |
| 101 | * hardware. Each individual pin controller defines the format and meaning |
| 102 | * of config parameters. |
| 103 | * @num_configs: the number of entries in array @configs |
| 104 | */ |
| 105 | struct pinctrl_setting_configs { |
| 106 | unsigned group_or_pin; |
| 107 | unsigned long *configs; |
| 108 | unsigned num_configs; |
| 109 | }; |
| 110 | |
| 111 | /** |
Linus Walleij | 872acc3 | 2012-03-06 13:52:22 +0100 | [diff] [blame] | 112 | * struct pinctrl_setting - an individual mux or config setting |
Stephen Warren | 6e5e959 | 2012-03-02 13:05:47 -0700 | [diff] [blame] | 113 | * @node: list node for struct pinctrl_settings's @settings field |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 114 | * @type: the type of setting |
Stephen Warren | 57291ce | 2012-03-23 10:29:46 -0600 | [diff] [blame] | 115 | * @pctldev: pin control device handling to be programmed. Not used for |
| 116 | * PIN_MAP_TYPE_DUMMY_STATE. |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 117 | * @dev_name: the name of the device using this state |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 118 | * @data: Data specific to the setting type |
Stephen Warren | 7ecdb16 | 2012-03-02 13:05:45 -0700 | [diff] [blame] | 119 | */ |
| 120 | struct pinctrl_setting { |
| 121 | struct list_head node; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 122 | enum pinctrl_map_type type; |
Linus Walleij | befe5bd | 2012-02-09 19:47:48 +0100 | [diff] [blame] | 123 | struct pinctrl_dev *pctldev; |
Linus Walleij | 1a78958 | 2012-10-17 20:51:54 +0200 | [diff] [blame] | 124 | const char *dev_name; |
Stephen Warren | 1e2082b | 2012-03-02 13:05:48 -0700 | [diff] [blame] | 125 | union { |
| 126 | struct pinctrl_setting_mux mux; |
| 127 | struct pinctrl_setting_configs configs; |
| 128 | } data; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 129 | }; |
| 130 | |
| 131 | /** |
| 132 | * struct pin_desc - pin descriptor for each physical pin in the arch |
| 133 | * @pctldev: corresponding pin control device |
| 134 | * @name: a name for the pin, e.g. the name of the pin/pad/finger on a |
| 135 | * datasheet or such |
Linus Walleij | ca53c5f | 2011-12-14 20:33:37 +0100 | [diff] [blame] | 136 | * @dynamic_name: if the name of this pin was dynamically allocated |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 137 | * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL. |
Stephen Warren | 0e3db173 | 2012-03-02 13:05:46 -0700 | [diff] [blame] | 138 | * If non-zero, this pin is claimed by @owner. This field is an integer |
| 139 | * rather than a boolean, since pinctrl_get() might process multiple |
| 140 | * mapping table entries that refer to, and hence claim, the same group |
| 141 | * or pin, and each of these will increment the @usecount. |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 142 | * @mux_owner: The name of device that called pinctrl_get(). |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 143 | * @mux_setting: The most recent selected mux setting for this pin, if any. |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 144 | * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is |
| 145 | * the name of the GPIO that "owns" this pin. |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 146 | */ |
| 147 | struct pin_desc { |
| 148 | struct pinctrl_dev *pctldev; |
Stephen Warren | 9af1e44 | 2011-10-19 16:19:27 -0600 | [diff] [blame] | 149 | const char *name; |
Linus Walleij | ca53c5f | 2011-12-14 20:33:37 +0100 | [diff] [blame] | 150 | bool dynamic_name; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 151 | /* These fields only added when supporting pinmux drivers */ |
| 152 | #ifdef CONFIG_PINMUX |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 153 | unsigned mux_usecount; |
| 154 | const char *mux_owner; |
Stephen Warren | ba110d9 | 2012-03-02 13:05:49 -0700 | [diff] [blame] | 155 | const struct pinctrl_setting_mux *mux_setting; |
Stephen Warren | 652162d | 2012-03-05 17:22:15 -0700 | [diff] [blame] | 156 | const char *gpio_owner; |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 157 | #endif |
| 158 | }; |
| 159 | |
Laurent Meunier | 6f9e41f | 2013-02-06 09:09:44 +0100 | [diff] [blame] | 160 | /** |
| 161 | * struct pinctrl_maps - a list item containing part of the mapping table |
| 162 | * @node: mapping table list node |
| 163 | * @maps: array of mapping table entries |
| 164 | * @num_maps: the number of entries in @maps |
| 165 | */ |
| 166 | struct pinctrl_maps { |
| 167 | struct list_head node; |
| 168 | struct pinctrl_map const *maps; |
| 169 | unsigned num_maps; |
| 170 | }; |
| 171 | |
Linus Walleij | 9dfac4f | 2012-02-01 18:02:47 +0100 | [diff] [blame] | 172 | struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name); |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 173 | struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 174 | int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name); |
Dong Aisheng | dcb5dbc | 2012-04-17 15:00:46 +0800 | [diff] [blame] | 175 | const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin); |
Linus Walleij | 7afde8b | 2011-10-19 17:07:16 +0200 | [diff] [blame] | 176 | int pinctrl_get_group_selector(struct pinctrl_dev *pctldev, |
| 177 | const char *pin_group); |
Stephen Warren | 2304b47 | 2012-02-22 14:26:01 -0700 | [diff] [blame] | 178 | |
| 179 | static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev, |
| 180 | unsigned int pin) |
| 181 | { |
| 182 | return radix_tree_lookup(&pctldev->pin_desc_tree, pin); |
| 183 | } |
Stephen Warren | 57b676f | 2012-03-02 13:05:44 -0700 | [diff] [blame] | 184 | |
Stephen Warren | 57291ce | 2012-03-23 10:29:46 -0600 | [diff] [blame] | 185 | int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps, |
| 186 | bool dup, bool locked); |
| 187 | void pinctrl_unregister_map(struct pinctrl_map const *map); |
| 188 | |
Julien Delacou | 840a47b | 2012-12-10 14:47:33 +0100 | [diff] [blame] | 189 | extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev); |
| 190 | extern int pinctrl_force_default(struct pinctrl_dev *pctldev); |
| 191 | |
Patrice Chotard | 42fed7b | 2013-04-11 11:01:27 +0200 | [diff] [blame] | 192 | extern struct mutex pinctrl_maps_mutex; |
Laurent Meunier | 6f9e41f | 2013-02-06 09:09:44 +0100 | [diff] [blame] | 193 | extern struct list_head pinctrl_maps; |
| 194 | |
| 195 | #define for_each_maps(_maps_node_, _i_, _map_) \ |
| 196 | list_for_each_entry(_maps_node_, &pinctrl_maps, node) \ |
| 197 | for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \ |
| 198 | _i_ < _maps_node_->num_maps; \ |
| 199 | _i_++, _map_ = &_maps_node_->maps[_i_]) |