diff options
Diffstat (limited to 'Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt')
-rw-r--r-- | Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt b/Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt index 51cee44fc140..9496934528bd 100644 --- a/Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt +++ b/Documentation/devicetree/bindings/pinctrl/renesas,pfc-pinctrl.txt | |||
@@ -58,12 +58,12 @@ are parsed through phandles and processed purely based on their content. | |||
58 | 58 | ||
59 | Pin Configuration Node Properties: | 59 | Pin Configuration Node Properties: |
60 | 60 | ||
61 | - renesas,pins : An array of strings, each string containing the name of a pin. | 61 | - pins : An array of strings, each string containing the name of a pin. |
62 | - renesas,groups : An array of strings, each string containing the name of a pin | 62 | - groups : An array of strings, each string containing the name of a pin |
63 | group. | 63 | group. |
64 | 64 | ||
65 | - renesas,function: A string containing the name of the function to mux to the | 65 | - function: A string containing the name of the function to mux to the pin |
66 | pin group(s) specified by the renesas,groups property | 66 | group(s) specified by the groups property. |
67 | 67 | ||
68 | Valid values for pin, group and function names can be found in the group and | 68 | Valid values for pin, group and function names can be found in the group and |
69 | function arrays of the PFC data file corresponding to the SoC | 69 | function arrays of the PFC data file corresponding to the SoC |
@@ -71,7 +71,9 @@ Pin Configuration Node Properties: | |||
71 | 71 | ||
72 | The pin configuration parameters use the generic pinconf bindings defined in | 72 | The pin configuration parameters use the generic pinconf bindings defined in |
73 | pinctrl-bindings.txt in this directory. The supported parameters are | 73 | pinctrl-bindings.txt in this directory. The supported parameters are |
74 | bias-disable, bias-pull-up and bias-pull-down. | 74 | bias-disable, bias-pull-up, bias-pull-down and power-source. For pins that |
75 | have a configurable I/O voltage, the power-source value should be the | ||
76 | nominal I/O voltage in millivolts. | ||
75 | 77 | ||
76 | 78 | ||
77 | GPIO | 79 | GPIO |
@@ -141,19 +143,19 @@ Example 3: KZM-A9-GT (SH-Mobile AG5) default pin state hog and pin control maps | |||
141 | 143 | ||
142 | mmcif_pins: mmcif { | 144 | mmcif_pins: mmcif { |
143 | mux { | 145 | mux { |
144 | renesas,groups = "mmc0_data8_0", "mmc0_ctrl_0"; | 146 | groups = "mmc0_data8_0", "mmc0_ctrl_0"; |
145 | renesas,function = "mmc0"; | 147 | function = "mmc0"; |
146 | }; | 148 | }; |
147 | cfg { | 149 | cfg { |
148 | renesas,groups = "mmc0_data8_0"; | 150 | groups = "mmc0_data8_0"; |
149 | renesas,pins = "PORT279"; | 151 | pins = "PORT279"; |
150 | bias-pull-up; | 152 | bias-pull-up; |
151 | }; | 153 | }; |
152 | }; | 154 | }; |
153 | 155 | ||
154 | scifa4_pins: scifa4 { | 156 | scifa4_pins: scifa4 { |
155 | renesas,groups = "scifa4_data", "scifa4_ctrl"; | 157 | groups = "scifa4_data", "scifa4_ctrl"; |
156 | renesas,function = "scifa4"; | 158 | function = "scifa4"; |
157 | }; | 159 | }; |
158 | }; | 160 | }; |
159 | 161 | ||