37 lines
998 B
Devicetree
37 lines
998 B
Devicetree
|
|
/*
|
||
|
|
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
||
|
|
*
|
||
|
|
* This program is free software; you can redistribute it and/or modify
|
||
|
|
* it under the terms of the GNU General Public License version 2 and
|
||
|
|
* only version 2 as published by the Free Software Foundation.
|
||
|
|
*
|
||
|
|
* This program is distributed in the hope that it will be useful,
|
||
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
* GNU General Public License for more details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
&soc {
|
||
|
|
/* GDSCs in Global CC */
|
||
|
|
gdsc_usb30: qcom,gdsc@10b004 {
|
||
|
|
compatible = "qcom,gdsc";
|
||
|
|
regulator-name = "gdsc_usb30";
|
||
|
|
reg = <0x10b004 0x4>;
|
||
|
|
status = "disabled";
|
||
|
|
};
|
||
|
|
|
||
|
|
gdsc_emac: qcom,gdsc@147004 {
|
||
|
|
compatible = "qcom,gdsc";
|
||
|
|
regulator-name = "gdsc_emac";
|
||
|
|
reg = <0x147004 0x4>;
|
||
|
|
status = "disabled";
|
||
|
|
};
|
||
|
|
|
||
|
|
gdsc_pcie: qcom,gdsc@137004 {
|
||
|
|
compatible = "qcom,gdsc";
|
||
|
|
regulator-name = "gdsc_pcie";
|
||
|
|
reg = <0x137004 0x4>;
|
||
|
|
status = "disabled";
|
||
|
|
};
|
||
|
|
};
|