core.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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. #include <linux/kref.h>
  12. #include <linux/mutex.h>
  13. #include <linux/radix-tree.h>
  14. #include <linux/pinctrl/pinconf.h>
  15. #include <linux/pinctrl/machine.h>
  16. struct pinctrl_gpio_range;
  17. /**
  18. * struct pinctrl_dev - pin control class device
  19. * @node: node to include this pin controller in the global pin controller list
  20. * @desc: the pin controller descriptor supplied when initializing this pin
  21. * controller
  22. * @pin_desc_tree: each pin descriptor for this pin controller is stored in
  23. * this radix tree
  24. * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
  25. * ranges are added to this list at runtime
  26. * @dev: the device entry for this pin controller
  27. * @owner: module providing the pin controller, used for refcounting
  28. * @driver_data: driver data for drivers registering to the pin controller
  29. * subsystem
  30. * @p: result of pinctrl_get() for this device
  31. * @hog_default: default state for pins hogged by this device
  32. * @hog_sleep: sleep state for pins hogged by this device
  33. * @mutex: mutex taken on each pin controller specific action
  34. * @device_root: debugfs root for this device
  35. */
  36. struct pinctrl_dev {
  37. struct list_head node;
  38. struct pinctrl_desc *desc;
  39. struct radix_tree_root pin_desc_tree;
  40. struct list_head gpio_ranges;
  41. struct device *dev;
  42. struct module *owner;
  43. void *driver_data;
  44. struct pinctrl *p;
  45. struct pinctrl_state *hog_default;
  46. struct pinctrl_state *hog_sleep;
  47. struct mutex mutex;
  48. #ifdef CONFIG_DEBUG_FS
  49. struct dentry *device_root;
  50. #endif
  51. };
  52. /**
  53. * struct pinctrl - per-device pin control state holder
  54. * @node: global list node
  55. * @dev: the device using this pin control handle
  56. * @states: a list of states for this device
  57. * @state: the current state
  58. * @dt_maps: the mapping table chunks dynamically parsed from device tree for
  59. * this device, if any
  60. * @users: reference count
  61. */
  62. struct pinctrl {
  63. struct list_head node;
  64. struct device *dev;
  65. struct list_head states;
  66. struct pinctrl_state *state;
  67. struct list_head dt_maps;
  68. struct kref users;
  69. };
  70. /**
  71. * struct pinctrl_state - a pinctrl state for a device
  72. * @node: list node for struct pinctrl's @states field
  73. * @name: the name of this state
  74. * @settings: a list of settings for this state
  75. */
  76. struct pinctrl_state {
  77. struct list_head node;
  78. const char *name;
  79. struct list_head settings;
  80. };
  81. /**
  82. * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
  83. * @group: the group selector to program
  84. * @func: the function selector to program
  85. */
  86. struct pinctrl_setting_mux {
  87. unsigned group;
  88. unsigned func;
  89. };
  90. /**
  91. * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
  92. * @group_or_pin: the group selector or pin ID to program
  93. * @configs: a pointer to an array of config parameters/values to program into
  94. * hardware. Each individual pin controller defines the format and meaning
  95. * of config parameters.
  96. * @num_configs: the number of entries in array @configs
  97. */
  98. struct pinctrl_setting_configs {
  99. unsigned group_or_pin;
  100. unsigned long *configs;
  101. unsigned num_configs;
  102. };
  103. /**
  104. * struct pinctrl_setting - an individual mux or config setting
  105. * @node: list node for struct pinctrl_settings's @settings field
  106. * @type: the type of setting
  107. * @pctldev: pin control device handling to be programmed. Not used for
  108. * PIN_MAP_TYPE_DUMMY_STATE.
  109. * @dev_name: the name of the device using this state
  110. * @data: Data specific to the setting type
  111. */
  112. struct pinctrl_setting {
  113. struct list_head node;
  114. enum pinctrl_map_type type;
  115. struct pinctrl_dev *pctldev;
  116. const char *dev_name;
  117. union {
  118. struct pinctrl_setting_mux mux;
  119. struct pinctrl_setting_configs configs;
  120. } data;
  121. };
  122. /**
  123. * struct pin_desc - pin descriptor for each physical pin in the arch
  124. * @pctldev: corresponding pin control device
  125. * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
  126. * datasheet or such
  127. * @dynamic_name: if the name of this pin was dynamically allocated
  128. * @mux_usecount: If zero, the pin is not claimed, and @owner should be NULL.
  129. * If non-zero, this pin is claimed by @owner. This field is an integer
  130. * rather than a boolean, since pinctrl_get() might process multiple
  131. * mapping table entries that refer to, and hence claim, the same group
  132. * or pin, and each of these will increment the @usecount.
  133. * @mux_owner: The name of device that called pinctrl_get().
  134. * @mux_setting: The most recent selected mux setting for this pin, if any.
  135. * @gpio_owner: If pinctrl_request_gpio() was called for this pin, this is
  136. * the name of the GPIO that "owns" this pin.
  137. */
  138. struct pin_desc {
  139. struct pinctrl_dev *pctldev;
  140. const char *name;
  141. bool dynamic_name;
  142. /* These fields only added when supporting pinmux drivers */
  143. #ifdef CONFIG_PINMUX
  144. unsigned mux_usecount;
  145. const char *mux_owner;
  146. const struct pinctrl_setting_mux *mux_setting;
  147. const char *gpio_owner;
  148. #endif
  149. };
  150. /**
  151. * struct pinctrl_maps - a list item containing part of the mapping table
  152. * @node: mapping table list node
  153. * @maps: array of mapping table entries
  154. * @num_maps: the number of entries in @maps
  155. */
  156. struct pinctrl_maps {
  157. struct list_head node;
  158. struct pinctrl_map const *maps;
  159. unsigned num_maps;
  160. };
  161. struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
  162. struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np);
  163. int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
  164. const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin);
  165. int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
  166. const char *pin_group);
  167. static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
  168. unsigned int pin)
  169. {
  170. return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
  171. }
  172. int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
  173. bool dup);
  174. void pinctrl_unregister_map(struct pinctrl_map const *map);
  175. extern int pinctrl_force_sleep(struct pinctrl_dev *pctldev);
  176. extern int pinctrl_force_default(struct pinctrl_dev *pctldev);
  177. extern struct mutex pinctrl_maps_mutex;
  178. extern struct list_head pinctrl_maps;
  179. #define for_each_maps(_maps_node_, _i_, _map_) \
  180. list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
  181. for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
  182. _i_ < _maps_node_->num_maps; \
  183. _i_++, _map_ = &_maps_node_->maps[_i_])