mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
1d49b8d73b
Sync BeagleBone dts files & TPS dtsi files with Linux v5.17 and include the SanCloud BBE Extended WiFi dts added in v5.18-rc1. Also pull in changes to am33xx-l4.dtsi needed to support the BeagleBone Blue. The change to use the cpsw switch driver (commit c477358e66a3 in Linux) is excluded from the sync as u-boot does not recognise the new compatible string. Signed-off-by: Paul Barker <paul.barker@sancloud.com>
68 lines
1.1 KiB
Text
68 lines
1.1 KiB
Text
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
/*
|
|
* Integrated Power Management Chip
|
|
* http://www.ti.com/lit/ds/symlink/tps65217.pdf
|
|
*/
|
|
|
|
&tps {
|
|
compatible = "ti,tps65217";
|
|
interrupt-controller;
|
|
#interrupt-cells = <1>;
|
|
|
|
charger {
|
|
compatible = "ti,tps65217-charger";
|
|
interrupts = <0>, <1>;
|
|
interrupt-names = "USB", "AC";
|
|
status = "disabled";
|
|
};
|
|
|
|
pwrbutton {
|
|
compatible = "ti,tps65217-pwrbutton";
|
|
interrupts = <2>;
|
|
status = "disabled";
|
|
};
|
|
|
|
regulators {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
dcdc1_reg: regulator@0 {
|
|
reg = <0>;
|
|
regulator-compatible = "dcdc1";
|
|
};
|
|
|
|
dcdc2_reg: regulator@1 {
|
|
reg = <1>;
|
|
regulator-compatible = "dcdc2";
|
|
};
|
|
|
|
dcdc3_reg: regulator@2 {
|
|
reg = <2>;
|
|
regulator-compatible = "dcdc3";
|
|
};
|
|
|
|
ldo1_reg: regulator@3 {
|
|
reg = <3>;
|
|
regulator-compatible = "ldo1";
|
|
};
|
|
|
|
ldo2_reg: regulator@4 {
|
|
reg = <4>;
|
|
regulator-compatible = "ldo2";
|
|
};
|
|
|
|
ldo3_reg: regulator@5 {
|
|
reg = <5>;
|
|
regulator-compatible = "ldo3";
|
|
};
|
|
|
|
ldo4_reg: regulator@6 {
|
|
reg = <6>;
|
|
regulator-compatible = "ldo4";
|
|
};
|
|
};
|
|
};
|