mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* migrate u-boot and kernel to mainline * Add patches for 6.17 * fix compile for patches addes * Orderer patches, switch kernel config to sunxi64, recreate some patches for fix build * Update linux-sunxi64-edge.config after pm-domain & sun55i-gmac200 activate * enable wifi and bluetooth * revert linux-sunxi64-edge.config - Revert linux-sunxi64-edge.config - Add modules: CONFIG_IOMMUFD, CONFIG_SUN50I_IOMMU, CONFIG_SUN55I_PCK600. * drop sunxi-dev-6.14 and cleanup involved patches * Update radxa-cubie-a5e.csc make change proposed by igorpecovnik
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From: Chen-Yu Tsai <wens@csie.org>
|
|
|
|
There is a PPU0 reset control bit in the same register as the PPU1
|
|
reset control. This missing reset control is for the PCK-600 unit
|
|
in the SoC. Manual tests show that the reset control indeed exists,
|
|
and if not configured, the system will hang when the PCK-600 registers
|
|
are accessed.
|
|
|
|
Add a reset entry for it at the end of the existing ones.
|
|
|
|
Fixes: 8cea339cfb81 ("clk: sunxi-ng: add support for the A523/T527 PRCM CCU")
|
|
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
|
|
---
|
|
drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c b/drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c
|
|
index b5464d8083c8..70ce0ca0cb7d 100644
|
|
--- a/drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c
|
|
+++ b/drivers/clk/sunxi-ng/ccu-sun55i-a523-r.c
|
|
@@ -204,6 +204,7 @@ static struct ccu_reset_map sun55i_a523_r_ccu_resets[] = {
|
|
[RST_BUS_R_IR_RX] = { 0x1cc, BIT(16) },
|
|
[RST_BUS_R_RTC] = { 0x20c, BIT(16) },
|
|
[RST_BUS_R_CPUCFG] = { 0x22c, BIT(16) },
|
|
+ [RST_BUS_R_PPU0] = { 0x1ac, BIT(16) },
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun55i_a523_r_ccu_desc = {
|
|
--
|
|
2.39.5
|