blob: 232a9f6db4aa0a0cd3229866d3966ce70cef4943 [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
Stephen Warren57b676f2012-03-02 13:05:44 -070012#include <linux/mutex.h>
13#include <linux/radix-tree.h>
Linus Walleijae6b4d82011-10-19 18:14:33 +020014#include <linux/pinctrl/pinconf.h>
Linus Walleij872acc32012-03-06 13:52:22 +010015#include <linux/pinctrl/machine.h>
Linus Walleijae6b4d82011-10-19 18:14:33 +020016
17struct pinctrl_gpio_range;
18
Linus Walleij2744e8a2011-05-02 20:50:54 +020019/**
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
Linus Walleij2744e8a2011-05-02 20:50:54 +020026 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
27 * ranges are added to this list at runtime
Linus Walleij2744e8a2011-05-02 20:50:54 +020028 * @dev: the device entry for this pin controller
29 * @owner: module providing the pin controller, used for refcounting
30 * @driver_data: driver data for drivers registering to the pin controller
31 * subsystem
Stephen Warren46919ae2012-03-01 18:48:32 -070032 * @p: result of pinctrl_get() for this device
Julien Delacou840a47b2012-12-10 14:47:33 +010033 * @hog_default: default state for pins hogged by this device
34 * @hog_sleep: sleep state for pins hogged by this device
Linus Walleijbefe5bd2012-02-09 19:47:48 +010035 * @device_root: debugfs root for this device
Linus Walleij2744e8a2011-05-02 20:50:54 +020036 */
37struct pinctrl_dev {
38 struct list_head node;
39 struct pinctrl_desc *desc;
40 struct radix_tree_root pin_desc_tree;
Linus Walleij2744e8a2011-05-02 20:50:54 +020041 struct list_head gpio_ranges;
Stephen Warren51cd24e2011-12-09 16:59:05 -070042 struct device *dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +020043 struct module *owner;
44 void *driver_data;
Stephen Warren46919ae2012-03-01 18:48:32 -070045 struct pinctrl *p;
Julien Delacou840a47b2012-12-10 14:47:33 +010046 struct pinctrl_state *hog_default;
47 struct pinctrl_state *hog_sleep;
Tony Lindgren02157162012-01-20 08:17:22 -080048#ifdef CONFIG_DEBUG_FS
49 struct dentry *device_root;
50#endif
Linus Walleijbefe5bd2012-02-09 19:47:48 +010051};
52
53/**
54 * struct pinctrl - per-device pin control state holder
55 * @node: global list node
56 * @dev: the device using this pin control handle
Stephen Warren6e5e9592012-03-02 13:05:47 -070057 * @states: a list of states for this device
58 * @state: the current state
Stephen Warren57291ce2012-03-23 10:29:46 -060059 * @dt_maps: the mapping table chunks dynamically parsed from device tree for
60 * this device, if any
Linus Walleijbefe5bd2012-02-09 19:47:48 +010061 */
62struct pinctrl {
63 struct list_head node;
64 struct device *dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -070065 struct list_head states;
66 struct pinctrl_state *state;
Stephen Warren57291ce2012-03-23 10:29:46 -060067 struct list_head dt_maps;
Stephen Warren6e5e9592012-03-02 13:05:47 -070068};
69
70/**
71 * struct pinctrl_state - a pinctrl state for a device
72 * @node: list not for struct pinctrl's @states field
73 * @name: the name of this state
74 * @settings: a list of settings for this state
75 */
76struct pinctrl_state {
77 struct list_head node;
78 const char *name;
Stephen Warren7ecdb162012-03-02 13:05:45 -070079 struct list_head settings;
80};
81
82/**
Stephen Warren1e2082b2012-03-02 13:05:48 -070083 * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
84 * @group: the group selector to program
85 * @func: the function selector to program
86 */
87struct pinctrl_setting_mux {
88 unsigned group;
89 unsigned func;
90};
91
92/**
93 * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
94 * @group_or_pin: the group selector or pin ID to program
95 * @configs: a pointer to an array of config parameters/values to program into
96 * hardware. Each individual pin controller defines the format and meaning
97 * of config parameters.
98 * @num_configs: the number of entries in array @configs
99 */
100struct pinctrl_setting_configs {
101 unsigned group_or_pin;
102 unsigned long *configs;
103 unsigned num_configs;
104};
105
106/**
Linus Walleij872acc32012-03-06 13:52:22 +0100107 * struct pinctrl_setting - an individual mux or config setting
Stephen Warren6e5e9592012-03-02 13:05:47 -0700108 * @node: list node for struct pinctrl_settings's @settings field
Stephen Warren1e2082b2012-03-02 13:05:48 -0700109 * @type: the type of setting
Stephen Warren57291ce2012-03-23 10:29:46 -0600110 * @pctldev: pin control device handling to be programmed. Not used for
111 * PIN_MAP_TYPE_DUMMY_STATE.
Linus Walleij1a789582012-10-17 20:51:54 +0200112 * @dev_name: the name of the device using this state
Stephen Warren1e2082b2012-03-02 13:05:48 -0700113 * @data: Data specific to the setting type
Stephen Warren7ecdb162012-03-02 13:05:45 -0700114 */
115struct pinctrl_setting {
116 struct list_head node;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700117 enum pinctrl_map_type type;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100118 struct pinctrl_dev *pctldev;
Linus Walleij1a789582012-10-17 20:51:54 +0200119 const char *dev_name;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700120 union {
121 struct pinctrl_setting_mux mux;
122 struct pinctrl_setting_configs configs;
123 } data;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200124};
125
126/**
127 * struct pin_desc - pin descriptor for each physical pin in the arch
128 * @pctldev: corresponding pin control device
129 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
130 * datasheet or such
Linus Walleijca53c5f2011-12-14 20:33:37 +0100131 * @dynamic_name: if the name of this pin was dynamically allocated
Stephen Warren652162d2012-03-05 17:22:15 -0700132 * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
Stephen Warren0e3db1732012-03-02 13:05:46 -0700133 * If non-zero, this pin is claimed by @owner. This field is an integer
134 * rather than a boolean, since pinctrl_get() might process multiple
135 * mapping table entries that refer to, and hence claim, the same group
136 * or pin, and each of these will increment the @usecount.
Stephen Warren652162d2012-03-05 17:22:15 -0700137 * @mux_owner: The name of device that called pinctrl_get().
Stephen Warrenba110d92012-03-02 13:05:49 -0700138 * @mux_setting: The most recent selected mux setting for this pin, if any.
Stephen Warren652162d2012-03-05 17:22:15 -0700139 * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
140 * the name of the GPIO that "owns" this pin.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200141 */
142struct pin_desc {
143 struct pinctrl_dev *pctldev;
Stephen Warren9af1e442011-10-19 16:19:27 -0600144 const char *name;
Linus Walleijca53c5f2011-12-14 20:33:37 +0100145 bool dynamic_name;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200146 /* These fields only added when supporting pinmux drivers */
147#ifdef CONFIG_PINMUX
Stephen Warren652162d2012-03-05 17:22:15 -0700148 unsigned mux_usecount;
149 const char *mux_owner;
Stephen Warrenba110d92012-03-02 13:05:49 -0700150 const struct pinctrl_setting_mux *mux_setting;
Stephen Warren652162d2012-03-05 17:22:15 -0700151 const char *gpio_owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200152#endif
153};
154
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100155struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
Linus Walleijae6b4d82011-10-19 18:14:33 +0200156int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800157const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200158int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
159 const char *pin_group);
Stephen Warren2304b472012-02-22 14:26:01 -0700160
161static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
162 unsigned int pin)
163{
164 return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
165}
Stephen Warren57b676f2012-03-02 13:05:44 -0700166
Stephen Warren57291ce2012-03-23 10:29:46 -0600167int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
168 bool dup, bool locked);
169void pinctrl_unregister_map(struct pinctrl_map const *map);
170
Julien Delacou840a47b2012-12-10 14:47:33 +0100171extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
172extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
173
Stephen Warren57b676f2012-03-02 13:05:44 -0700174extern struct mutex pinctrl_mutex;
Stephen Warren57291ce2012-03-23 10:29:46 -0600175extern struct list_head pinctrldev_list;