Skip to content

Commit 602aaff

Browse files
committed
asus: transformer: add t20 based device family
Includes 3 devices: - Asus Eee Pad Transformer TF101 and TF101G - Asus Eee Pad Slider SL101 Tested-by: Antoni Aloy Torrens <aaloytorrens@gmail.com> # ASUS TF101 Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
1 parent 878b3e4 commit 602aaff

File tree

7 files changed

+35
-1
lines changed

7 files changed

+35
-1
lines changed

arch/arm/dts/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,11 @@ dtb-$(CONFIG_ARCH_MESON) += \
201201
meson-sm1-odroid-c4.dtb \
202202
meson-sm1-odroid-hc4.dtb \
203203
meson-sm1-sei610.dtb
204-
dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \
204+
dtb-$(CONFIG_ARCH_TEGRA) += \
205+
tegra20-asus-sl101.dtb \
206+
tegra20-asus-tf101.dtb \
207+
tegra20-asus-tf101g.dtb \
208+
tegra20-harmony.dtb \
205209
tegra20-medcom-wide.dtb \
206210
tegra20-paz00.dtb \
207211
tegra20-plutux.dtb \
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// SPDX-License-Identifier: GPL-2.0-or-later
2+
/dts-v1/;
3+
4+
#include "tegra20-asus-transformer.dtsi"
5+
6+
/ {
7+
model = "ASUS EeePad Slider SL101";
8+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// SPDX-License-Identifier: GPL-2.0-or-later
2+
/dts-v1/;
3+
4+
#include "tegra20-asus-transformer.dtsi"
5+
6+
/ {
7+
model = "ASUS EeePad Transformer TF101";
8+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// SPDX-License-Identifier: GPL-2.0-or-later
2+
/dts-v1/;
3+
4+
#include "tegra20-asus-transformer.dtsi"
5+
6+
/ {
7+
model = "ASUS EeePad Transformer TF101G";
8+
};

configs/sl101.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-sl101"
2+
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f

configs/tf101.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-tf101"
2+
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f

configs/tf101g.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_DEFAULT_DEVICE_TREE="tegra20-asus-tf101g"
2+
CONFIG_USB_GADGET_PRODUCT_NUM=0x4e0f

0 commit comments

Comments
 (0)