blob: 5691d312e15a958d2ba746f6daa06b64d064136e [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>
15
16struct pinctrl_gpio_range;
17
Linus Walleij2744e8a2011-05-02 20:50:54 +020018/**
19 * struct pinctrl_dev - pin control class device
20 * @node: node to include this pin controller in the global pin controller list
21 * @desc: the pin controller descriptor supplied when initializing this pin
22 * controller
23 * @pin_desc_tree: each pin descriptor for this pin controller is stored in
24 * this radix tree
Linus Walleij2744e8a2011-05-02 20:50:54 +020025 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
26 * ranges are added to this list at runtime
Linus Walleij2744e8a2011-05-02 20:50:54 +020027 * @dev: the device entry for this pin controller
28 * @owner: module providing the pin controller, used for refcounting
29 * @driver_data: driver data for drivers registering to the pin controller
30 * subsystem
Stephen Warren46919ae2012-03-01 18:48:32 -070031 * @p: result of pinctrl_get() for this device
Linus Walleijbefe5bd2012-02-09 19:47:48 +010032 * @device_root: debugfs root for this device
Linus Walleij2744e8a2011-05-02 20:50:54 +020033 */
34struct pinctrl_dev {
35 struct list_head node;
36 struct pinctrl_desc *desc;
37 struct radix_tree_root pin_desc_tree;
Linus Walleij2744e8a2011-05-02 20:50:54 +020038 struct list_head gpio_ranges;
Stephen Warren51cd24e2011-12-09 16:59:05 -070039 struct device *dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +020040 struct module *owner;
41 void *driver_data;
Stephen Warren46919ae2012-03-01 18:48:32 -070042 struct pinctrl *p;
Tony Lindgren02157162012-01-20 08:17:22 -080043#ifdef CONFIG_DEBUG_FS
44 struct dentry *device_root;
45#endif
Linus Walleijbefe5bd2012-02-09 19:47:48 +010046};
47
48/**
49 * struct pinctrl - per-device pin control state holder
50 * @node: global list node
51 * @dev: the device using this pin control handle
Stephen Warren6e5e9592012-03-02 13:05:47 -070052 * @states: a list of states for this device
53 * @state: the current state
Linus Walleijbefe5bd2012-02-09 19:47:48 +010054 */
55struct pinctrl {
56 struct list_head node;
57 struct device *dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -070058 struct list_head states;
59 struct pinctrl_state *state;
60};
61
62/**
63 * struct pinctrl_state - a pinctrl state for a device
64 * @node: list not for struct pinctrl's @states field
65 * @name: the name of this state
66 * @settings: a list of settings for this state
67 */
68struct pinctrl_state {
69 struct list_head node;
70 const char *name;
Stephen Warren7ecdb162012-03-02 13:05:45 -070071 struct list_head settings;
72};
73
74/**
75 * struct pinctrl_setting - an individual mux setting
Stephen Warren6e5e9592012-03-02 13:05:47 -070076 * @node: list node for struct pinctrl_settings's @settings field
Stephen Warren7ecdb162012-03-02 13:05:45 -070077 * @pctldev: pin control device handling to be programmed
78 * @group_selector: the group selector to program
79 * @func_selector: the function selector to program
80 */
81struct pinctrl_setting {
82 struct list_head node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +010083 struct pinctrl_dev *pctldev;
Stephen Warren7ecdb162012-03-02 13:05:45 -070084 unsigned group_selector;
85 unsigned func_selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +020086};
87
88/**
89 * struct pin_desc - pin descriptor for each physical pin in the arch
90 * @pctldev: corresponding pin control device
91 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
92 * datasheet or such
Linus Walleijca53c5f2011-12-14 20:33:37 +010093 * @dynamic_name: if the name of this pin was dynamically allocated
Stephen Warren0e3db1732012-03-02 13:05:46 -070094 * @usecount: If zero, the pin is not claimed, and @owner should be NULL.
95 * If non-zero, this pin is claimed by @owner. This field is an integer
96 * rather than a boolean, since pinctrl_get() might process multiple
97 * mapping table entries that refer to, and hence claim, the same group
98 * or pin, and each of these will increment the @usecount.
99 * @owner: The name of the entity owning the pin. Typically, this is the name
100 * of the device that called pinctrl_get(). Alternatively, it may be the
101 * name of the GPIO passed to pinctrl_request_gpio().
Linus Walleij2744e8a2011-05-02 20:50:54 +0200102 */
103struct pin_desc {
104 struct pinctrl_dev *pctldev;
Stephen Warren9af1e442011-10-19 16:19:27 -0600105 const char *name;
Linus Walleijca53c5f2011-12-14 20:33:37 +0100106 bool dynamic_name;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200107 /* These fields only added when supporting pinmux drivers */
108#ifdef CONFIG_PINMUX
Stephen Warren0e3db1732012-03-02 13:05:46 -0700109 unsigned usecount;
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700110 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200111#endif
112};
113
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100114struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
Linus Walleijae6b4d82011-10-19 18:14:33 +0200115int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200116int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
117 const char *pin_group);
Stephen Warren2304b472012-02-22 14:26:01 -0700118
119static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
120 unsigned int pin)
121{
122 return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
123}
Stephen Warren57b676f2012-03-02 13:05:44 -0700124
125extern struct mutex pinctrl_mutex;