]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/pinctrl/core.h
pinctrl: samsung: remove duplicated line
[mirror_ubuntu-zesty-kernel.git] / drivers / pinctrl / core.h
CommitLineData
2744e8af
LW
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
ab78029e 12#include <linux/kref.h>
57b676f9
SW
13#include <linux/mutex.h>
14#include <linux/radix-tree.h>
ae6b4d85 15#include <linux/pinctrl/pinconf.h>
872acc32 16#include <linux/pinctrl/machine.h>
ae6b4d85
LW
17
18struct pinctrl_gpio_range;
19
2744e8af
LW
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
2744e8af
LW
27 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
28 * ranges are added to this list at runtime
2744e8af
LW
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
46919ae6 33 * @p: result of pinctrl_get() for this device
840a47ba
JD
34 * @hog_default: default state for pins hogged by this device
35 * @hog_sleep: sleep state for pins hogged by this device
befe5bdf 36 * @device_root: debugfs root for this device
2744e8af
LW
37 */
38struct pinctrl_dev {
39 struct list_head node;
40 struct pinctrl_desc *desc;
41 struct radix_tree_root pin_desc_tree;
2744e8af 42 struct list_head gpio_ranges;
51cd24ee 43 struct device *dev;
2744e8af
LW
44 struct module *owner;
45 void *driver_data;
46919ae6 46 struct pinctrl *p;
840a47ba
JD
47 struct pinctrl_state *hog_default;
48 struct pinctrl_state *hog_sleep;
02157160
TL
49#ifdef CONFIG_DEBUG_FS
50 struct dentry *device_root;
51#endif
befe5bdf
LW
52};
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
6e5e959d
SW
58 * @states: a list of states for this device
59 * @state: the current state
57291ce2
SW
60 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
61 * this device, if any
ab78029e 62 * @users: reference count
befe5bdf
LW
63 */
64struct pinctrl {
65 struct list_head node;
66 struct device *dev;
6e5e959d
SW
67 struct list_head states;
68 struct pinctrl_state *state;
57291ce2 69 struct list_head dt_maps;
ab78029e 70 struct kref users;
6e5e959d
SW
71};
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;
7ecdb16f
SW
82 struct list_head settings;
83};
84
1e2082b5
SW
85/**
86 * 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
7ecdb16f 109/**
872acc32 110 * struct pinctrl_setting - an individual mux or config setting
6e5e959d 111 * @node: list node for struct pinctrl_settings's @settings field
1e2082b5 112 * @type: the type of setting
57291ce2
SW
113 * @pctldev: pin control device handling to be programmed. Not used for
114 * PIN_MAP_TYPE_DUMMY_STATE.
1a78958d 115 * @dev_name: the name of the device using this state
1e2082b5 116 * @data: Data specific to the setting type
7ecdb16f
SW
117 */
118struct pinctrl_setting {
119 struct list_head node;
1e2082b5 120 enum pinctrl_map_type type;
befe5bdf 121 struct pinctrl_dev *pctldev;
1a78958d 122 const char *dev_name;
1e2082b5
SW
123 union {
124 struct pinctrl_setting_mux mux;
125 struct pinctrl_setting_configs configs;
126 } data;
2744e8af
LW
127};
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
ca53c5f1 134 * @dynamic_name: if the name of this pin was dynamically allocated
652162d4 135 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
0e3db173
SW
136 * 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.
652162d4 140 * @mux_owner: The name of device that called pinctrl_get().
ba110d90 141 * @mux_setting: The most recent selected mux setting for this pin, if any.
652162d4
SW
142 * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
143 * the name of the GPIO that "owns" this pin.
2744e8af
LW
144 */
145struct pin_desc {
146 struct pinctrl_dev *pctldev;
9af1e44f 147 const char *name;
ca53c5f1 148 bool dynamic_name;
2744e8af
LW
149 /* These fields only added when supporting pinmux drivers */
150#ifdef CONFIG_PINMUX
652162d4
SW
151 unsigned mux_usecount;
152 const char *mux_owner;
ba110d90 153 const struct pinctrl_setting_mux *mux_setting;
652162d4 154 const char *gpio_owner;
2744e8af
LW
155#endif
156};
157
9dfac4fd 158struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
ae6b4d85 159int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
dcb5dbc3 160const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
7afde8ba
LW
161int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
162 const char *pin_group);
2304b473
SW
163
164static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
165 unsigned int pin)
166{
167 return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
168}
57b676f9 169
57291ce2
SW
170int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
171 bool dup, bool locked);
172void pinctrl_unregister_map(struct pinctrl_map const *map);
173
840a47ba
JD
174extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
175extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
176
57b676f9 177extern struct mutex pinctrl_mutex;
57291ce2 178extern struct list_head pinctrldev_list;