Message ID | 20230518101234.143748-10-xingyu.wu@starfivetech.com (mailing list archive) |
---|---|
State | Superseded |
Commit | 6a887bcc4138de9747fdfafc4ebf0a1c6ef4b2c1 |
Delegated to: | Conor Dooley |
Headers | show |
Series | Add STG/ISP/VOUT clock and reset drivers for StarFive JH7110 | expand |
Context | Check | Description |
---|---|---|
conchuod/cover_letter | success | Series has a cover letter |
conchuod/tree_selection | success | Guessed tree name to be for-next at HEAD ac9a78681b92 |
conchuod/fixes_present | success | Fixes tag not required for -next series |
conchuod/maintainers_pattern | success | MAINTAINERS pattern errors before the patch: 6 and now 6 |
conchuod/verify_signedoff | success | Signed-off-by tag matches author and committer |
conchuod/kdoc | success | Errors and warnings before: 0 this patch: 0 |
conchuod/build_rv64_clang_allmodconfig | success | Errors and warnings before: 8 this patch: 8 |
conchuod/module_param | success | Was 0 now: 0 |
conchuod/build_rv64_gcc_allmodconfig | success | Errors and warnings before: 8 this patch: 8 |
conchuod/build_rv32_defconfig | success | Build OK |
conchuod/dtb_warn_rv64 | success | Errors and warnings before: 3 this patch: 3 |
conchuod/header_inline | success | No static functions without inline keyword in header files |
conchuod/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 12 lines checked |
conchuod/build_rv64_nommu_k210_defconfig | success | Build OK |
conchuod/verify_fixes | success | No Fixes tag |
conchuod/build_rv64_nommu_virt_defconfig | success | Build OK |
On Thu, May 18, 2023 at 06:12:32PM +0800, Xingyu Wu wrote: > From: Walker Chen <walker.chen@starfivetech.com> > > Add the pmu controller node for the Starfive JH7110 SoC. The PMU needs > to be used by other modules such as VPU, ISP, etc. > > Signed-off-by: Walker Chen <walker.chen@starfivetech.com> Firstly, this is missing your SoB - but more importantly this is already in my tree as 6a887bcc4138 ("riscv: dts: starfive: Add PMU controller node"). Thanks, Conor. > --- > arch/riscv/boot/dts/starfive/jh7110.dtsi | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/arch/riscv/boot/dts/starfive/jh7110.dtsi b/arch/riscv/boot/dts/starfive/jh7110.dtsi > index 4c5fdb905da8..30e1f34d5cf8 100644 > --- a/arch/riscv/boot/dts/starfive/jh7110.dtsi > +++ b/arch/riscv/boot/dts/starfive/jh7110.dtsi > @@ -496,5 +496,12 @@ aongpio: pinctrl@17020000 { > gpio-controller; > #gpio-cells = <2>; > }; > + > + pwrc: power-controller@17030000 { > + compatible = "starfive,jh7110-pmu"; > + reg = <0x0 0x17030000 0x0 0x10000>; > + interrupts = <111>; > + #power-domain-cells = <1>; > + }; > }; > }; > -- > 2.25.1 >
diff --git a/arch/riscv/boot/dts/starfive/jh7110.dtsi b/arch/riscv/boot/dts/starfive/jh7110.dtsi index 4c5fdb905da8..30e1f34d5cf8 100644 --- a/arch/riscv/boot/dts/starfive/jh7110.dtsi +++ b/arch/riscv/boot/dts/starfive/jh7110.dtsi @@ -496,5 +496,12 @@ aongpio: pinctrl@17020000 { gpio-controller; #gpio-cells = <2>; }; + + pwrc: power-controller@17030000 { + compatible = "starfive,jh7110-pmu"; + reg = <0x0 0x17030000 0x0 0x10000>; + interrupts = <111>; + #power-domain-cells = <1>; + }; }; };