Message ID | 20220131230214.123610-1-petr.vorel@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | None | expand |
Hi all, > Although downstream supports HS400, there are overclocking warnings when > using mmc-hs400-1_8v: > mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz > mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz > mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz > mmc0: Card appears overclocked; req 400000000 Hz, actual 768000000 Hz > mmc0: Card appears overclocked; req 400000000 Hz, actual 768000000 Hz > mmc0: new HS400 MMC card at address 0001 Any tip which gcc could be problematic? Is it dangerous to use it? The issue might have been in downstream kernel, but just hidden. NOTE (as I wrote earlier) Konrad's patch Remove NoC clocks [1] has no effect about this. Kind regards, Petr [1] https://lore.kernel.org/linux-arm-msm/20211230023101.1122588-1-konrad.dybcio@somainline.org/ > Using HS200 (i.e. mmc-hs200-1_8v or mmc-ddr-1_8v) would reduce them: > mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz > mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz > mmc0: new HS200 MMC card at address 0001 > But as the problem is probably elsewhere (bullhead behaves the same), > keep mmc-hs400-1_8v. > Angler does not have SD card, thus sdhc2 kept disabled. > Signed-off-by: Petr Vorel <petr.vorel@gmail.com> > --- > Changes v2->v3: > * update sdhc1 overclocking comment. > Kind regards, > Petr > .../boot/dts/qcom/msm8994-huawei-angler-rev-101.dts | 13 ++++++++++++- > 1 file changed, 12 insertions(+), 1 deletion(-) > diff --git a/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts b/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts > index 0e3dd48f0dbf..64f9dbee06a1 100644 > --- a/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts > +++ b/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts > @@ -1,12 +1,13 @@ > // SPDX-License-Identifier: GPL-2.0-only > /* Copyright (c) 2015, Huawei Inc. All rights reserved. > * Copyright (c) 2016, The Linux Foundation. All rights reserved. > - * Copyright (c) 2021, Petr Vorel <petr.vorel@gmail.com> > + * Copyright (c) 2021-2022, Petr Vorel <petr.vorel@gmail.com> > */ > /dts-v1/; > #include "msm8994.dtsi" > +#include <dt-bindings/gpio/gpio.h> > /* Angler's firmware does not report where the memory is allocated */ > /delete-node/ &cont_splash_mem; > @@ -41,3 +42,13 @@ serial@f991e000 { > &tlmm { > gpio-reserved-ranges = <85 4>; > }; > + > +/* > + * There are overclocking warnings (more for HS400 than for HS200), but > + * downstream also supports also HS400 thus keep it (problem elsewhere?). > + */ > +&sdhc1 { > + status = "okay"; > + > + mmc-hs400-1_8v; > +};
diff --git a/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts b/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts index 0e3dd48f0dbf..64f9dbee06a1 100644 --- a/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts +++ b/arch/arm64/boot/dts/qcom/msm8994-huawei-angler-rev-101.dts @@ -1,12 +1,13 @@ // SPDX-License-Identifier: GPL-2.0-only /* Copyright (c) 2015, Huawei Inc. All rights reserved. * Copyright (c) 2016, The Linux Foundation. All rights reserved. - * Copyright (c) 2021, Petr Vorel <petr.vorel@gmail.com> + * Copyright (c) 2021-2022, Petr Vorel <petr.vorel@gmail.com> */ /dts-v1/; #include "msm8994.dtsi" +#include <dt-bindings/gpio/gpio.h> /* Angler's firmware does not report where the memory is allocated */ /delete-node/ &cont_splash_mem; @@ -41,3 +42,13 @@ serial@f991e000 { &tlmm { gpio-reserved-ranges = <85 4>; }; + +/* + * There are overclocking warnings (more for HS400 than for HS200), but + * downstream also supports also HS400 thus keep it (problem elsewhere?). + */ +&sdhc1 { + status = "okay"; + + mmc-hs400-1_8v; +};
Although downstream supports HS400, there are overclocking warnings when using mmc-hs400-1_8v: mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz mmc0: Card appears overclocked; req 400000000 Hz, actual 768000000 Hz mmc0: Card appears overclocked; req 400000000 Hz, actual 768000000 Hz mmc0: new HS400 MMC card at address 0001 Using HS200 (i.e. mmc-hs200-1_8v or mmc-ddr-1_8v) would reduce them: mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz mmc0: Card appears overclocked; req 200000000 Hz, actual 384000000 Hz mmc0: new HS200 MMC card at address 0001 But as the problem is probably elsewhere (bullhead behaves the same), keep mmc-hs400-1_8v. Angler does not have SD card, thus sdhc2 kept disabled. Signed-off-by: Petr Vorel <petr.vorel@gmail.com> --- Changes v2->v3: * update sdhc1 overclocking comment. Kind regards, Petr .../boot/dts/qcom/msm8994-huawei-angler-rev-101.dts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-)