Message ID | 20221231231429.18357-6-samuel@sholland.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | clk: sunxi-ng: Allwinner R528/T113 clock support | expand |
Context | Check | Description |
---|---|---|
conchuod/patch_count | success | Link |
conchuod/cover_letter | success | Series has a cover letter |
conchuod/tree_selection | success | Guessed tree name to be for-next |
conchuod/fixes_present | success | Fixes tag not required for -next series |
conchuod/maintainers_pattern | success | MAINTAINERS pattern errors before the patch: 13 and now 13 |
conchuod/verify_signedoff | success | Signed-off-by tag matches author and committer |
conchuod/kdoc | success | Errors and warnings before: 0 this patch: 0 |
conchuod/module_param | success | Was 0 now: 0 |
conchuod/alphanumeric_selects | success | Out of order selects before the patch: 57 and now 57 |
conchuod/build_rv32_defconfig | success | Build OK |
conchuod/build_warn_rv64 | success | Errors and warnings before: 2054 this patch: 2054 |
conchuod/dtb_warn_rv64 | success | Errors and warnings before: 0 this patch: 0 |
conchuod/header_inline | success | No static functions without inline keyword in header files |
conchuod/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 14 lines checked |
conchuod/source_inline | success | Was 0 now: 0 |
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 01/01/2023 00:14, Samuel Holland wrote: > The D1 CCU contains gates and resets for two CAN buses. While the CAN > bus controllers are only documented for the T113 SoC, the CCU is the > same across all SoC variants. > > Reviewed-by: Andre Przywara <andre.przywara@arm.com> > Signed-off-by: Samuel Holland <samuel@sholland.org> > --- > Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof
On Sat, Dec 31, 2022 at 05:14:28PM -0600, Samuel Holland wrote: > The D1 CCU contains gates and resets for two CAN buses. While the CAN > bus controllers are only documented for the T113 SoC, the CCU is the > same across all SoC variants. > > Reviewed-by: Andre Przywara <andre.przywara@arm.com> > Signed-off-by: Samuel Holland <samuel@sholland.org> [...] > diff --git a/include/dt-bindings/reset/sun20i-d1-ccu.h b/include/dt-bindings/reset/sun20i-d1-ccu.h > index de9ff5203239..f8001cf50bf1 100644 > --- a/include/dt-bindings/reset/sun20i-d1-ccu.h > +++ b/include/dt-bindings/reset/sun20i-d1-ccu.h > @@ -73,5 +73,7 @@ > #define RST_BUS_DSP_CFG 63 > #define RST_BUS_DSP_DBG 64 > #define RST_BUS_RISCV_CFG 65 > +#define RST_BUS_CAN0 66 > +#define RST_BUS_CAN1 67 Acked-by: Philipp Zabel <p.zabel@pengutronix.de> regards Philipp
diff --git a/include/dt-bindings/clock/sun20i-d1-ccu.h b/include/dt-bindings/clock/sun20i-d1-ccu.h index e3ac53315e1a..e143b9929763 100644 --- a/include/dt-bindings/clock/sun20i-d1-ccu.h +++ b/include/dt-bindings/clock/sun20i-d1-ccu.h @@ -152,5 +152,7 @@ #define CLK_FANOUT0 142 #define CLK_FANOUT1 143 #define CLK_FANOUT2 144 +#define CLK_BUS_CAN0 145 +#define CLK_BUS_CAN1 146 #endif /* _DT_BINDINGS_CLK_SUN20I_D1_CCU_H_ */ diff --git a/include/dt-bindings/reset/sun20i-d1-ccu.h b/include/dt-bindings/reset/sun20i-d1-ccu.h index de9ff5203239..f8001cf50bf1 100644 --- a/include/dt-bindings/reset/sun20i-d1-ccu.h +++ b/include/dt-bindings/reset/sun20i-d1-ccu.h @@ -73,5 +73,7 @@ #define RST_BUS_DSP_CFG 63 #define RST_BUS_DSP_DBG 64 #define RST_BUS_RISCV_CFG 65 +#define RST_BUS_CAN0 66 +#define RST_BUS_CAN1 67 #endif /* _DT_BINDINGS_RST_SUN20I_D1_CCU_H_ */