2 * Machine interface for the pinctrl subsystem.
4 * Copyright (C) 2011 ST-Ericsson SA
5 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
8 * Author: Linus Walleij <linus.walleij@linaro.org>
10 * License terms: GNU General Public License (GPL) version 2
12 #ifndef __LINUX_PINCTRL_MACHINE_H
13 #define __LINUX_PINCTRL_MACHINE_H
15 #include <linux/bug.h>
17 #include <linux/pinctrl/pinctrl-state.h>
19 enum pinctrl_map_type {
21 PIN_MAP_TYPE_DUMMY_STATE,
22 PIN_MAP_TYPE_MUX_GROUP,
23 PIN_MAP_TYPE_CONFIGS_PIN,
24 PIN_MAP_TYPE_CONFIGS_GROUP,
28 * struct pinctrl_map_mux - mapping table content for MAP_TYPE_MUX_GROUP
29 * @group: the name of the group whose mux function is to be configured. This
30 * field may be left NULL, and the first applicable group for the function
32 * @function: the mux function to select for the group
34 struct pinctrl_map_mux {
40 * struct pinctrl_map_configs - mapping table content for MAP_TYPE_CONFIGS_*
41 * @group_or_pin: the name of the pin or group whose configuration parameters
42 * are to be configured.
43 * @configs: a pointer to an array of config parameters/values to program into
44 * hardware. Each individual pin controller defines the format and meaning
45 * of config parameters.
46 * @num_configs: the number of entries in array @configs
48 struct pinctrl_map_configs {
49 const char *group_or_pin;
50 unsigned long *configs;
55 * struct pinctrl_map - boards/machines shall provide this map for devices
56 * @dev_name: the name of the device using this specific mapping, the name
57 * must be the same as in your struct device*. If this name is set to the
58 * same name as the pin controllers own dev_name(), the map entry will be
59 * hogged by the driver itself upon registration
60 * @name: the name of this specific map entry for the particular machine.
61 * This is the parameter passed to pinmux_lookup_state()
62 * @type: the type of mapping table entry
63 * @ctrl_dev_name: the name of the device controlling this specific mapping,
64 * the name must be the same as in your struct device*. This field is not
65 * used for PIN_MAP_TYPE_DUMMY_STATE
66 * @data: Data specific to the mapping type
71 enum pinctrl_map_type type;
72 const char *ctrl_dev_name;
74 struct pinctrl_map_mux mux;
75 struct pinctrl_map_configs configs;
79 /* Convenience macros to create mapping table entries */
81 #define PIN_MAP_DUMMY_STATE(dev, state) \
85 .type = PIN_MAP_TYPE_DUMMY_STATE, \
88 #define PIN_MAP_MUX_GROUP(dev, state, pinctrl, grp, func) \
92 .type = PIN_MAP_TYPE_MUX_GROUP, \
93 .ctrl_dev_name = pinctrl, \
100 #define PIN_MAP_MUX_GROUP_DEFAULT(dev, pinctrl, grp, func) \
101 PIN_MAP_MUX_GROUP(dev, PINCTRL_STATE_DEFAULT, pinctrl, grp, func)
103 #define PIN_MAP_MUX_GROUP_HOG(dev, state, grp, func) \
104 PIN_MAP_MUX_GROUP(dev, state, dev, grp, func)
106 #define PIN_MAP_MUX_GROUP_HOG_DEFAULT(dev, grp, func) \
107 PIN_MAP_MUX_GROUP(dev, PINCTRL_STATE_DEFAULT, dev, grp, func)
109 #define PIN_MAP_CONFIGS_PIN(dev, state, pinctrl, pin, cfgs) \
113 .type = PIN_MAP_TYPE_CONFIGS_PIN, \
114 .ctrl_dev_name = pinctrl, \
116 .group_or_pin = pin, \
118 .num_configs = ARRAY_SIZE(cfgs), \
122 #define PIN_MAP_CONFIGS_PIN_DEFAULT(dev, pinctrl, pin, cfgs) \
123 PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, pinctrl, pin, cfgs)
125 #define PIN_MAP_CONFIGS_PIN_HOG(dev, state, pin, cfgs) \
126 PIN_MAP_CONFIGS_PIN(dev, state, dev, pin, cfgs)
128 #define PIN_MAP_CONFIGS_PIN_HOG_DEFAULT(dev, pin, cfgs) \
129 PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, dev, pin, cfgs)
131 #define PIN_MAP_CONFIGS_GROUP(dev, state, pinctrl, grp, cfgs) \
135 .type = PIN_MAP_TYPE_CONFIGS_GROUP, \
136 .ctrl_dev_name = pinctrl, \
138 .group_or_pin = grp, \
140 .num_configs = ARRAY_SIZE(cfgs), \
144 #define PIN_MAP_CONFIGS_GROUP_DEFAULT(dev, pinctrl, grp, cfgs) \
145 PIN_MAP_CONFIGS_GROUP(dev, PINCTRL_STATE_DEFAULT, pinctrl, grp, cfgs)
147 #define PIN_MAP_CONFIGS_GROUP_HOG(dev, state, grp, cfgs) \
148 PIN_MAP_CONFIGS_GROUP(dev, state, dev, grp, cfgs)
150 #define PIN_MAP_CONFIGS_GROUP_HOG_DEFAULT(dev, grp, cfgs) \
151 PIN_MAP_CONFIGS_GROUP(dev, PINCTRL_STATE_DEFAULT, dev, grp, cfgs)
153 #ifdef CONFIG_PINCTRL
155 extern int pinctrl_register_mappings(struct pinctrl_map const *map,
157 extern void pinctrl_provide_dummies(void);
160 static inline int pinctrl_register_mappings(struct pinctrl_map const *map,
166 static inline void pinctrl_provide_dummies(void)
169 #endif /* !CONFIG_PINCTRL */