diff options
Diffstat (limited to 'include/linux/pinctrl')
| -rw-r--r-- | include/linux/pinctrl/consumer.h | 159 | ||||
| -rw-r--r-- | include/linux/pinctrl/machine.h | 190 | ||||
| -rw-r--r-- | include/linux/pinctrl/pinconf-generic.h | 114 | ||||
| -rw-r--r-- | include/linux/pinctrl/pinconf.h | 44 | ||||
| -rw-r--r-- | include/linux/pinctrl/pinctrl-state.h | 6 | ||||
| -rw-r--r-- | include/linux/pinctrl/pinctrl.h | 3 | ||||
| -rw-r--r-- | include/linux/pinctrl/pinmux.h | 52 |
7 files changed, 414 insertions, 154 deletions
diff --git a/include/linux/pinctrl/consumer.h b/include/linux/pinctrl/consumer.h new file mode 100644 index 000000000000..191e72688481 --- /dev/null +++ b/include/linux/pinctrl/consumer.h | |||
| @@ -0,0 +1,159 @@ | |||
| 1 | /* | ||
| 2 | * Consumer interface the pin control subsystem | ||
| 3 | * | ||
| 4 | * Copyright (C) 2012 ST-Ericsson SA | ||
| 5 | * Written on behalf of Linaro for ST-Ericsson | ||
| 6 | * Based on bits of regulator core, gpio core and clk core | ||
| 7 | * | ||
| 8 | * Author: Linus Walleij <linus.walleij@linaro.org> | ||
| 9 | * | ||
| 10 | * License terms: GNU General Public License (GPL) version 2 | ||
| 11 | */ | ||
| 12 | #ifndef __LINUX_PINCTRL_CONSUMER_H | ||
| 13 | #define __LINUX_PINCTRL_CONSUMER_H | ||
| 14 | |||
| 15 | #include <linux/err.h> | ||
| 16 | #include <linux/list.h> | ||
| 17 | #include <linux/seq_file.h> | ||
| 18 | #include "pinctrl-state.h" | ||
| 19 | |||
| 20 | /* This struct is private to the core and should be regarded as a cookie */ | ||
| 21 | struct pinctrl; | ||
| 22 | struct pinctrl_state; | ||
| 23 | |||
| 24 | #ifdef CONFIG_PINCTRL | ||
| 25 | |||
| 26 | /* External interface to pin control */ | ||
| 27 | extern int pinctrl_request_gpio(unsigned gpio); | ||
| 28 | extern void pinctrl_free_gpio(unsigned gpio); | ||
| 29 | extern int pinctrl_gpio_direction_input(unsigned gpio); | ||
| 30 | extern int pinctrl_gpio_direction_output(unsigned gpio); | ||
| 31 | |||
| 32 | extern struct pinctrl * __must_check pinctrl_get(struct device *dev); | ||
| 33 | extern void pinctrl_put(struct pinctrl *p); | ||
| 34 | extern struct pinctrl_state * __must_check pinctrl_lookup_state( | ||
| 35 | struct pinctrl *p, | ||
| 36 | const char *name); | ||
| 37 | extern int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *s); | ||
| 38 | |||
| 39 | #else /* !CONFIG_PINCTRL */ | ||
| 40 | |||
| 41 | static inline int pinctrl_request_gpio(unsigned gpio) | ||
| 42 | { | ||
| 43 | return 0; | ||
| 44 | } | ||
| 45 | |||
| 46 | static inline void pinctrl_free_gpio(unsigned gpio) | ||
| 47 | { | ||
| 48 | } | ||
| 49 | |||
| 50 | static inline int pinctrl_gpio_direction_input(unsigned gpio) | ||
| 51 | { | ||
| 52 | return 0; | ||
| 53 | } | ||
| 54 | |||
| 55 | static inline int pinctrl_gpio_direction_output(unsigned gpio) | ||
| 56 | { | ||
| 57 | return 0; | ||
| 58 | } | ||
| 59 | |||
| 60 | static inline struct pinctrl * __must_check pinctrl_get(struct device *dev) | ||
| 61 | { | ||
| 62 | return NULL; | ||
| 63 | } | ||
| 64 | |||
| 65 | static inline void pinctrl_put(struct pinctrl *p) | ||
| 66 | { | ||
| 67 | } | ||
| 68 | |||
| 69 | static inline struct pinctrl_state * __must_check pinctrl_lookup_state( | ||
| 70 | struct pinctrl *p, | ||
| 71 | const char *name) | ||
| 72 | { | ||
| 73 | return NULL; | ||
| 74 | } | ||
| 75 | |||
| 76 | static inline int pinctrl_select_state(struct pinctrl *p, | ||
| 77 | struct pinctrl_state *s) | ||
| 78 | { | ||
| 79 | return 0; | ||
| 80 | } | ||
| 81 | |||
| 82 | #endif /* CONFIG_PINCTRL */ | ||
| 83 | |||
| 84 | static inline struct pinctrl * __must_check pinctrl_get_select( | ||
| 85 | struct device *dev, const char *name) | ||
| 86 | { | ||
| 87 | struct pinctrl *p; | ||
| 88 | struct pinctrl_state *s; | ||
| 89 | int ret; | ||
| 90 | |||
| 91 | p = pinctrl_get(dev); | ||
| 92 | if (IS_ERR(p)) | ||
| 93 | return p; | ||
| 94 | |||
| 95 | s = pinctrl_lookup_state(p, name); | ||
| 96 | if (IS_ERR(s)) { | ||
| 97 | pinctrl_put(p); | ||
| 98 | return ERR_PTR(PTR_ERR(s)); | ||
| 99 | } | ||
| 100 | |||
| 101 | ret = pinctrl_select_state(p, s); | ||
| 102 | if (ret < 0) { | ||
| 103 | pinctrl_put(p); | ||
| 104 | return ERR_PTR(ret); | ||
| 105 | } | ||
| 106 | |||
| 107 | return p; | ||
| 108 | } | ||
| 109 | |||
| 110 | static inline struct pinctrl * __must_check pinctrl_get_select_default( | ||
| 111 | struct device *dev) | ||
| 112 | { | ||
| 113 | return pinctrl_get_select(dev, PINCTRL_STATE_DEFAULT); | ||
| 114 | } | ||
| 115 | |||
| 116 | #ifdef CONFIG_PINCONF | ||
| 117 | |||
| 118 | extern int pin_config_get(const char *dev_name, const char *name, | ||
| 119 | unsigned long *config); | ||
| 120 | extern int pin_config_set(const char *dev_name, const char *name, | ||
| 121 | unsigned long config); | ||
| 122 | extern int pin_config_group_get(const char *dev_name, | ||
| 123 | const char *pin_group, | ||
| 124 | unsigned long *config); | ||
| 125 | extern int pin_config_group_set(const char *dev_name, | ||
| 126 | const char *pin_group, | ||
| 127 | unsigned long config); | ||
| 128 | |||
| 129 | #else | ||
| 130 | |||
| 131 | static inline int pin_config_get(const char *dev_name, const char *name, | ||
| 132 | unsigned long *config) | ||
| 133 | { | ||
| 134 | return 0; | ||
| 135 | } | ||
| 136 | |||
| 137 | static inline int pin_config_set(const char *dev_name, const char *name, | ||
| 138 | unsigned long config) | ||
| 139 | { | ||
| 140 | return 0; | ||
| 141 | } | ||
| 142 | |||
| 143 | static inline int pin_config_group_get(const char *dev_name, | ||
| 144 | const char *pin_group, | ||
| 145 | unsigned long *config) | ||
| 146 | { | ||
| 147 | return 0; | ||
| 148 | } | ||
| 149 | |||
| 150 | static inline int pin_config_group_set(const char *dev_name, | ||
| 151 | const char *pin_group, | ||
| 152 | unsigned long config) | ||
| 153 | { | ||
| 154 | return 0; | ||
| 155 | } | ||
| 156 | |||
| 157 | #endif | ||
| 158 | |||
| 159 | #endif /* __LINUX_PINCTRL_CONSUMER_H */ | ||
diff --git a/include/linux/pinctrl/machine.h b/include/linux/pinctrl/machine.h index d0aecb7f6fb9..fee4349364f7 100644 --- a/include/linux/pinctrl/machine.h +++ b/include/linux/pinctrl/machine.h | |||
| @@ -9,87 +9,153 @@ | |||
| 9 | * | 9 | * |
| 10 | * License terms: GNU General Public License (GPL) version 2 | 10 | * License terms: GNU General Public License (GPL) version 2 |
| 11 | */ | 11 | */ |
| 12 | #ifndef __LINUX_PINMUX_MACHINE_H | 12 | #ifndef __LINUX_PINCTRL_MACHINE_H |
| 13 | #define __LINUX_PINMUX_MACHINE_H | 13 | #define __LINUX_PINCTRL_MACHINE_H |
| 14 | |||
| 15 | #include "pinctrl-state.h" | ||
| 16 | |||
| 17 | enum pinctrl_map_type { | ||
| 18 | PIN_MAP_TYPE_INVALID, | ||
| 19 | PIN_MAP_TYPE_DUMMY_STATE, | ||
| 20 | PIN_MAP_TYPE_MUX_GROUP, | ||
| 21 | PIN_MAP_TYPE_CONFIGS_PIN, | ||
| 22 | PIN_MAP_TYPE_CONFIGS_GROUP, | ||
| 23 | }; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * struct pinctrl_map_mux - mapping table content for MAP_TYPE_MUX_GROUP | ||
| 27 | * @group: the name of the group whose mux function is to be configured. This | ||
| 28 | * field may be left NULL, and the first applicable group for the function | ||
| 29 | * will be used. | ||
| 30 | * @function: the mux function to select for the group | ||
| 31 | */ | ||
| 32 | struct pinctrl_map_mux { | ||
| 33 | const char *group; | ||
| 34 | const char *function; | ||
| 35 | }; | ||
| 14 | 36 | ||
| 15 | /** | 37 | /** |
| 16 | * struct pinmux_map - boards/machines shall provide this map for devices | 38 | * struct pinctrl_map_configs - mapping table content for MAP_TYPE_CONFIGS_* |
| 39 | * @group_or_pin: the name of the pin or group whose configuration parameters | ||
| 40 | * are to be configured. | ||
| 41 | * @configs: a pointer to an array of config parameters/values to program into | ||
| 42 | * hardware. Each individual pin controller defines the format and meaning | ||
| 43 | * of config parameters. | ||
| 44 | * @num_configs: the number of entries in array @configs | ||
| 45 | */ | ||
| 46 | struct pinctrl_map_configs { | ||
| 47 | const char *group_or_pin; | ||
| 48 | unsigned long *configs; | ||
| 49 | unsigned num_configs; | ||
| 50 | }; | ||
| 51 | |||
| 52 | /** | ||
| 53 | * struct pinctrl_map - boards/machines shall provide this map for devices | ||
| 54 | * @dev_name: the name of the device using this specific mapping, the name | ||
| 55 | * must be the same as in your struct device*. If this name is set to the | ||
| 56 | * same name as the pin controllers own dev_name(), the map entry will be | ||
| 57 | * hogged by the driver itself upon registration | ||
| 17 | * @name: the name of this specific map entry for the particular machine. | 58 | * @name: the name of this specific map entry for the particular machine. |
| 18 | * This is the second parameter passed to pinmux_get() when you want | 59 | * This is the parameter passed to pinmux_lookup_state() |
| 19 | * to have several mappings to the same device | 60 | * @type: the type of mapping table entry |
| 20 | * @ctrl_dev: the pin control device to be used by this mapping, may be NULL | ||
| 21 | * if you provide .ctrl_dev_name instead (this is more common) | ||
| 22 | * @ctrl_dev_name: the name of the device controlling this specific mapping, | 61 | * @ctrl_dev_name: the name of the device controlling this specific mapping, |
| 23 | * the name must be the same as in your struct device*, may be NULL if | 62 | * the name must be the same as in your struct device*. This field is not |
| 24 | * you provide .ctrl_dev instead | 63 | * used for PIN_MAP_TYPE_DUMMY_STATE |
| 25 | * @function: a function in the driver to use for this mapping, the driver | 64 | * @data: Data specific to the mapping type |
| 26 | * will lookup the function referenced by this ID on the specified | ||
| 27 | * pin control device | ||
| 28 | * @group: sometimes a function can map to different pin groups, so this | ||
| 29 | * selects a certain specific pin group to activate for the function, if | ||
| 30 | * left as NULL, the first applicable group will be used | ||
| 31 | * @dev: the device using this specific mapping, may be NULL if you provide | ||
| 32 | * .dev_name instead (this is more common) | ||
| 33 | * @dev_name: the name of the device using this specific mapping, the name | ||
| 34 | * must be the same as in your struct device*, may be NULL if you | ||
| 35 | * provide .dev instead | ||
| 36 | * @hog_on_boot: if this is set to true, the pin control subsystem will itself | ||
| 37 | * hog the mappings as the pinmux device drivers are attached, so this is | ||
| 38 | * typically used with system maps (mux mappings without an assigned | ||
| 39 | * device) that you want to get hogged and enabled by default as soon as | ||
| 40 | * a pinmux device supporting it is registered. These maps will not be | ||
| 41 | * disabled and put until the system shuts down. | ||
| 42 | */ | 65 | */ |
| 43 | struct pinmux_map { | 66 | struct pinctrl_map { |
| 67 | const char *dev_name; | ||
| 44 | const char *name; | 68 | const char *name; |
| 45 | struct device *ctrl_dev; | 69 | enum pinctrl_map_type type; |
| 46 | const char *ctrl_dev_name; | 70 | const char *ctrl_dev_name; |
| 47 | const char *function; | 71 | union { |
| 48 | const char *group; | 72 | struct pinctrl_map_mux mux; |
| 49 | struct device *dev; | 73 | struct pinctrl_map_configs configs; |
| 50 | const char *dev_name; | 74 | } data; |
| 51 | bool hog_on_boot; | ||
| 52 | }; | 75 | }; |
| 53 | 76 | ||
| 54 | /* | 77 | /* Convenience macros to create mapping table entries */ |
| 55 | * Convenience macro to set a simple map from a certain pin controller and a | ||
| 56 | * certain function to a named device | ||
| 57 | */ | ||
| 58 | #define PINMUX_MAP(a, b, c, d) \ | ||
| 59 | { .name = a, .ctrl_dev_name = b, .function = c, .dev_name = d } | ||
| 60 | 78 | ||
| 61 | /* | 79 | #define PIN_MAP_DUMMY_STATE(dev, state) \ |
| 62 | * Convenience macro to map a system function onto a certain pinctrl device. | 80 | { \ |
| 63 | * System functions are not assigned to a particular device. | 81 | .dev_name = dev, \ |
| 64 | */ | 82 | .name = state, \ |
| 65 | #define PINMUX_MAP_SYS(a, b, c) \ | 83 | .type = PIN_MAP_TYPE_DUMMY_STATE, \ |
| 66 | { .name = a, .ctrl_dev_name = b, .function = c } | 84 | } |
| 67 | 85 | ||
| 68 | /* | 86 | #define PIN_MAP_MUX_GROUP(dev, state, pinctrl, grp, func) \ |
| 69 | * Convenience macro to map a system function onto a certain pinctrl device, | 87 | { \ |
| 70 | * to be hogged by the pinmux core until the system shuts down. | 88 | .dev_name = dev, \ |
| 71 | */ | 89 | .name = state, \ |
| 72 | #define PINMUX_MAP_SYS_HOG(a, b, c) \ | 90 | .type = PIN_MAP_TYPE_MUX_GROUP, \ |
| 73 | { .name = a, .ctrl_dev_name = b, .function = c, \ | 91 | .ctrl_dev_name = pinctrl, \ |
| 74 | .hog_on_boot = true } | 92 | .data.mux = { \ |
| 93 | .group = grp, \ | ||
| 94 | .function = func, \ | ||
| 95 | }, \ | ||
| 96 | } | ||
| 75 | 97 | ||
| 76 | /* | 98 | #define PIN_MAP_MUX_GROUP_DEFAULT(dev, pinctrl, grp, func) \ |
| 77 | * Convenience macro to map a system function onto a certain pinctrl device | 99 | PIN_MAP_MUX_GROUP(dev, PINCTRL_STATE_DEFAULT, pinctrl, grp, func) |
| 78 | * using a specified group, to be hogged by the pinmux core until the system | 100 | |
| 79 | * shuts down. | 101 | #define PIN_MAP_MUX_GROUP_HOG(dev, state, grp, func) \ |
| 80 | */ | 102 | PIN_MAP_MUX_GROUP(dev, state, dev, grp, func) |
| 81 | #define PINMUX_MAP_SYS_HOG_GROUP(a, b, c, d) \ | 103 | |
| 82 | { .name = a, .ctrl_dev_name = b, .function = c, .group = d, \ | 104 | #define PIN_MAP_MUX_GROUP_HOG_DEFAULT(dev, grp, func) \ |
| 83 | .hog_on_boot = true } | 105 | PIN_MAP_MUX_GROUP(dev, PINCTRL_STATE_DEFAULT, dev, grp, func) |
| 106 | |||
| 107 | #define PIN_MAP_CONFIGS_PIN(dev, state, pinctrl, pin, cfgs) \ | ||
| 108 | { \ | ||
| 109 | .dev_name = dev, \ | ||
| 110 | .name = state, \ | ||
| 111 | .type = PIN_MAP_TYPE_CONFIGS_PIN, \ | ||
| 112 | .ctrl_dev_name = pinctrl, \ | ||
| 113 | .data.configs = { \ | ||
| 114 | .group_or_pin = pin, \ | ||
| 115 | .configs = cfgs, \ | ||
| 116 | .num_configs = ARRAY_SIZE(cfgs), \ | ||
| 117 | }, \ | ||
| 118 | } | ||
| 119 | |||
| 120 | #define PIN_MAP_CONFIGS_PIN_DEFAULT(dev, pinctrl, pin, cfgs) \ | ||
| 121 | PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, pinctrl, pin, cfgs) | ||
| 122 | |||
| 123 | #define PIN_MAP_CONFIGS_PIN_HOG(dev, state, pin, cfgs) \ | ||
| 124 | PIN_MAP_CONFIGS_PIN(dev, state, dev, pin, cfgs) | ||
| 125 | |||
| 126 | #define PIN_MAP_CONFIGS_PIN_HOG_DEFAULT(dev, pin, cfgs) \ | ||
| 127 | PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, dev, pin, cfgs) | ||
| 128 | |||
| 129 | #define PIN_MAP_CONFIGS_GROUP(dev, state, pinctrl, grp, cfgs) \ | ||
| 130 | { \ | ||
| 131 | .dev_name = dev, \ | ||
| 132 | .name = state, \ | ||
| 133 | .type = PIN_MAP_TYPE_CONFIGS_GROUP, \ | ||
| 134 | .ctrl_dev_name = pinctrl, \ | ||
| 135 | .data.configs = { \ | ||
| 136 | .group_or_pin = grp, \ | ||
| 137 | .configs = cfgs, \ | ||
| 138 | .num_configs = ARRAY_SIZE(cfgs), \ | ||
| 139 | }, \ | ||
| 140 | } | ||
| 141 | |||
| 142 | #define PIN_MAP_CONFIGS_GROUP_DEFAULT(dev, pinctrl, grp, cfgs) \ | ||
| 143 | PIN_MAP_CONFIGS_GROUP(dev, PINCTRL_STATE_DEFAULT, pinctrl, grp, cfgs) | ||
| 144 | |||
| 145 | #define PIN_MAP_CONFIGS_GROUP_HOG(dev, state, grp, cfgs) \ | ||
| 146 | PIN_MAP_CONFIGS_GROUP(dev, state, dev, grp, cfgs) | ||
| 147 | |||
| 148 | #define PIN_MAP_CONFIGS_GROUP_HOG_DEFAULT(dev, grp, cfgs) \ | ||
| 149 | PIN_MAP_CONFIGS_GROUP(dev, PINCTRL_STATE_DEFAULT, dev, grp, cfgs) | ||
| 84 | 150 | ||
| 85 | #ifdef CONFIG_PINMUX | 151 | #ifdef CONFIG_PINMUX |
| 86 | 152 | ||
| 87 | extern int pinmux_register_mappings(struct pinmux_map const *map, | 153 | extern int pinctrl_register_mappings(struct pinctrl_map const *map, |
| 88 | unsigned num_maps); | 154 | unsigned num_maps); |
| 89 | 155 | ||
| 90 | #else | 156 | #else |
| 91 | 157 | ||
| 92 | static inline int pinmux_register_mappings(struct pinmux_map const *map, | 158 | static inline int pinctrl_register_mappings(struct pinctrl_map const *map, |
| 93 | unsigned num_maps) | 159 | unsigned num_maps) |
| 94 | { | 160 | { |
| 95 | return 0; | 161 | return 0; |
diff --git a/include/linux/pinctrl/pinconf-generic.h b/include/linux/pinctrl/pinconf-generic.h new file mode 100644 index 000000000000..4f0abb9f1c09 --- /dev/null +++ b/include/linux/pinctrl/pinconf-generic.h | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /* | ||
| 2 | * Interface the generic pinconfig portions of the pinctrl subsystem | ||
| 3 | * | ||
| 4 | * Copyright (C) 2011 ST-Ericsson SA | ||
| 5 | * Written on behalf of Linaro for ST-Ericsson | ||
| 6 | * This interface is used in the core to keep track of pins. | ||
| 7 | * | ||
| 8 | * Author: Linus Walleij <linus.walleij@linaro.org> | ||
| 9 | * | ||
| 10 | * License terms: GNU General Public License (GPL) version 2 | ||
| 11 | */ | ||
| 12 | #ifndef __LINUX_PINCTRL_PINCONF_GENERIC_H | ||
| 13 | #define __LINUX_PINCTRL_PINCONF_GENERIC_H | ||
| 14 | |||
| 15 | /* | ||
| 16 | * You shouldn't even be able to compile with these enums etc unless you're | ||
| 17 | * using generic pin config. That is why this is defined out. | ||
| 18 | */ | ||
| 19 | #ifdef CONFIG_GENERIC_PINCONF | ||
| 20 | |||
| 21 | /** | ||
| 22 | * enum pin_config_param - possible pin configuration parameters | ||
| 23 | * @PIN_CONFIG_BIAS_DISABLE: disable any pin bias on the pin, a | ||
| 24 | * transition from say pull-up to pull-down implies that you disable | ||
| 25 | * pull-up in the process, this setting disables all biasing. | ||
| 26 | * @PIN_CONFIG_BIAS_HIGH_IMPEDANCE: the pin will be set to a high impedance | ||
| 27 | * mode, also know as "third-state" (tristate) or "high-Z" or "floating". | ||
| 28 | * On output pins this effectively disconnects the pin, which is useful | ||
| 29 | * if for example some other pin is going to drive the signal connected | ||
| 30 | * to it for a while. Pins used for input are usually always high | ||
| 31 | * impedance. | ||
| 32 | * @PIN_CONFIG_BIAS_PULL_UP: the pin will be pulled up (usually with high | ||
| 33 | * impedance to VDD). If the argument is != 0 pull-up is enabled, | ||
| 34 | * if it is 0, pull-up is disabled. | ||
| 35 | * @PIN_CONFIG_BIAS_PULL_DOWN: the pin will be pulled down (usually with high | ||
| 36 | * impedance to GROUND). If the argument is != 0 pull-down is enabled, | ||
| 37 | * if it is 0, pull-down is disabled. | ||
| 38 | * @PIN_CONFIG_DRIVE_PUSH_PULL: the pin will be driven actively high and | ||
| 39 | * low, this is the most typical case and is typically achieved with two | ||
| 40 | * active transistors on the output. Sending this config will enabale | ||
| 41 | * push-pull mode, the argument is ignored. | ||
| 42 | * @PIN_CONFIG_DRIVE_OPEN_DRAIN: the pin will be driven with open drain (open | ||
| 43 | * collector) which means it is usually wired with other output ports | ||
| 44 | * which are then pulled up with an external resistor. Sending this | ||
| 45 | * config will enabale open drain mode, the argument is ignored. | ||
| 46 | * @PIN_CONFIG_DRIVE_OPEN_SOURCE: the pin will be driven with open source | ||
| 47 | * (open emitter). Sending this config will enabale open drain mode, the | ||
| 48 | * argument is ignored. | ||
| 49 | * @PIN_CONFIG_INPUT_SCHMITT: this will configure an input pin to run in | ||
| 50 | * schmitt-trigger mode. If the schmitt-trigger has adjustable hysteresis, | ||
| 51 | * the threshold value is given on a custom format as argument when | ||
| 52 | * setting pins to this mode. The argument zero turns the schmitt trigger | ||
| 53 | * off. | ||
| 54 | * @PIN_CONFIG_INPUT_DEBOUNCE: this will configure the pin to debounce mode, | ||
| 55 | * which means it will wait for signals to settle when reading inputs. The | ||
| 56 | * argument gives the debounce time on a custom format. Setting the | ||
| 57 | * argument to zero turns debouncing off. | ||
| 58 | * @PIN_CONFIG_POWER_SOURCE: if the pin can select between different power | ||
| 59 | * supplies, the argument to this parameter (on a custom format) tells | ||
| 60 | * the driver which alternative power source to use. | ||
| 61 | * @PIN_CONFIG_LOW_POWER_MODE: this will configure the pin for low power | ||
| 62 | * operation, if several modes of operation are supported these can be | ||
| 63 | * passed in the argument on a custom form, else just use argument 1 | ||
| 64 | * to indicate low power mode, argument 0 turns low power mode off. | ||
| 65 | * @PIN_CONFIG_END: this is the last enumerator for pin configurations, if | ||
| 66 | * you need to pass in custom configurations to the pin controller, use | ||
| 67 | * PIN_CONFIG_END+1 as the base offset. | ||
| 68 | */ | ||
| 69 | enum pin_config_param { | ||
| 70 | PIN_CONFIG_BIAS_DISABLE, | ||
| 71 | PIN_CONFIG_BIAS_HIGH_IMPEDANCE, | ||
| 72 | PIN_CONFIG_BIAS_PULL_UP, | ||
| 73 | PIN_CONFIG_BIAS_PULL_DOWN, | ||
| 74 | PIN_CONFIG_DRIVE_PUSH_PULL, | ||
| 75 | PIN_CONFIG_DRIVE_OPEN_DRAIN, | ||
| 76 | PIN_CONFIG_DRIVE_OPEN_SOURCE, | ||
| 77 | PIN_CONFIG_INPUT_SCHMITT, | ||
| 78 | PIN_CONFIG_INPUT_DEBOUNCE, | ||
| 79 | PIN_CONFIG_POWER_SOURCE, | ||
| 80 | PIN_CONFIG_LOW_POWER_MODE, | ||
| 81 | PIN_CONFIG_END = 0x7FFF, | ||
| 82 | }; | ||
| 83 | |||
| 84 | /* | ||
| 85 | * Helpful configuration macro to be used in tables etc. | ||
| 86 | */ | ||
| 87 | #define PIN_CONF_PACKED(p, a) ((a << 16) | ((unsigned long) p & 0xffffUL)) | ||
| 88 | |||
| 89 | /* | ||
| 90 | * The following inlines stuffs a configuration parameter and data value | ||
| 91 | * into and out of an unsigned long argument, as used by the generic pin config | ||
| 92 | * system. We put the parameter in the lower 16 bits and the argument in the | ||
| 93 | * upper 16 bits. | ||
| 94 | */ | ||
| 95 | |||
| 96 | static inline enum pin_config_param pinconf_to_config_param(unsigned long config) | ||
| 97 | { | ||
| 98 | return (enum pin_config_param) (config & 0xffffUL); | ||
| 99 | } | ||
| 100 | |||
| 101 | static inline u16 pinconf_to_config_argument(unsigned long config) | ||
| 102 | { | ||
| 103 | return (enum pin_config_param) ((config >> 16) & 0xffffUL); | ||
| 104 | } | ||
| 105 | |||
| 106 | static inline unsigned long pinconf_to_config_packed(enum pin_config_param param, | ||
| 107 | u16 argument) | ||
| 108 | { | ||
| 109 | return PIN_CONF_PACKED(param, argument); | ||
| 110 | } | ||
| 111 | |||
| 112 | #endif /* CONFIG_GENERIC_PINCONF */ | ||
| 113 | |||
| 114 | #endif /* __LINUX_PINCTRL_PINCONF_GENERIC_H */ | ||
diff --git a/include/linux/pinctrl/pinconf.h b/include/linux/pinctrl/pinconf.h index 477922cf043a..ec431f03362d 100644 --- a/include/linux/pinctrl/pinconf.h +++ b/include/linux/pinctrl/pinconf.h | |||
| @@ -20,6 +20,8 @@ struct seq_file; | |||
| 20 | /** | 20 | /** |
| 21 | * struct pinconf_ops - pin config operations, to be implemented by | 21 | * struct pinconf_ops - pin config operations, to be implemented by |
| 22 | * pin configuration capable drivers. | 22 | * pin configuration capable drivers. |
| 23 | * @is_generic: for pin controllers that want to use the generic interface, | ||
| 24 | * this flag tells the framework that it's generic. | ||
| 23 | * @pin_config_get: get the config of a certain pin, if the requested config | 25 | * @pin_config_get: get the config of a certain pin, if the requested config |
| 24 | * is not available on this controller this should return -ENOTSUPP | 26 | * is not available on this controller this should return -ENOTSUPP |
| 25 | * and if it is available but disabled it should return -EINVAL | 27 | * and if it is available but disabled it should return -EINVAL |
| @@ -33,6 +35,9 @@ struct seq_file; | |||
| 33 | * per-device info for a certain group in debugfs | 35 | * per-device info for a certain group in debugfs |
| 34 | */ | 36 | */ |
| 35 | struct pinconf_ops { | 37 | struct pinconf_ops { |
| 38 | #ifdef CONFIG_GENERIC_PINCONF | ||
| 39 | bool is_generic; | ||
| 40 | #endif | ||
| 36 | int (*pin_config_get) (struct pinctrl_dev *pctldev, | 41 | int (*pin_config_get) (struct pinctrl_dev *pctldev, |
| 37 | unsigned pin, | 42 | unsigned pin, |
| 38 | unsigned long *config); | 43 | unsigned long *config); |
| @@ -53,45 +58,6 @@ struct pinconf_ops { | |||
| 53 | unsigned selector); | 58 | unsigned selector); |
| 54 | }; | 59 | }; |
| 55 | 60 | ||
| 56 | extern int pin_config_get(const char *dev_name, const char *name, | ||
| 57 | unsigned long *config); | ||
| 58 | extern int pin_config_set(const char *dev_name, const char *name, | ||
| 59 | unsigned long config); | ||
| 60 | extern int pin_config_group_get(const char *dev_name, | ||
| 61 | const char *pin_group, | ||
| 62 | unsigned long *config); | ||
| 63 | extern int pin_config_group_set(const char *dev_name, | ||
| 64 | const char *pin_group, | ||
| 65 | unsigned long config); | ||
| 66 | |||
| 67 | #else | ||
| 68 | |||
| 69 | static inline int pin_config_get(const char *dev_name, const char *name, | ||
| 70 | unsigned long *config) | ||
| 71 | { | ||
| 72 | return 0; | ||
| 73 | } | ||
| 74 | |||
| 75 | static inline int pin_config_set(const char *dev_name, const char *name, | ||
| 76 | unsigned long config) | ||
| 77 | { | ||
| 78 | return 0; | ||
| 79 | } | ||
| 80 | |||
| 81 | static inline int pin_config_group_get(const char *dev_name, | ||
| 82 | const char *pin_group, | ||
| 83 | unsigned long *config) | ||
| 84 | { | ||
| 85 | return 0; | ||
| 86 | } | ||
| 87 | |||
| 88 | static inline int pin_config_group_set(const char *dev_name, | ||
| 89 | const char *pin_group, | ||
| 90 | unsigned long config) | ||
| 91 | { | ||
| 92 | return 0; | ||
| 93 | } | ||
| 94 | |||
| 95 | #endif | 61 | #endif |
| 96 | 62 | ||
| 97 | #endif /* __LINUX_PINCTRL_PINCONF_H */ | 63 | #endif /* __LINUX_PINCTRL_PINCONF_H */ |
diff --git a/include/linux/pinctrl/pinctrl-state.h b/include/linux/pinctrl/pinctrl-state.h new file mode 100644 index 000000000000..3920e28b4da7 --- /dev/null +++ b/include/linux/pinctrl/pinctrl-state.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | /* | ||
| 2 | * Standard pin control state definitions | ||
| 3 | */ | ||
| 4 | |||
| 5 | #define PINCTRL_STATE_DEFAULT "default" | ||
| 6 | #define PINCTRL_STATE_IDLE "idle" | ||
diff --git a/include/linux/pinctrl/pinctrl.h b/include/linux/pinctrl/pinctrl.h index 8bd22ee7aa09..4e9f0788c221 100644 --- a/include/linux/pinctrl/pinctrl.h +++ b/include/linux/pinctrl/pinctrl.h | |||
| @@ -15,10 +15,11 @@ | |||
| 15 | #ifdef CONFIG_PINCTRL | 15 | #ifdef CONFIG_PINCTRL |
| 16 | 16 | ||
| 17 | #include <linux/radix-tree.h> | 17 | #include <linux/radix-tree.h> |
| 18 | #include <linux/spinlock.h> | ||
| 19 | #include <linux/list.h> | 18 | #include <linux/list.h> |
| 20 | #include <linux/seq_file.h> | 19 | #include <linux/seq_file.h> |
| 20 | #include "pinctrl-state.h" | ||
| 21 | 21 | ||
| 22 | struct device; | ||
| 22 | struct pinctrl_dev; | 23 | struct pinctrl_dev; |
| 23 | struct pinmux_ops; | 24 | struct pinmux_ops; |
| 24 | struct pinconf_ops; | 25 | struct pinconf_ops; |
diff --git a/include/linux/pinctrl/pinmux.h b/include/linux/pinctrl/pinmux.h index 937b3e2fa36f..47e9237edd47 100644 --- a/include/linux/pinctrl/pinmux.h +++ b/include/linux/pinctrl/pinmux.h | |||
| @@ -16,9 +16,6 @@ | |||
| 16 | #include <linux/seq_file.h> | 16 | #include <linux/seq_file.h> |
| 17 | #include "pinctrl.h" | 17 | #include "pinctrl.h" |
| 18 | 18 | ||
| 19 | /* This struct is private to the core and should be regarded as a cookie */ | ||
| 20 | struct pinmux; | ||
| 21 | |||
| 22 | #ifdef CONFIG_PINMUX | 19 | #ifdef CONFIG_PINMUX |
| 23 | 20 | ||
| 24 | struct pinctrl_dev; | 21 | struct pinctrl_dev; |
| @@ -88,55 +85,6 @@ struct pinmux_ops { | |||
| 88 | bool input); | 85 | bool input); |
| 89 | }; | 86 | }; |
| 90 | 87 | ||
| 91 | /* External interface to pinmux */ | ||
| 92 | extern int pinmux_request_gpio(unsigned gpio); | ||
| 93 | extern void pinmux_free_gpio(unsigned gpio); | ||
| 94 | extern int pinmux_gpio_direction_input(unsigned gpio); | ||
| 95 | extern int pinmux_gpio_direction_output(unsigned gpio); | ||
| 96 | extern struct pinmux * __must_check pinmux_get(struct device *dev, const char *name); | ||
| 97 | extern void pinmux_put(struct pinmux *pmx); | ||
| 98 | extern int pinmux_enable(struct pinmux *pmx); | ||
| 99 | extern void pinmux_disable(struct pinmux *pmx); | ||
| 100 | |||
| 101 | #else /* !CONFIG_PINMUX */ | ||
| 102 | |||
| 103 | static inline int pinmux_request_gpio(unsigned gpio) | ||
| 104 | { | ||
| 105 | return 0; | ||
| 106 | } | ||
| 107 | |||
| 108 | static inline void pinmux_free_gpio(unsigned gpio) | ||
| 109 | { | ||
| 110 | } | ||
| 111 | |||
| 112 | static inline int pinmux_gpio_direction_input(unsigned gpio) | ||
| 113 | { | ||
| 114 | return 0; | ||
| 115 | } | ||
| 116 | |||
| 117 | static inline int pinmux_gpio_direction_output(unsigned gpio) | ||
| 118 | { | ||
| 119 | return 0; | ||
| 120 | } | ||
| 121 | |||
| 122 | static inline struct pinmux * __must_check pinmux_get(struct device *dev, const char *name) | ||
| 123 | { | ||
| 124 | return NULL; | ||
| 125 | } | ||
| 126 | |||
| 127 | static inline void pinmux_put(struct pinmux *pmx) | ||
| 128 | { | ||
| 129 | } | ||
| 130 | |||
| 131 | static inline int pinmux_enable(struct pinmux *pmx) | ||
| 132 | { | ||
| 133 | return 0; | ||
| 134 | } | ||
| 135 | |||
| 136 | static inline void pinmux_disable(struct pinmux *pmx) | ||
| 137 | { | ||
| 138 | } | ||
| 139 | |||
| 140 | #endif /* CONFIG_PINMUX */ | 88 | #endif /* CONFIG_PINMUX */ |
| 141 | 89 | ||
| 142 | #endif /* __LINUX_PINCTRL_PINMUX_H */ | 90 | #endif /* __LINUX_PINCTRL_PINMUX_H */ |
