1*2a93adfbSSamuel Holland// SPDX-License-Identifier: (GPL-2.0+ or MIT) 2*2a93adfbSSamuel Holland// Copyright (C) 2021-2022 Samuel Holland <samuel@sholland.org> 3*2a93adfbSSamuel Holland 4*2a93adfbSSamuel Holland/ { 5*2a93adfbSSamuel Holland reg_vcc: vcc { 6*2a93adfbSSamuel Holland compatible = "regulator-fixed"; 7*2a93adfbSSamuel Holland regulator-name = "vcc"; 8*2a93adfbSSamuel Holland regulator-min-microvolt = <5000000>; 9*2a93adfbSSamuel Holland regulator-max-microvolt = <5000000>; 10*2a93adfbSSamuel Holland }; 11*2a93adfbSSamuel Holland 12*2a93adfbSSamuel Holland reg_vcc_3v3: vcc-3v3 { 13*2a93adfbSSamuel Holland compatible = "regulator-fixed"; 14*2a93adfbSSamuel Holland regulator-name = "vcc-3v3"; 15*2a93adfbSSamuel Holland regulator-min-microvolt = <3300000>; 16*2a93adfbSSamuel Holland regulator-max-microvolt = <3300000>; 17*2a93adfbSSamuel Holland vin-supply = <®_vcc>; 18*2a93adfbSSamuel Holland }; 19*2a93adfbSSamuel Holland}; 20*2a93adfbSSamuel Holland 21*2a93adfbSSamuel Holland&pio { 22*2a93adfbSSamuel Holland vcc-pb-supply = <®_vcc_3v3>; 23*2a93adfbSSamuel Holland vcc-pc-supply = <®_vcc_3v3>; 24*2a93adfbSSamuel Holland vcc-pd-supply = <®_vcc_3v3>; 25*2a93adfbSSamuel Holland vcc-pe-supply = <®_vcc_3v3>; 26*2a93adfbSSamuel Holland vcc-pf-supply = <®_vcc_3v3>; 27*2a93adfbSSamuel Holland vcc-pg-supply = <®_vcc_3v3>; 28*2a93adfbSSamuel Holland}; 29