blob: be5cfa335ae4e2b0a9c299e2c06d1ab43ea8bce8 [file] [log] [blame]
Hans de Goede25ff22a2014-03-01 20:26:20 +01001/*
2 * sunxi boards common regulator (ahci target power supply, usb-vbus) code
3 *
4 * Copyright 2014 - Hans de Goede <hdegoede@redhat.com>
5 *
Maxime Ripard12bfa282014-09-02 19:25:26 +02006 * This file is dual-licensed: you can use it either under the terms
7 * of the GPL or the X11 license, at your option. Note that this dual
8 * licensing only applies to this file, and not this project as a
9 * whole.
Hans de Goede25ff22a2014-03-01 20:26:20 +010010 *
Maxime Ripard12bfa282014-09-02 19:25:26 +020011 * a) This file is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
16 * This file is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public
22 * License along with this file; if not, write to the Free
23 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
24 * MA 02110-1301 USA
25 *
26 * Or, alternatively,
27 *
28 * b) Permission is hereby granted, free of charge, to any person
29 * obtaining a copy of this software and associated documentation
30 * files (the "Software"), to deal in the Software without
31 * restriction, including without limitation the rights to use,
32 * copy, modify, merge, publish, distribute, sublicense, and/or
33 * sell copies of the Software, and to permit persons to whom the
34 * Software is furnished to do so, subject to the following
35 * conditions:
36 *
37 * The above copyright notice and this permission notice shall be
38 * included in all copies or substantial portions of the Software.
39 *
40 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
41 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
42 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
43 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
44 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
45 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
46 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
47 * OTHER DEALINGS IN THE SOFTWARE.
Hans de Goede25ff22a2014-03-01 20:26:20 +010048 */
49
50/ {
51 soc@01c00000 {
52 pio: pinctrl@01c20800 {
53 ahci_pwr_pin_a: ahci_pwr_pin@0 {
54 allwinner,pins = "PB8";
55 allwinner,function = "gpio_out";
56 allwinner,drive = <0>;
57 allwinner,pull = <0>;
58 };
59
Roman Byshkob32ef1d2014-11-10 19:55:07 +010060 usb0_vbus_pin_a: usb0_vbus_pin@0 {
61 allwinner,pins = "PB9";
62 allwinner,function = "gpio_out";
63 allwinner,drive = <0>;
64 allwinner,pull = <0>;
65 };
66
Hans de Goede25ff22a2014-03-01 20:26:20 +010067 usb1_vbus_pin_a: usb1_vbus_pin@0 {
68 allwinner,pins = "PH6";
69 allwinner,function = "gpio_out";
70 allwinner,drive = <0>;
71 allwinner,pull = <0>;
72 };
73
74 usb2_vbus_pin_a: usb2_vbus_pin@0 {
75 allwinner,pins = "PH3";
76 allwinner,function = "gpio_out";
77 allwinner,drive = <0>;
78 allwinner,pull = <0>;
79 };
80 };
81 };
82
83 reg_ahci_5v: ahci-5v {
84 compatible = "regulator-fixed";
85 pinctrl-names = "default";
86 pinctrl-0 = <&ahci_pwr_pin_a>;
87 regulator-name = "ahci-5v";
88 regulator-min-microvolt = <5000000>;
89 regulator-max-microvolt = <5000000>;
90 enable-active-high;
91 gpio = <&pio 1 8 0>;
92 status = "disabled";
93 };
94
Roman Byshkob32ef1d2014-11-10 19:55:07 +010095 reg_usb0_vbus: usb0-vbus {
96 compatible = "regulator-fixed";
97 pinctrl-names = "default";
98 pinctrl-0 = <&usb0_vbus_pin_a>;
99 regulator-name = "usb0-vbus";
100 regulator-min-microvolt = <5000000>;
101 regulator-max-microvolt = <5000000>;
102 enable-active-high;
103 gpio = <&pio 1 9 0>;
104 status = "disabled";
105 };
106
Hans de Goede25ff22a2014-03-01 20:26:20 +0100107 reg_usb1_vbus: usb1-vbus {
108 compatible = "regulator-fixed";
109 pinctrl-names = "default";
110 pinctrl-0 = <&usb1_vbus_pin_a>;
111 regulator-name = "usb1-vbus";
112 regulator-min-microvolt = <5000000>;
113 regulator-max-microvolt = <5000000>;
114 enable-active-high;
115 gpio = <&pio 7 6 0>;
116 status = "disabled";
117 };
118
119 reg_usb2_vbus: usb2-vbus {
120 compatible = "regulator-fixed";
121 pinctrl-names = "default";
122 pinctrl-0 = <&usb2_vbus_pin_a>;
123 regulator-name = "usb2-vbus";
124 regulator-min-microvolt = <5000000>;
125 regulator-max-microvolt = <5000000>;
126 enable-active-high;
127 gpio = <&pio 7 3 0>;
128 status = "disabled";
129 };
Hans de Goedee509e402014-05-11 09:46:53 +0200130
Maxime Ripard172cf472014-05-20 17:47:45 +0200131 reg_vcc3v0: vcc3v0 {
132 compatible = "regulator-fixed";
133 regulator-name = "vcc3v0";
134 regulator-min-microvolt = <3000000>;
135 regulator-max-microvolt = <3000000>;
136 };
137
Hans de Goedee509e402014-05-11 09:46:53 +0200138 reg_vcc3v3: vcc3v3 {
139 compatible = "regulator-fixed";
140 regulator-name = "vcc3v3";
141 regulator-min-microvolt = <3300000>;
142 regulator-max-microvolt = <3300000>;
143 };
Chen-Yu Tsaia5a68f72014-09-17 00:04:45 +0800144
145 reg_vcc5v0: vcc5v0 {
146 compatible = "regulator-fixed";
147 regulator-name = "vcc5v0";
148 regulator-min-microvolt = <5000000>;
149 regulator-max-microvolt = <5000000>;
150 };
Hans de Goede25ff22a2014-03-01 20:26:20 +0100151};