From: Svyatoslav Ryhel <clamor95@gmail.com>
To: Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Thierry Reding <thierry.reding@gmail.com>,
Jonathan Hunter <jonathanh@nvidia.com>,
Svyatoslav Ryhel <clamor95@gmail.com>,
Maxim Schwalm <maxim.schwalm@gmail.com>,
Dmitry Osipenko <digetx@gmail.com>
Cc: devicetree@vger.kernel.org, linux-tegra@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH v3 1/4] ARM: tegra: transformer: use labels for mmc in aliases
Date: Wed, 29 Mar 2023 12:04:00 +0300 [thread overview]
Message-ID: <20230329090403.5274-2-clamor95@gmail.com> (raw)
In-Reply-To: <20230329090403.5274-1-clamor95@gmail.com>
Use phandle references for mmc instead of path in aliases.
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
---
arch/arm/boot/dts/tegra114-asus-tf701t.dts | 12 ++++++------
.../boot/dts/tegra30-asus-transformer-common.dtsi | 12 ++++++------
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/arch/arm/boot/dts/tegra114-asus-tf701t.dts b/arch/arm/boot/dts/tegra114-asus-tf701t.dts
index 84a3eb38e71d..3a420ac969ff 100644
--- a/arch/arm/boot/dts/tegra114-asus-tf701t.dts
+++ b/arch/arm/boot/dts/tegra114-asus-tf701t.dts
@@ -13,9 +13,9 @@ / {
chassis-type = "convertible";
aliases {
- mmc0 = "/mmc@78000600"; /* eMMC */
- mmc1 = "/mmc@78000400"; /* uSD slot */
- mmc2 = "/mmc@78000000"; /* WiFi */
+ mmc0 = &sdmmc4; /* eMMC */
+ mmc1 = &sdmmc3; /* uSD slot */
+ mmc2 = &sdmmc1; /* WiFi */
rtc0 = &palmas;
rtc1 = "/rtc@7000e000";
@@ -605,12 +605,12 @@ i2s@70080300 {
};
};
- mmc@78000000 {
+ sdmmc1: mmc@78000000 {
/* WiFi */
};
/* MicroSD card */
- mmc@78000400 {
+ sdmmc3: mmc@78000400 {
status = "okay";
bus-width = <4>;
@@ -626,7 +626,7 @@ mmc@78000400 {
pinctrl-0 = <&sdmmc3_default>;
};
- mmc@78000600 {
+ sdmmc4: mmc@78000600 {
/* eMMC */
};
diff --git a/arch/arm/boot/dts/tegra30-asus-transformer-common.dtsi b/arch/arm/boot/dts/tegra30-asus-transformer-common.dtsi
index 1861b2de2dc3..f32806f07989 100644
--- a/arch/arm/boot/dts/tegra30-asus-transformer-common.dtsi
+++ b/arch/arm/boot/dts/tegra30-asus-transformer-common.dtsi
@@ -12,9 +12,9 @@ / {
chassis-type = "convertible";
aliases {
- mmc0 = "/mmc@78000600"; /* eMMC */
- mmc1 = "/mmc@78000000"; /* uSD slot */
- mmc2 = "/mmc@78000400"; /* WiFi */
+ mmc0 = &sdmmc4; /* eMMC */
+ mmc1 = &sdmmc1; /* uSD slot */
+ mmc2 = &sdmmc3; /* WiFi */
rtc0 = &pmic;
rtc1 = "/rtc@7000e000";
@@ -1388,7 +1388,7 @@ i2s@70080600 { /* i2s3 */
};
};
- mmc@78000000 {
+ sdmmc1: mmc@78000000 {
status = "okay";
/* FIXME: Full 208Mhz clock rate doesn't work reliably */
@@ -1401,7 +1401,7 @@ mmc@78000000 {
vqmmc-supply = <&vddio_usd>; /* ldo3 */
};
- mmc@78000400 {
+ sdmmc3: mmc@78000400 {
status = "okay";
#address-cells = <1>;
@@ -1431,7 +1431,7 @@ wifi@1 {
};
};
- mmc@78000600 {
+ sdmmc4: mmc@78000600 {
status = "okay";
bus-width = <8>;
vmmc-supply = <&vcore_emmc>;
--
2.37.2
next prev parent reply other threads:[~2023-03-29 9:05 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-29 9:03 [PATCH v3 0/4] Tegra DTS improvements Svyatoslav Ryhel
2023-03-29 9:04 ` Svyatoslav Ryhel [this message]
2023-06-16 15:24 ` [PATCH v3 1/4] ARM: tegra: transformer: use labels for mmc in aliases Svyatoslav Ryhel
2023-03-29 9:04 ` [PATCH v3 2/4] ARM: tegra30: Use cpu* labels Svyatoslav Ryhel
2023-04-04 13:33 ` (subset) " Thierry Reding
2023-03-29 9:04 ` [PATCH v3 3/4] ARM: tegra: asus-tf101: fix accelerometer mount matrix Svyatoslav Ryhel
2023-04-04 13:33 ` (subset) " Thierry Reding
2023-03-29 9:04 ` [PATCH v3 4/4] ARM: tegra30: peripherals: add 266.5MHz nodes Svyatoslav Ryhel
2023-04-04 13:33 ` (subset) " Thierry Reding
2023-04-04 13:33 ` [PATCH v3 0/4] Tegra DTS improvements Thierry Reding
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230329090403.5274-2-clamor95@gmail.com \
--to=clamor95@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=digetx@gmail.com \
--cc=jonathanh@nvidia.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=maxim.schwalm@gmail.com \
--cc=robh+dt@kernel.org \
--cc=thierry.reding@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).