pinctrl-bindings.txt 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. == Introduction ==
  2. Hardware modules that control pin multiplexing or configuration parameters
  3. such as pull-up/down, tri-state, drive-strength etc are designated as pin
  4. controllers. Each pin controller must be represented as a node in device tree,
  5. just like any other hardware module.
  6. Hardware modules whose signals are affected by pin configuration are
  7. designated client devices. Again, each client device must be represented as a
  8. node in device tree, just like any other hardware module.
  9. For a client device to operate correctly, certain pin controllers must
  10. set up certain specific pin configurations. Some client devices need a
  11. single static pin configuration, e.g. set up during initialization. Others
  12. need to reconfigure pins at run-time, for example to tri-state pins when the
  13. device is inactive. Hence, each client device can define a set of named
  14. states. The number and names of those states is defined by the client device's
  15. own binding.
  16. The common pinctrl bindings defined in this file provide an infrastructure
  17. for client device device tree nodes to map those state names to the pin
  18. configuration used by those states.
  19. Note that pin controllers themselves may also be client devices of themselves.
  20. For example, a pin controller may set up its own "active" state when the
  21. driver loads. This would allow representing a board's static pin configuration
  22. in a single place, rather than splitting it across multiple client device
  23. nodes. The decision to do this or not somewhat rests with the author of
  24. individual board device tree files, and any requirements imposed by the
  25. bindings for the individual client devices in use by that board, i.e. whether
  26. they require certain specific named states for dynamic pin configuration.
  27. == Pinctrl client devices ==
  28. For each client device individually, every pin state is assigned an integer
  29. ID. These numbers start at 0, and are contiguous. For each state ID, a unique
  30. property exists to define the pin configuration. Each state may also be
  31. assigned a name. When names are used, another property exists to map from
  32. those names to the integer IDs.
  33. Each client device's own binding determines the set of states the must be
  34. defined in its device tree node, and whether to define the set of state
  35. IDs that must be provided, or whether to define the set of state names that
  36. must be provided.
  37. Required properties:
  38. pinctrl-0: List of phandles, each pointing at a pin configuration
  39. node. These referenced pin configuration nodes must be child
  40. nodes of the pin controller that they configure. Multiple
  41. entries may exist in this list so that multiple pin
  42. controllers may be configured, or so that a state may be built
  43. from multiple nodes for a single pin controller, each
  44. contributing part of the overall configuration. See the next
  45. section of this document for details of the format of these
  46. pin configuration nodes.
  47. In some cases, it may be useful to define a state, but for it
  48. to be empty. This may be required when a common IP block is
  49. used in an SoC either without a pin controller, or where the
  50. pin controller does not affect the HW module in question. If
  51. the binding for that IP block requires certain pin states to
  52. exist, they must still be defined, but may be left empty.
  53. Optional properties:
  54. pinctrl-1: List of phandles, each pointing at a pin configuration
  55. node within a pin controller.
  56. ...
  57. pinctrl-n: List of phandles, each pointing at a pin configuration
  58. node within a pin controller.
  59. pinctrl-names: The list of names to assign states. List entry 0 defines the
  60. name for integer state ID 0, list entry 1 for state ID 1, and
  61. so on.
  62. For example:
  63. /* For a client device requiring named states */
  64. device {
  65. pinctrl-names = "active", "idle";
  66. pinctrl-0 = <&state_0_node_a>;
  67. pinctrl-1 = <&state_1_node_a &state_1_node_b>;
  68. };
  69. /* For the same device if using state IDs */
  70. device {
  71. pinctrl-0 = <&state_0_node_a>;
  72. pinctrl-1 = <&state_1_node_a &state_1_node_b>;
  73. };
  74. /*
  75. * For an IP block whose binding supports pin configuration,
  76. * but in use on an SoC that doesn't have any pin control hardware
  77. */
  78. device {
  79. pinctrl-names = "active", "idle";
  80. pinctrl-0 = <>;
  81. pinctrl-1 = <>;
  82. };
  83. == Pin controller devices ==
  84. Pin controller devices should contain the pin configuration nodes that client
  85. devices reference.
  86. For example:
  87. pincontroller {
  88. ... /* Standard DT properties for the device itself elided */
  89. state_0_node_a {
  90. ...
  91. };
  92. state_1_node_a {
  93. ...
  94. };
  95. state_1_node_b {
  96. ...
  97. };
  98. }
  99. The contents of each of those pin configuration child nodes is defined
  100. entirely by the binding for the individual pin controller device. There
  101. exists no common standard for this content.
  102. The pin configuration nodes need not be direct children of the pin controller
  103. device; they may be grandchildren, for example. Whether this is legal, and
  104. whether there is any interaction between the child and intermediate parent
  105. nodes, is again defined entirely by the binding for the individual pin
  106. controller device.
  107. == Using generic pinconfig options ==
  108. Generic pinconfig parameters can be used by defining a separate node containing
  109. the applicable parameters (and optional values), like:
  110. pcfg_pull_up: pcfg_pull_up {
  111. bias-pull-up;
  112. drive-strength = <20>;
  113. };
  114. This node should then be referenced in the appropriate pinctrl node as a phandle
  115. and parsed in the driver using the pinconf_generic_parse_dt_config function.
  116. Supported configuration parameters are:
  117. bias-disable - disable any pin bias
  118. bias-high-impedance - high impedance mode ("third-state", "floating")
  119. bias-bus-hold - latch weakly
  120. bias-pull-up - pull up the pin
  121. bias-pull-down - pull down the pin
  122. bias-pull-pin-default - use pin-default pull state
  123. drive-push-pull - drive actively high and low
  124. drive-open-drain - drive with open drain
  125. drive-open-source - drive with open source
  126. drive-strength - sink or source at most X mA
  127. input-schmitt-enable - enable schmitt-trigger mode
  128. input-schmitt-disable - disable schmitt-trigger mode
  129. input-schmitt - run in schmitt-trigger mode with hysteresis X
  130. input-debounce - debounce mode with debound time X
  131. power-source - select power source X
  132. slew-rate - use slew-rate X
  133. low-power-enable - enable low power mode
  134. low-power-disable - disable low power mode
  135. output-low - set the pin to output mode with low level
  136. output-high - set the pin to output mode with high level
  137. Arguments for parameters:
  138. - bias-pull-up, -down and -pin-default take as optional argument 0 to disable
  139. the pull, on hardware supporting it the pull strength in Ohm. bias-disable
  140. will also disable any active pull.
  141. - drive-strength takes as argument the target strength in mA.
  142. - input-schmitt takes as argument the adjustable hysteresis in a
  143. driver-specific format
  144. - input-debounce takes the debounce time as argument or 0 to disable debouncing
  145. - power-source argument is the custom value describing the source to select
  146. - slew-rate takes as argument the target rate in a driver-specific format
  147. All parameters not listed here, do not take an argument.
  148. More in-depth documentation on these parameters can be found in
  149. <include/linux/pinctrl/pinconfig-generic.h>