blob: 7880c3adc450226d193bb9c7f00c363a2b04e704 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
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 Walleijab780292013-01-22 10:56:14 -070012#include <linux/kref.h>
Stephen Warren57b676f2012-03-02 13:05:44 -070013#include <linux/mutex.h>
14#include <linux/radix-tree.h>
Linus Walleijae6b4d82011-10-19 18:14:33 +020015#include <linux/pinctrl/pinconf.h>
Linus Walleij872acc32012-03-06 13:52:22 +010016#include <linux/pinctrl/machine.h>
Linus Walleijae6b4d82011-10-19 18:14:33 +020017
18struct pinctrl_gpio_range;
19
Linus Walleij2744e8a2011-05-02 20:50:54 +020020/**
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
Tony Lindgrenc7059c52016-12-27 09:20:00 -080027 * @pin_group_tree: optionally each pin group can be stored in this radix tree
28 * @num_groups: optionally number of groups can be kept here
Tony Lindgrena76edc82016-12-27 09:20:01 -080029 * @pin_function_tree: optionally each function can be stored in this radix tree
30 * @num_functions: optionally number of functions can be kept here
Linus Walleij2744e8a2011-05-02 20:50:54 +020031 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
32 * ranges are added to this list at runtime
Linus Walleij2744e8a2011-05-02 20:50:54 +020033 * @dev: the device entry for this pin controller
34 * @owner: module providing the pin controller, used for refcounting
35 * @driver_data: driver data for drivers registering to the pin controller
36 * subsystem
Stephen Warren46919ae2012-03-01 18:48:32 -070037 * @p: result of pinctrl_get() for this device
Julien Delacou840a47b2012-12-10 14:47:33 +010038 * @hog_default: default state for pins hogged by this device
39 * @hog_sleep: sleep state for pins hogged by this device
Patrice Chotard42fed7b2013-04-11 11:01:27 +020040 * @mutex: mutex taken on each pin controller specific action
Linus Walleijbefe5bd2012-02-09 19:47:48 +010041 * @device_root: debugfs root for this device
Linus Walleij2744e8a2011-05-02 20:50:54 +020042 */
43struct pinctrl_dev {
44 struct list_head node;
45 struct pinctrl_desc *desc;
46 struct radix_tree_root pin_desc_tree;
Linus Walleijc033a712016-12-30 15:04:43 +010047#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
Tony Lindgrenc7059c52016-12-27 09:20:00 -080048 struct radix_tree_root pin_group_tree;
49 unsigned int num_groups;
Linus Walleijc033a712016-12-30 15:04:43 +010050#endif
Tony Lindgrena76edc82016-12-27 09:20:01 -080051#ifdef CONFIG_GENERIC_PINMUX_FUNCTIONS
52 struct radix_tree_root pin_function_tree;
53 unsigned int num_functions;
54#endif
Linus Walleij2744e8a2011-05-02 20:50:54 +020055 struct list_head gpio_ranges;
Stephen Warren51cd24e2011-12-09 16:59:05 -070056 struct device *dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +020057 struct module *owner;
58 void *driver_data;
Stephen Warren46919ae2012-03-01 18:48:32 -070059 struct pinctrl *p;
Julien Delacou840a47b2012-12-10 14:47:33 +010060 struct pinctrl_state *hog_default;
61 struct pinctrl_state *hog_sleep;
Patrice Chotard42fed7b2013-04-11 11:01:27 +020062 struct mutex mutex;
Tony Lindgren02157162012-01-20 08:17:22 -080063#ifdef CONFIG_DEBUG_FS
64 struct dentry *device_root;
65#endif
Linus Walleijbefe5bd2012-02-09 19:47:48 +010066};
67
68/**
69 * struct pinctrl - per-device pin control state holder
70 * @node: global list node
71 * @dev: the device using this pin control handle
Stephen Warren6e5e9592012-03-02 13:05:47 -070072 * @states: a list of states for this device
73 * @state: the current state
Stephen Warren57291ce2012-03-23 10:29:46 -060074 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
75 * this device, if any
Linus Walleijab780292013-01-22 10:56:14 -070076 * @users: reference count
Linus Walleijbefe5bd2012-02-09 19:47:48 +010077 */
78struct pinctrl {
79 struct list_head node;
80 struct device *dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -070081 struct list_head states;
82 struct pinctrl_state *state;
Stephen Warren57291ce2012-03-23 10:29:46 -060083 struct list_head dt_maps;
Linus Walleijab780292013-01-22 10:56:14 -070084 struct kref users;
Stephen Warren6e5e9592012-03-02 13:05:47 -070085};
86
87/**
88 * struct pinctrl_state - a pinctrl state for a device
Richard Genoud2c9abf82013-03-25 15:47:20 +010089 * @node: list node for struct pinctrl's @states field
Stephen Warren6e5e9592012-03-02 13:05:47 -070090 * @name: the name of this state
91 * @settings: a list of settings for this state
92 */
93struct pinctrl_state {
94 struct list_head node;
95 const char *name;
Stephen Warren7ecdb162012-03-02 13:05:45 -070096 struct list_head settings;
97};
98
99/**
Stephen Warren1e2082b2012-03-02 13:05:48 -0700100 * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
101 * @group: the group selector to program
102 * @func: the function selector to program
103 */
104struct pinctrl_setting_mux {
105 unsigned group;
106 unsigned func;
107};
108
109/**
110 * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
111 * @group_or_pin: the group selector or pin ID to program
112 * @configs: a pointer to an array of config parameters/values to program into
113 * hardware. Each individual pin controller defines the format and meaning
114 * of config parameters.
115 * @num_configs: the number of entries in array @configs
116 */
117struct pinctrl_setting_configs {
118 unsigned group_or_pin;
119 unsigned long *configs;
120 unsigned num_configs;
121};
122
123/**
Linus Walleij872acc32012-03-06 13:52:22 +0100124 * struct pinctrl_setting - an individual mux or config setting
Stephen Warren6e5e9592012-03-02 13:05:47 -0700125 * @node: list node for struct pinctrl_settings's @settings field
Stephen Warren1e2082b2012-03-02 13:05:48 -0700126 * @type: the type of setting
Stephen Warren57291ce2012-03-23 10:29:46 -0600127 * @pctldev: pin control device handling to be programmed. Not used for
128 * PIN_MAP_TYPE_DUMMY_STATE.
Linus Walleij1a789582012-10-17 20:51:54 +0200129 * @dev_name: the name of the device using this state
Stephen Warren1e2082b2012-03-02 13:05:48 -0700130 * @data: Data specific to the setting type
Stephen Warren7ecdb162012-03-02 13:05:45 -0700131 */
132struct pinctrl_setting {
133 struct list_head node;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700134 enum pinctrl_map_type type;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100135 struct pinctrl_dev *pctldev;
Linus Walleij1a789582012-10-17 20:51:54 +0200136 const char *dev_name;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700137 union {
138 struct pinctrl_setting_mux mux;
139 struct pinctrl_setting_configs configs;
140 } data;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200141};
142
143/**
144 * struct pin_desc - pin descriptor for each physical pin in the arch
145 * @pctldev: corresponding pin control device
146 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
147 * datasheet or such
Linus Walleijca53c5f2011-12-14 20:33:37 +0100148 * @dynamic_name: if the name of this pin was dynamically allocated
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900149 * @drv_data: driver-defined per-pin data. pinctrl core does not touch this
Stephen Warren652162d2012-03-05 17:22:15 -0700150 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
Stephen Warren0e3db1732012-03-02 13:05:46 -0700151 * If non-zero, this pin is claimed by @owner. This field is an integer
152 * rather than a boolean, since pinctrl_get() might process multiple
153 * mapping table entries that refer to, and hence claim, the same group
154 * or pin, and each of these will increment the @usecount.
Stephen Warren652162d2012-03-05 17:22:15 -0700155 * @mux_owner: The name of device that called pinctrl_get().
Stephen Warrenba110d92012-03-02 13:05:49 -0700156 * @mux_setting: The most recent selected mux setting for this pin, if any.
Stephen Warren652162d2012-03-05 17:22:15 -0700157 * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
158 * the name of the GPIO that "owns" this pin.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200159 */
160struct pin_desc {
161 struct pinctrl_dev *pctldev;
Stephen Warren9af1e442011-10-19 16:19:27 -0600162 const char *name;
Linus Walleijca53c5f2011-12-14 20:33:37 +0100163 bool dynamic_name;
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900164 void *drv_data;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200165 /* These fields only added when supporting pinmux drivers */
166#ifdef CONFIG_PINMUX
Stephen Warren652162d2012-03-05 17:22:15 -0700167 unsigned mux_usecount;
168 const char *mux_owner;
Stephen Warrenba110d92012-03-02 13:05:49 -0700169 const struct pinctrl_setting_mux *mux_setting;
Stephen Warren652162d2012-03-05 17:22:15 -0700170 const char *gpio_owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200171#endif
172};
173
Laurent Meunier6f9e41f2013-02-06 09:09:44 +0100174/**
Linus Walleijc033a712016-12-30 15:04:43 +0100175 * struct pinctrl_maps - a list item containing part of the mapping table
176 * @node: mapping table list node
177 * @maps: array of mapping table entries
178 * @num_maps: the number of entries in @maps
179 */
180struct pinctrl_maps {
181 struct list_head node;
Masahiro Yamada3f713b72017-08-04 11:22:31 +0900182 const struct pinctrl_map *maps;
Linus Walleijc033a712016-12-30 15:04:43 +0100183 unsigned num_maps;
184};
185
186#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
187
188/**
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800189 * struct group_desc - generic pin group descriptor
190 * @name: name of the pin group
191 * @pins: array of pins that belong to the group
192 * @num_pins: number of pins in the group
193 * @data: pin controller driver specific data
194 */
195struct group_desc {
196 const char *name;
197 int *pins;
198 int num_pins;
199 void *data;
200};
201
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800202int pinctrl_generic_get_group_count(struct pinctrl_dev *pctldev);
203
204const char *pinctrl_generic_get_group_name(struct pinctrl_dev *pctldev,
205 unsigned int group_selector);
206
207int pinctrl_generic_get_group_pins(struct pinctrl_dev *pctldev,
208 unsigned int group_selector,
209 const unsigned int **pins,
210 unsigned int *npins);
211
212struct group_desc *pinctrl_generic_get_group(struct pinctrl_dev *pctldev,
213 unsigned int group_selector);
214
215int pinctrl_generic_add_group(struct pinctrl_dev *pctldev, const char *name,
216 int *gpins, int ngpins, void *data);
217
218int pinctrl_generic_remove_group(struct pinctrl_dev *pctldev,
219 unsigned int group_selector);
220
221static inline int
222pinctrl_generic_remove_last_group(struct pinctrl_dev *pctldev)
223{
224 return pinctrl_generic_remove_group(pctldev, pctldev->num_groups - 1);
225}
226
Linus Walleijc033a712016-12-30 15:04:43 +0100227#endif /* CONFIG_GENERIC_PINCTRL_GROUPS */
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800228
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100229struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200230struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np);
Linus Walleijae6b4d82011-10-19 18:14:33 +0200231int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800232const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200233int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
234 const char *pin_group);
Stephen Warren2304b472012-02-22 14:26:01 -0700235
236static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
237 unsigned int pin)
238{
239 return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
240}
Stephen Warren57b676f2012-03-02 13:05:44 -0700241
Joachim Eastwoodb18537c2016-02-25 22:44:37 +0100242extern struct pinctrl_gpio_range *
243pinctrl_find_gpio_range_from_pin_nolock(struct pinctrl_dev *pctldev,
244 unsigned int pin);
245
Masahiro Yamada3f713b72017-08-04 11:22:31 +0900246int pinctrl_register_map(const struct pinctrl_map *maps, unsigned num_maps,
Doug Andersonc5272a22015-05-01 09:01:27 -0700247 bool dup);
Masahiro Yamada3f713b72017-08-04 11:22:31 +0900248void pinctrl_unregister_map(const struct pinctrl_map *map);
Stephen Warren57291ce2012-03-23 10:29:46 -0600249
Julien Delacou840a47b2012-12-10 14:47:33 +0100250extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
251extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
252
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200253extern struct mutex pinctrl_maps_mutex;
Laurent Meunier6f9e41f2013-02-06 09:09:44 +0100254extern struct list_head pinctrl_maps;
255
256#define for_each_maps(_maps_node_, _i_, _map_) \
257 list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
258 for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
259 _i_ < _maps_node_->num_maps; \
260 _i_++, _map_ = &_maps_node_->maps[_i_])