blob: ee72f1f6d86239ac91ba6e29be716356502ced5b [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 Walleij9b6740c2013-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
Linus Walleij2744e8a2011-05-02 20:50:54 +020027 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
28 * ranges are added to this list at runtime
Linus Walleij2744e8a2011-05-02 20:50:54 +020029 * @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 Warren46919ae2012-03-01 18:48:32 -070033 * @p: result of pinctrl_get() for this device
Julien Delacoub02491e2012-12-10 14:47:33 +010034 * @hog_default: default state for pins hogged by this device
35 * @hog_sleep: sleep state for pins hogged by this device
Linus Walleijbefe5bd2012-02-09 19:47:48 +010036 * @device_root: debugfs root for this device
Linus Walleij2744e8a2011-05-02 20:50:54 +020037 */
38struct pinctrl_dev {
39 struct list_head node;
40 struct pinctrl_desc *desc;
41 struct radix_tree_root pin_desc_tree;
Linus Walleij2744e8a2011-05-02 20:50:54 +020042 struct list_head gpio_ranges;
Stephen Warren51cd24e2011-12-09 16:59:05 -070043 struct device *dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +020044 struct module *owner;
45 void *driver_data;
Stephen Warren46919ae2012-03-01 18:48:32 -070046 struct pinctrl *p;
Julien Delacoub02491e2012-12-10 14:47:33 +010047 struct pinctrl_state *hog_default;
48 struct pinctrl_state *hog_sleep;
Tony Lindgren02157162012-01-20 08:17:22 -080049#ifdef CONFIG_DEBUG_FS
50 struct dentry *device_root;
51#endif
Linus Walleijbefe5bd2012-02-09 19:47:48 +010052};
53
54/**
55 * struct pinctrl - per-device pin control state holder
56 * @node: global list node
57 * @dev: the device using this pin control handle
Stephen Warren6e5e9592012-03-02 13:05:47 -070058 * @states: a list of states for this device
59 * @state: the current state
Stephen Warrenc221fde2012-03-23 10:29:46 -060060 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
61 * this device, if any
Linus Walleij9b6740c2013-01-22 10:56:14 -070062 * @users: reference count
Linus Walleijbefe5bd2012-02-09 19:47:48 +010063 */
64struct pinctrl {
65 struct list_head node;
66 struct device *dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -070067 struct list_head states;
68 struct pinctrl_state *state;
Stephen Warrenc221fde2012-03-23 10:29:46 -060069 struct list_head dt_maps;
Linus Walleij9b6740c2013-01-22 10:56:14 -070070 struct kref users;
Stephen Warren6e5e9592012-03-02 13:05:47 -070071};
72
73/**
74 * struct pinctrl_state - a pinctrl state for a device
75 * @node: list not for struct pinctrl's @states field
76 * @name: the name of this state
77 * @settings: a list of settings for this state
78 */
79struct pinctrl_state {
80 struct list_head node;
81 const char *name;
Stephen Warren7ecdb162012-03-02 13:05:45 -070082 struct list_head settings;
83};
84
85/**
Stephen Warren1e2082b2012-03-02 13:05:48 -070086 * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
87 * @group: the group selector to program
88 * @func: the function selector to program
89 */
90struct pinctrl_setting_mux {
91 unsigned group;
92 unsigned func;
93};
94
95/**
96 * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
97 * @group_or_pin: the group selector or pin ID to program
98 * @configs: a pointer to an array of config parameters/values to program into
99 * hardware. Each individual pin controller defines the format and meaning
100 * of config parameters.
101 * @num_configs: the number of entries in array @configs
102 */
103struct pinctrl_setting_configs {
104 unsigned group_or_pin;
105 unsigned long *configs;
106 unsigned num_configs;
107};
108
109/**
Linus Walleij872acc32012-03-06 13:52:22 +0100110 * struct pinctrl_setting - an individual mux or config setting
Stephen Warren6e5e9592012-03-02 13:05:47 -0700111 * @node: list node for struct pinctrl_settings's @settings field
Stephen Warren1e2082b2012-03-02 13:05:48 -0700112 * @type: the type of setting
Stephen Warrenc221fde2012-03-23 10:29:46 -0600113 * @pctldev: pin control device handling to be programmed. Not used for
114 * PIN_MAP_TYPE_DUMMY_STATE.
Linus Walleij696b23a2012-10-17 20:51:54 +0200115 * @dev_name: the name of the device using this state
Stephen Warren1e2082b2012-03-02 13:05:48 -0700116 * @data: Data specific to the setting type
Stephen Warren7ecdb162012-03-02 13:05:45 -0700117 */
118struct pinctrl_setting {
119 struct list_head node;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700120 enum pinctrl_map_type type;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100121 struct pinctrl_dev *pctldev;
Linus Walleij696b23a2012-10-17 20:51:54 +0200122 const char *dev_name;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700123 union {
124 struct pinctrl_setting_mux mux;
125 struct pinctrl_setting_configs configs;
126 } data;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200127};
128
129/**
130 * struct pin_desc - pin descriptor for each physical pin in the arch
131 * @pctldev: corresponding pin control device
132 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
133 * datasheet or such
Linus Walleijca53c5f2011-12-14 20:33:37 +0100134 * @dynamic_name: if the name of this pin was dynamically allocated
Stephen Warren652162d2012-03-05 17:22:15 -0700135 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
Stephen Warren0e3db172012-03-02 13:05:46 -0700136 * If non-zero, this pin is claimed by @owner. This field is an integer
137 * rather than a boolean, since pinctrl_get() might process multiple
138 * mapping table entries that refer to, and hence claim, the same group
139 * or pin, and each of these will increment the @usecount.
Stephen Warren652162d2012-03-05 17:22:15 -0700140 * @mux_owner: The name of device that called pinctrl_get().
Stephen Warrenba110d92012-03-02 13:05:49 -0700141 * @mux_setting: The most recent selected mux setting for this pin, if any.
Stephen Warren652162d2012-03-05 17:22:15 -0700142 * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
143 * the name of the GPIO that "owns" this pin.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200144 */
145struct pin_desc {
146 struct pinctrl_dev *pctldev;
Stephen Warren9af1e442011-10-19 16:19:27 -0600147 const char *name;
Linus Walleijca53c5f2011-12-14 20:33:37 +0100148 bool dynamic_name;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200149 /* These fields only added when supporting pinmux drivers */
150#ifdef CONFIG_PINMUX
Stephen Warren652162d2012-03-05 17:22:15 -0700151 unsigned mux_usecount;
152 const char *mux_owner;
Stephen Warrenba110d92012-03-02 13:05:49 -0700153 const struct pinctrl_setting_mux *mux_setting;
Stephen Warren652162d2012-03-05 17:22:15 -0700154 const char *gpio_owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200155#endif
156};
157
Laurent Meuniera31518f2013-02-06 09:09:44 +0100158/**
159 * struct pinctrl_maps - a list item containing part of the mapping table
160 * @node: mapping table list node
161 * @maps: array of mapping table entries
162 * @num_maps: the number of entries in @maps
163 */
164struct pinctrl_maps {
165 struct list_head node;
166 struct pinctrl_map const *maps;
167 unsigned num_maps;
168};
169
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100170struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
Linus Walleijae6b4d82011-10-19 18:14:33 +0200171int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
Dong Aisheng38491d22012-04-17 15:00:46 +0800172const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200173int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
174 const char *pin_group);
Stephen Warren2304b472012-02-22 14:26:01 -0700175
176static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
177 unsigned int pin)
178{
179 return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
180}
Stephen Warren57b676f2012-03-02 13:05:44 -0700181
Stephen Warrenc221fde2012-03-23 10:29:46 -0600182int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
183 bool dup, bool locked);
184void pinctrl_unregister_map(struct pinctrl_map const *map);
185
Julien Delacoub02491e2012-12-10 14:47:33 +0100186extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
187extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
188
Stephen Warren57b676f2012-03-02 13:05:44 -0700189extern struct mutex pinctrl_mutex;
Stephen Warrenc221fde2012-03-23 10:29:46 -0600190extern struct list_head pinctrldev_list;
Laurent Meuniera31518f2013-02-06 09:09:44 +0100191extern struct list_head pinctrl_maps;
192
193#define for_each_maps(_maps_node_, _i_, _map_) \
194 list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
195 for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
196 _i_ < _maps_node_->num_maps; \
197 _i_++, _map_ = &_maps_node_->maps[_i_])