Skip to content

Commit

Permalink
asus: transformer: add t20 based device family
Browse files Browse the repository at this point in the history
Includes 3 devices:
- Asus Eee Pad Transformer TF101 and TF101G
- Asus Eee Pad Slider SL101

Tested-by: Antoni Aloy Torrens <[email protected]> # ASUS TF101
Signed-off-by: Svyatoslav Ryhel <[email protected]>
  • Loading branch information
clamor-s committed Jun 21, 2022
1 parent ddcce40 commit 2578780
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arch/arm/dts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,11 @@ dtb-$(CONFIG_ARCH_MESON) += \
meson-sm1-odroid-c4.dtb \
meson-sm1-odroid-hc4.dtb \
meson-sm1-sei610.dtb
dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \
dtb-$(CONFIG_ARCH_TEGRA) += \
tegra20-asus-sl101.dtb \
tegra20-asus-tf101.dtb \
tegra20-asus-tf101g.dtb \
tegra20-harmony.dtb \
tegra20-medcom-wide.dtb \
tegra20-paz00.dtb \
tegra20-plutux.dtb \
Expand Down
8 changes: 8 additions & 0 deletions arch/arm/dts/tegra20-asus-sl101.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/dts-v1/;

#include "tegra20-asus-transformer.dtsi"

/ {
model = "ASUS EeePad Slider SL101";
};
8 changes: 8 additions & 0 deletions arch/arm/dts/tegra20-asus-tf101.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/dts-v1/;

#include "tegra20-asus-transformer.dtsi"

/ {
model = "ASUS EeePad Transformer TF101";
};
8 changes: 8 additions & 0 deletions arch/arm/dts/tegra20-asus-tf101g.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/dts-v1/;

#include "tegra20-asus-transformer.dtsi"

/ {
model = "ASUS EeePad Transformer TF101G";
};
2 changes: 2 additions & 0 deletions configs/sl101.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-sl101"
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f
2 changes: 2 additions & 0 deletions configs/tf101.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-tf101"
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f
2 changes: 2 additions & 0 deletions configs/tf101g.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-tf101g"
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f

0 comments on commit 2578780

Please sign in to comment.