-
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm64: dts: add FriendlyElec's
rk3588-nanopc-t6-lts
DT
- From vendor's tree at https://github.com/friendlyarm/kernel-rockchip branch nanopi6-v6.1.y sha1 925eb8ba4c765d4282a7281ddc6559a6e45c2687 - Adapted vendor's nomenclature (rev07 -> rk3588-nanopc-t6-lts.dts) - adapted include (rev01 -> rk3588-nanopc-t6.dts) - this requires the `vcc5v0_host20_en` node added in previous commit to the `t6` DT - add to Makefile
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
/* | ||
* Copyright (c) 2023 FriendlyElec Computer Tech. Co., Ltd. | ||
* (http://www.friendlyelec.com) | ||
*/ | ||
|
||
/dts-v1/; | ||
#include "rk3588-nanopc-t6.dts" | ||
|
||
/ { | ||
model = "FriendlyElec NanoPC-T6 LTS"; | ||
compatible = "friendlyelec,nanopc-t6", "rockchip,rk3588"; | ||
|
||
vcc5v0_host_20: vcc5v0-host-20 { | ||
compatible = "regulator-fixed"; | ||
enable-active-high; | ||
gpio = <&gpio1 RK_PA4 GPIO_ACTIVE_HIGH>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&vcc5v0_host20_en>; | ||
regulator-name = "vcc5v0_host_20"; | ||
regulator-min-microvolt = <5000000>; | ||
regulator-max-microvolt = <5000000>; | ||
vin-supply = <&vcc5v0_usb>; | ||
}; | ||
}; | ||
|
||
&mach { | ||
hwrev = <7>; | ||
model = "NanoPC-T6 LTS"; | ||
}; | ||
|
||
&u2phy3_host { | ||
phy-supply = <&vcc5v0_host_20>; | ||
}; |