1*062b9b66SKrzysztof Kozlowski// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 22a93adfbSSamuel Holland// Copyright (C) 2021-2022 Samuel Holland <samuel@sholland.org> 32a93adfbSSamuel Holland 42a93adfbSSamuel Holland/ { 52a93adfbSSamuel Holland reg_vcc: vcc { 62a93adfbSSamuel Holland compatible = "regulator-fixed"; 72a93adfbSSamuel Holland regulator-name = "vcc"; 82a93adfbSSamuel Holland regulator-min-microvolt = <5000000>; 92a93adfbSSamuel Holland regulator-max-microvolt = <5000000>; 102a93adfbSSamuel Holland }; 112a93adfbSSamuel Holland 122a93adfbSSamuel Holland reg_vcc_3v3: vcc-3v3 { 132a93adfbSSamuel Holland compatible = "regulator-fixed"; 142a93adfbSSamuel Holland regulator-name = "vcc-3v3"; 152a93adfbSSamuel Holland regulator-min-microvolt = <3300000>; 162a93adfbSSamuel Holland regulator-max-microvolt = <3300000>; 172a93adfbSSamuel Holland vin-supply = <®_vcc>; 182a93adfbSSamuel Holland }; 192a93adfbSSamuel Holland}; 202a93adfbSSamuel Holland 212a93adfbSSamuel Holland&pio { 222a93adfbSSamuel Holland vcc-pb-supply = <®_vcc_3v3>; 232a93adfbSSamuel Holland vcc-pc-supply = <®_vcc_3v3>; 242a93adfbSSamuel Holland vcc-pd-supply = <®_vcc_3v3>; 252a93adfbSSamuel Holland vcc-pe-supply = <®_vcc_3v3>; 262a93adfbSSamuel Holland vcc-pf-supply = <®_vcc_3v3>; 272a93adfbSSamuel Holland vcc-pg-supply = <®_vcc_3v3>; 282a93adfbSSamuel Holland}; 29