Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1222571 > unrolled thread
| Started by | Shawn Lin <shawn.lin@rock-chips.com> |
|---|---|
| First post | 2015-09-11 09:30 +0200 |
| Last post | 2015-09-12 01:50 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 2/2] ARM: dts: support Highspeed for rk3066a platform Shawn Lin <shawn.lin@rock-chips.com> - 2015-09-11 09:30 +0200
Re: [PATCH 2/2] ARM: dts: support Highspeed for rk3066a platform Heiko Stübner <heiko@sntech.de> - 2015-09-12 00:50 +0200
Re: [PATCH 2/2] ARM: dts: support Highspeed for rk3066a platform Shawn Lin <shawn.lin@rock-chips.com> - 2015-09-12 01:50 +0200
| From | Shawn Lin <shawn.lin@rock-chips.com> |
|---|---|
| Date | 2015-09-11 09:30 +0200 |
| Subject | [PATCH 2/2] ARM: dts: support Highspeed for rk3066a platform |
| Message-ID | <q7qWu-3aB-3@gated-at.bofh.it> |
Add cap-sd-highspeed and cap-mmc-highspeed for rk3066a
platform to make sd cards running faster.
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
---
arch/arm/boot/dts/rk3066a.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/boot/dts/rk3066a.dtsi b/arch/arm/boot/dts/rk3066a.dtsi
index 946f187..b50a785 100644
--- a/arch/arm/boot/dts/rk3066a.dtsi
+++ b/arch/arm/boot/dts/rk3066a.dtsi
@@ -595,6 +595,8 @@
&mmc0 {
pinctrl-names = "default";
pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_cd &sd0_bus4>;
+ cap-mmc-highspeed;
+ cap-sd-highspeed;
};
&mmc1 {
--
2.3.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Heiko Stübner <heiko@sntech.de> |
|---|---|
| Date | 2015-09-12 00:50 +0200 |
| Message-ID | <q7FiN-75P-19@gated-at.bofh.it> |
| In reply to | #1222571 |
Hi Shawn,
Am Freitag, 11. September 2015, 15:25:41 schrieb Shawn Lin:
> Add cap-sd-highspeed and cap-mmc-highspeed for rk3066a
> platform to make sd cards running faster.
>
> Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
> ---
>
> arch/arm/boot/dts/rk3066a.dtsi | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/boot/dts/rk3066a.dtsi b/arch/arm/boot/dts/rk3066a.dtsi
> index 946f187..b50a785 100644
> --- a/arch/arm/boot/dts/rk3066a.dtsi
> +++ b/arch/arm/boot/dts/rk3066a.dtsi
> @@ -595,6 +595,8 @@
> &mmc0 {
> pinctrl-names = "default";
> pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_cd &sd0_bus4>;
> + cap-mmc-highspeed;
> + cap-sd-highspeed;
> };
>
Currently we're setting the dw_mmc capabilities in the individual board files
and patch1 also correctly adds the cap to the radxarock file.
So I'd think we should stay with one scheme and probably add the rk3066 caps
to the bqcurie2, marsboard and rayeager where applicable.
Heiko
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Shawn Lin <shawn.lin@rock-chips.com> |
|---|---|
| Date | 2015-09-12 01:50 +0200 |
| Message-ID | <q7GeR-8si-1@gated-at.bofh.it> |
| In reply to | #1223143 |
在 2015/9/12 6:45, Heiko Stübner 写道:
> Hi Shawn,
>
> Am Freitag, 11. September 2015, 15:25:41 schrieb Shawn Lin:
>> Add cap-sd-highspeed and cap-mmc-highspeed for rk3066a
>> platform to make sd cards running faster.
>>
>> Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
>> ---
>>
>> arch/arm/boot/dts/rk3066a.dtsi | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/rk3066a.dtsi b/arch/arm/boot/dts/rk3066a.dtsi
>> index 946f187..b50a785 100644
>> --- a/arch/arm/boot/dts/rk3066a.dtsi
>> +++ b/arch/arm/boot/dts/rk3066a.dtsi
>> @@ -595,6 +595,8 @@
>> &mmc0 {
>> pinctrl-names = "default";
>> pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_cd &sd0_bus4>;
>> + cap-mmc-highspeed;
>> + cap-sd-highspeed;
>> };
>>
>
> Currently we're setting the dw_mmc capabilities in the individual board files
> and patch1 also correctly adds the cap to the radxarock file.
>
Thanks, Heiko. :)
Right, I was condering add caps in rk3066a for all boards which include
it or for each individual board. Unfortunately, I chose the wrong one.:(
Done in the v2.
> So I'd think we should stay with one scheme and probably add the rk3066 caps
> to the bqcurie2, marsboard and rayeager where applicable.
>
>
> Heiko
>
>
>
--
Best Regards
Shawn Lin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web