Linux Audio

Check our new training course

Embedded Linux training

Mar 10-20, 2025, special US time zones
Register
Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0-only */
  2/*
  3 * Core private header for the pin control subsystem
  4 *
  5 * Copyright (C) 2011 ST-Ericsson SA
  6 * Written on behalf of Linaro for ST-Ericsson
  7 *
  8 * Author: Linus Walleij <linus.walleij@linaro.org>
 
 
  9 */
 10
 11#include <linux/kref.h>
 12#include <linux/mutex.h>
 13#include <linux/radix-tree.h>
 14#include <linux/pinctrl/pinconf.h>
 15#include <linux/pinctrl/machine.h>
 16
 17struct pinctrl_gpio_range;
 18
 19/**
 20 * struct pinctrl_dev - pin control class device
 21 * @node: node to include this pin controller in the global pin controller list
 22 * @desc: the pin controller descriptor supplied when initializing this pin
 23 *	controller
 24 * @pin_desc_tree: each pin descriptor for this pin controller is stored in
 25 *	this radix tree
 26 * @pin_group_tree: optionally each pin group can be stored in this radix tree
 27 * @num_groups: optionally number of groups can be kept here
 28 * @pin_function_tree: optionally each function can be stored in this radix tree
 29 * @num_functions: optionally number of functions can be kept here
 30 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
 31 *	ranges are added to this list at runtime
 32 * @dev: the device entry for this pin controller
 33 * @owner: module providing the pin controller, used for refcounting
 34 * @driver_data: driver data for drivers registering to the pin controller
 35 *	subsystem
 36 * @p: result of pinctrl_get() for this device
 37 * @hog_default: default state for pins hogged by this device
 38 * @hog_sleep: sleep state for pins hogged by this device
 39 * @mutex: mutex taken on each pin controller specific action
 40 * @device_root: debugfs root for this device
 41 */
 42struct pinctrl_dev {
 43	struct list_head node;
 44	struct pinctrl_desc *desc;
 45	struct radix_tree_root pin_desc_tree;
 46#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
 47	struct radix_tree_root pin_group_tree;
 48	unsigned int num_groups;
 49#endif
 50#ifdef CONFIG_GENERIC_PINMUX_FUNCTIONS
 51	struct radix_tree_root pin_function_tree;
 52	unsigned int num_functions;
 53#endif
 54	struct list_head gpio_ranges;
 55	struct device *dev;
 56	struct module *owner;
 57	void *driver_data;
 58	struct pinctrl *p;
 59	struct pinctrl_state *hog_default;
 60	struct pinctrl_state *hog_sleep;
 61	struct mutex mutex;
 62#ifdef CONFIG_DEBUG_FS
 63	struct dentry *device_root;
 64#endif
 65};
 66
 67/**
 68 * struct pinctrl - per-device pin control state holder
 69 * @node: global list node
 70 * @dev: the device using this pin control handle
 71 * @states: a list of states for this device
 72 * @state: the current state
 73 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
 74 *	this device, if any
 75 * @users: reference count
 76 */
 77struct pinctrl {
 78	struct list_head node;
 79	struct device *dev;
 80	struct list_head states;
 81	struct pinctrl_state *state;
 82	struct list_head dt_maps;
 83	struct kref users;
 84};
 85
 86/**
 87 * struct pinctrl_state - a pinctrl state for a device
 88 * @node: list node for struct pinctrl's @states field
 89 * @name: the name of this state
 90 * @settings: a list of settings for this state
 91 */
 92struct pinctrl_state {
 93	struct list_head node;
 94	const char *name;
 95	struct list_head settings;
 96};
 97
 98/**
 99 * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
100 * @group: the group selector to program
101 * @func: the function selector to program
102 */
103struct pinctrl_setting_mux {
104	unsigned group;
105	unsigned func;
106};
107
108/**
109 * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
110 * @group_or_pin: the group selector or pin ID to program
111 * @configs: a pointer to an array of config parameters/values to program into
112 *	hardware. Each individual pin controller defines the format and meaning
113 *	of config parameters.
114 * @num_configs: the number of entries in array @configs
115 */
116struct pinctrl_setting_configs {
117	unsigned group_or_pin;
118	unsigned long *configs;
119	unsigned num_configs;
120};
121
122/**
123 * struct pinctrl_setting - an individual mux or config setting
124 * @node: list node for struct pinctrl_settings's @settings field
125 * @type: the type of setting
126 * @pctldev: pin control device handling to be programmed. Not used for
127 *   PIN_MAP_TYPE_DUMMY_STATE.
128 * @dev_name: the name of the device using this state
129 * @data: Data specific to the setting type
130 */
131struct pinctrl_setting {
132	struct list_head node;
133	enum pinctrl_map_type type;
134	struct pinctrl_dev *pctldev;
135	const char *dev_name;
136	union {
137		struct pinctrl_setting_mux mux;
138		struct pinctrl_setting_configs configs;
139	} data;
140};
141
142/**
143 * struct pin_desc - pin descriptor for each physical pin in the arch
144 * @pctldev: corresponding pin control device
145 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
146 *	datasheet or such
147 * @dynamic_name: if the name of this pin was dynamically allocated
148 * @drv_data: driver-defined per-pin data. pinctrl core does not touch this
149 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
150 *	If non-zero, this pin is claimed by @owner. This field is an integer
151 *	rather than a boolean, since pinctrl_get() might process multiple
152 *	mapping table entries that refer to, and hence claim, the same group
153 *	or pin, and each of these will increment the @usecount.
154 * @mux_owner: The name of device that called pinctrl_get().
155 * @mux_setting: The most recent selected mux setting for this pin, if any.
156 * @gpio_owner: If pinctrl_gpio_request() was called for this pin, this is
157 *	the name of the GPIO that "owns" this pin.
158 */
159struct pin_desc {
160	struct pinctrl_dev *pctldev;
161	const char *name;
162	bool dynamic_name;
163	void *drv_data;
164	/* These fields only added when supporting pinmux drivers */
165#ifdef CONFIG_PINMUX
166	unsigned mux_usecount;
167	const char *mux_owner;
168	const struct pinctrl_setting_mux *mux_setting;
169	const char *gpio_owner;
170#endif
171};
172
173/**
174 * struct pinctrl_maps - a list item containing part of the mapping table
175 * @node: mapping table list node
176 * @maps: array of mapping table entries
177 * @num_maps: the number of entries in @maps
178 */
179struct pinctrl_maps {
180	struct list_head node;
181	const struct pinctrl_map *maps;
182	unsigned num_maps;
183};
184
185#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
186
187/**
188 * struct group_desc - generic pin group descriptor
189 * @name: name of the pin group
190 * @pins: array of pins that belong to the group
191 * @num_pins: number of pins in the group
192 * @data: pin controller driver specific data
193 */
194struct group_desc {
195	const char *name;
196	int *pins;
197	int num_pins;
198	void *data;
199};
200
201int pinctrl_generic_get_group_count(struct pinctrl_dev *pctldev);
202
203const char *pinctrl_generic_get_group_name(struct pinctrl_dev *pctldev,
204					   unsigned int group_selector);
205
206int pinctrl_generic_get_group_pins(struct pinctrl_dev *pctldev,
207				   unsigned int group_selector,
208				   const unsigned int **pins,
209				   unsigned int *npins);
210
211struct group_desc *pinctrl_generic_get_group(struct pinctrl_dev *pctldev,
212					     unsigned int group_selector);
213
214int pinctrl_generic_add_group(struct pinctrl_dev *pctldev, const char *name,
215			      int *gpins, int ngpins, void *data);
216
217int pinctrl_generic_remove_group(struct pinctrl_dev *pctldev,
218				 unsigned int group_selector);
219
220#endif	/* CONFIG_GENERIC_PINCTRL_GROUPS */
221
222struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
223struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np);
224int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
225const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
226int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
227			       const char *pin_group);
228
229static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
230					    unsigned int pin)
231{
232	return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
233}
234
235extern struct pinctrl_gpio_range *
236pinctrl_find_gpio_range_from_pin_nolock(struct pinctrl_dev *pctldev,
237					unsigned int pin);
 
 
 
 
238
239extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
240extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
241
242extern struct mutex pinctrl_maps_mutex;
243extern struct list_head pinctrl_maps;
244
245#define for_each_maps(_maps_node_, _i_, _map_) \
246	list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
247		for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
248			_i_ < _maps_node_->num_maps; \
249			_i_++, _map_ = &_maps_node_->maps[_i_])
v4.6
 
  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
 12#include <linux/kref.h>
 13#include <linux/mutex.h>
 14#include <linux/radix-tree.h>
 15#include <linux/pinctrl/pinconf.h>
 16#include <linux/pinctrl/machine.h>
 17
 18struct pinctrl_gpio_range;
 19
 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
 
 
 
 
 27 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
 28 *	ranges are added to this list at runtime
 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
 33 * @p: result of pinctrl_get() for this device
 34 * @hog_default: default state for pins hogged by this device
 35 * @hog_sleep: sleep state for pins hogged by this device
 36 * @mutex: mutex taken on each pin controller specific action
 37 * @device_root: debugfs root for this device
 38 */
 39struct pinctrl_dev {
 40	struct list_head node;
 41	struct pinctrl_desc *desc;
 42	struct radix_tree_root pin_desc_tree;
 
 
 
 
 
 
 
 
 43	struct list_head gpio_ranges;
 44	struct device *dev;
 45	struct module *owner;
 46	void *driver_data;
 47	struct pinctrl *p;
 48	struct pinctrl_state *hog_default;
 49	struct pinctrl_state *hog_sleep;
 50	struct mutex mutex;
 51#ifdef CONFIG_DEBUG_FS
 52	struct dentry *device_root;
 53#endif
 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
 60 * @states: a list of states for this device
 61 * @state: the current state
 62 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
 63 *	this device, if any
 64 * @users: reference count
 65 */
 66struct pinctrl {
 67	struct list_head node;
 68	struct device *dev;
 69	struct list_head states;
 70	struct pinctrl_state *state;
 71	struct list_head dt_maps;
 72	struct kref users;
 73};
 74
 75/**
 76 * struct pinctrl_state - a pinctrl state for a device
 77 * @node: list node for struct pinctrl's @states field
 78 * @name: the name of this state
 79 * @settings: a list of settings for this state
 80 */
 81struct pinctrl_state {
 82	struct list_head node;
 83	const char *name;
 84	struct list_head settings;
 85};
 86
 87/**
 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 */
 92struct 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 */
105struct pinctrl_setting_configs {
106	unsigned group_or_pin;
107	unsigned long *configs;
108	unsigned num_configs;
109};
110
111/**
112 * struct pinctrl_setting - an individual mux or config setting
113 * @node: list node for struct pinctrl_settings's @settings field
114 * @type: the type of setting
115 * @pctldev: pin control device handling to be programmed. Not used for
116 *   PIN_MAP_TYPE_DUMMY_STATE.
117 * @dev_name: the name of the device using this state
118 * @data: Data specific to the setting type
119 */
120struct pinctrl_setting {
121	struct list_head node;
122	enum pinctrl_map_type type;
123	struct pinctrl_dev *pctldev;
124	const char *dev_name;
125	union {
126		struct pinctrl_setting_mux mux;
127		struct pinctrl_setting_configs configs;
128	} data;
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
136 * @dynamic_name: if the name of this pin was dynamically allocated
 
137 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
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.
142 * @mux_owner: The name of device that called pinctrl_get().
143 * @mux_setting: The most recent selected mux setting for this pin, if any.
144 * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
145 *	the name of the GPIO that "owns" this pin.
146 */
147struct pin_desc {
148	struct pinctrl_dev *pctldev;
149	const char *name;
150	bool dynamic_name;
 
151	/* These fields only added when supporting pinmux drivers */
152#ifdef CONFIG_PINMUX
153	unsigned mux_usecount;
154	const char *mux_owner;
155	const struct pinctrl_setting_mux *mux_setting;
156	const char *gpio_owner;
157#endif
158};
159
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 */
166struct pinctrl_maps {
167	struct list_head node;
168	struct pinctrl_map const *maps;
169	unsigned num_maps;
170};
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
173struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np);
174int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
175const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
176int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
177			       const char *pin_group);
178
179static 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}
184
185extern struct pinctrl_gpio_range *
186pinctrl_find_gpio_range_from_pin_nolock(struct pinctrl_dev *pctldev,
187					unsigned int pin);
188
189int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
190			 bool dup);
191void pinctrl_unregister_map(struct pinctrl_map const *map);
192
193extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
194extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
195
196extern struct mutex pinctrl_maps_mutex;
197extern struct list_head pinctrl_maps;
198
199#define for_each_maps(_maps_node_, _i_, _map_) \
200	list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
201		for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
202			_i_ < _maps_node_->num_maps; \
203			_i_++, _map_ = &_maps_node_->maps[_i_])