Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1737933 > unrolled thread
| Started by | Icenowy Zheng <icenowy@aosc.io> |
|---|---|
| First post | 2017-09-23 02:20 +0200 |
| Last post | 2017-09-25 12:50 +0200 |
| Articles | 7 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Icenowy Zheng <icenowy@aosc.io> - 2017-09-23 02:20 +0200
[PATCH 1/3] clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock Icenowy Zheng <icenowy@aosc.io> - 2017-09-23 02:20 +0200
Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-09-25 12:20 +0200
Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Icenowy Zheng <icenowy@aosc.io> - 2017-09-25 12:20 +0200
Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-09-25 12:30 +0200
Re: [linux-sunxi] Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Icenowy Zheng <icenowy@aosc.io> - 2017-09-25 12:40 +0200
Re: [linux-sunxi] Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC Maxime Ripard <maxime.ripard@free-electrons.com> - 2017-09-25 12:50 +0200
| From | Icenowy Zheng <icenowy@aosc.io> |
|---|---|
| Date | 2017-09-23 02:20 +0200 |
| Subject | [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC |
| Message-ID | <usGkO-4r6-3@gated-at.bofh.it> |
This patchset imports simple DVFS support for Allwinner A64 SoC. As the thermal sensor driver is not yet implemented and some boards have still no AXP PMIC support, now only two OPPs are present -- 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. PATCH 1 is a fix to the CCU driver of A64, and the remaining patches set up the device tree bits of the DVFS on Pine64. Icenowy Zheng (3): clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock arm64: allwinner: a64: add CPU opp table arm64: allwinner: a64: set CPU regulator for Pine64 .../arm64/boot/dts/allwinner/sun50i-a64-pine64.dts | 4 ++++ arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 24 +++++++++++++++++++ drivers/clk/sunxi-ng/ccu-sun50i-a64.c | 28 +++++++++++++++++++++- 3 files changed, 55 insertions(+), 1 deletion(-) -- 2.13.5
[toc] | [next] | [standalone]
| From | Icenowy Zheng <icenowy@aosc.io> |
|---|---|
| Date | 2017-09-23 02:20 +0200 |
| Subject | [PATCH 1/3] clk: sunxi-ng: add mux and pll notifiers for A64 CPU clock |
| Message-ID | <usGkO-4r6-11@gated-at.bofh.it> |
| In reply to | #1737933 |
The A64 PLL_CPU clock has the same instability if some factor changed
without the PLL gated like other SoCs with sun6i-style CCU, e.g. A33,
H3.
Add the mux and pll notifiers for A64 CPU clock to workaround the
problem.
Fixes: c6a0637460c2 ("clk: sunxi-ng: Add A64 clocks")
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
---
drivers/clk/sunxi-ng/ccu-sun50i-a64.c | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/sunxi-ng/ccu-sun50i-a64.c b/drivers/clk/sunxi-ng/ccu-sun50i-a64.c
index 2bb4cabf802f..b55fa69dd0c1 100644
--- a/drivers/clk/sunxi-ng/ccu-sun50i-a64.c
+++ b/drivers/clk/sunxi-ng/ccu-sun50i-a64.c
@@ -879,11 +879,26 @@ static const struct sunxi_ccu_desc sun50i_a64_ccu_desc = {
.num_resets = ARRAY_SIZE(sun50i_a64_ccu_resets),
};
+static struct ccu_pll_nb sun50i_a64_pll_cpu_nb = {
+ .common = &pll_cpux_clk.common,
+ /* copy from pll_cpux_clk */
+ .enable = BIT(31),
+ .lock = BIT(28),
+};
+
+static struct ccu_mux_nb sun50i_a64_cpu_nb = {
+ .common = &cpux_clk.common,
+ .cm = &cpux_clk.mux,
+ .delay_us = 1, /* > 8 clock cycles at 24 MHz */
+ .bypass_index = 1, /* index of 24 MHz oscillator */
+};
+
static int sun50i_a64_ccu_probe(struct platform_device *pdev)
{
struct resource *res;
void __iomem *reg;
u32 val;
+ int ret;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
reg = devm_ioremap_resource(&pdev->dev, res);
@@ -897,7 +912,18 @@ static int sun50i_a64_ccu_probe(struct platform_device *pdev)
writel(0x515, reg + SUN50I_A64_PLL_MIPI_REG);
- return sunxi_ccu_probe(pdev->dev.of_node, reg, &sun50i_a64_ccu_desc);
+ ret = sunxi_ccu_probe(pdev->dev.of_node, reg, &sun50i_a64_ccu_desc);
+ if (ret)
+ return ret;
+
+ /* Gate then ungate PLL CPU after any rate changes */
+ ccu_pll_notifier_register(&sun50i_a64_pll_cpu_nb);
+
+ /* Reparent CPU during PLL CPU rate changes */
+ ccu_mux_notifier_register(pll_cpux_clk.common.hw.clk,
+ &sun50i_a64_cpu_nb);
+
+ return 0;
}
static const struct of_device_id sun50i_a64_ccu_ids[] = {
--
2.13.5
[toc] | [prev] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2017-09-25 12:20 +0200 |
| Message-ID | <utyEx-4YG-5@gated-at.bofh.it> |
| In reply to | #1737933 |
[Multipart message — attachments visible in raw view] — view raw
Hi, On Sat, Sep 23, 2017 at 12:15:28AM +0000, Icenowy Zheng wrote: > This patchset imports simple DVFS support for Allwinner A64 SoC. > > As the thermal sensor driver is not yet implemented and some boards > have still no AXP PMIC support, now only two OPPs are present -- > 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. > > PATCH 1 is a fix to the CCU driver of A64, and the remaining patches > set up the device tree bits of the DVFS on Pine64. How has this been tested? What tasks did you run, with what governor, etc... Thanks! Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Icenowy Zheng <icenowy@aosc.io> |
|---|---|
| Date | 2017-09-25 12:20 +0200 |
| Message-ID | <utyEy-4YG-17@gated-at.bofh.it> |
| In reply to | #1738881 |
于 2017年9月25日 GMT+08:00 下午6:10:27, Maxime Ripard <maxime.ripard@free-electrons.com> 写到: >Hi, > >On Sat, Sep 23, 2017 at 12:15:28AM +0000, Icenowy Zheng wrote: >> This patchset imports simple DVFS support for Allwinner A64 SoC. >> >> As the thermal sensor driver is not yet implemented and some boards >> have still no AXP PMIC support, now only two OPPs are present -- >> 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. >> >> PATCH 1 is a fix to the CCU driver of A64, and the remaining patches >> set up the device tree bits of the DVFS on Pine64. > >How has this been tested? > >What tasks did you run, with what governor, etc... I only tested manual frequency switching between 648MHz and 816MHz, and tested the PLL stuck issue by change the OPPs to some random value. > >Thanks! >Maxime
[toc] | [prev] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2017-09-25 12:30 +0200 |
| Message-ID | <utyOe-528-7@gated-at.bofh.it> |
| In reply to | #1738887 |
[Multipart message — attachments visible in raw view] — view raw
On Mon, Sep 25, 2017 at 10:12:09AM +0000, Icenowy Zheng wrote: > 于 2017年9月25日 GMT+08:00 下午6:10:27, Maxime Ripard <maxime.ripard@free-electrons.com> 写到: > >Hi, > > > >On Sat, Sep 23, 2017 at 12:15:28AM +0000, Icenowy Zheng wrote: > >> This patchset imports simple DVFS support for Allwinner A64 SoC. > >> > >> As the thermal sensor driver is not yet implemented and some boards > >> have still no AXP PMIC support, now only two OPPs are present -- > >> 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. > >> > >> PATCH 1 is a fix to the CCU driver of A64, and the remaining patches > >> set up the device tree bits of the DVFS on Pine64. > > > >How has this been tested? > > > >What tasks did you run, with what governor, etc... > > I only tested manual frequency switching between 648MHz and > 816MHz, and tested the PLL stuck issue by change the OPPs to > some random value. Ideally, we should test that it's actually reliable. Poorly chosen OPPs might lead to corrupt data that you might not get before a while. Please test using: https://linux-sunxi.org/Hardware_Reliability_Tests#Reliability_of_cpufreq_voltage.2Ffrequency_settings And post the report. Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Icenowy Zheng <icenowy@aosc.io> |
|---|---|
| Date | 2017-09-25 12:40 +0200 |
| Subject | Re: [linux-sunxi] Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC |
| Message-ID | <utyXU-55N-5@gated-at.bofh.it> |
| In reply to | #1738900 |
于 2017年9月25日 GMT+08:00 下午6:27:44, Maxime Ripard <maxime.ripard@free-electrons.com> 写到: >On Mon, Sep 25, 2017 at 10:12:09AM +0000, Icenowy Zheng wrote: >> 于 2017年9月25日 GMT+08:00 下午6:10:27, Maxime Ripard ><maxime.ripard@free-electrons.com> 写到: >> >Hi, >> > >> >On Sat, Sep 23, 2017 at 12:15:28AM +0000, Icenowy Zheng wrote: >> >> This patchset imports simple DVFS support for Allwinner A64 SoC. >> >> >> >> As the thermal sensor driver is not yet implemented and some >boards >> >> have still no AXP PMIC support, now only two OPPs are present -- >> >> 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. >> >> >> >> PATCH 1 is a fix to the CCU driver of A64, and the remaining >patches >> >> set up the device tree bits of the DVFS on Pine64. >> > >> >How has this been tested? >> > >> >What tasks did you run, with what governor, etc... >> >> I only tested manual frequency switching between 648MHz and >> 816MHz, and tested the PLL stuck issue by change the OPPs to >> some random value. > >Ideally, we should test that it's actually reliable. Poorly chosen >OPPs might lead to corrupt data that you might not get before a while. These are OPPs from the official sys_config.fex . > >Please test using: >https://linux-sunxi.org/Hardware_Reliability_Tests#Reliability_of_cpufreq_voltage.2Ffrequency_settings > >And post the report. > >Maxime
[toc] | [prev] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2017-09-25 12:50 +0200 |
| Subject | Re: [linux-sunxi] Re: [PATCH 0/3] Simple DVFS support for Allwinner A64 SoC |
| Message-ID | <utz7B-5aK-23@gated-at.bofh.it> |
| In reply to | #1738902 |
[Multipart message — attachments visible in raw view] — view raw
On Mon, Sep 25, 2017 at 10:29:38AM +0000, Icenowy Zheng wrote: > > > 于 2017年9月25日 GMT+08:00 下午6:27:44, Maxime Ripard <maxime.ripard@free-electrons.com> 写到: > >On Mon, Sep 25, 2017 at 10:12:09AM +0000, Icenowy Zheng wrote: > >> 于 2017年9月25日 GMT+08:00 下午6:10:27, Maxime Ripard > ><maxime.ripard@free-electrons.com> 写到: > >> >Hi, > >> > > >> >On Sat, Sep 23, 2017 at 12:15:28AM +0000, Icenowy Zheng wrote: > >> >> This patchset imports simple DVFS support for Allwinner A64 SoC. > >> >> > >> >> As the thermal sensor driver is not yet implemented and some > >boards > >> >> have still no AXP PMIC support, now only two OPPs are present -- > >> >> 648MHz@1.04V and 816MHz@1.1V to prevent overheat or undervoltage. > >> >> > >> >> PATCH 1 is a fix to the CCU driver of A64, and the remaining > >patches > >> >> set up the device tree bits of the DVFS on Pine64. > >> > > >> >How has this been tested? > >> > > >> >What tasks did you run, with what governor, etc... > >> > >> I only tested manual frequency switching between 648MHz and > >> 816MHz, and tested the PLL stuck issue by change the OPPs to > >> some random value. > > > >Ideally, we should test that it's actually reliable. Poorly chosen > >OPPs might lead to corrupt data that you might not get before a while. > > These are OPPs from the official sys_config.fex . And the rest of the code isn't, such as the clock or regulator code that is critical as well here. I'm not asking this out of nowhere, we've had to debug this more than once already. Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web