Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'v6.6-rockchip-drivers1' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip into soc/drivers

PD_VO powerdomain for rv1126 and disabling of the automatic switch between
sdmmc and jtag for rk3588 (makes sdmmc unreliable).

This includes the shared genpd-v6.5-rc1-1 tag from Ulf Hansson, which moves
the powerdomain drivers into a new genpd subsystem.

* tag 'v6.6-rockchip-drivers1' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip:
soc: rockchip: grf: Fix SDMMC not working on RK3588 with bus-width > 1
genpd: rockchip: Add PD_VO entry for rv1126

Link: https://lore.kernel.org/r/40318909.XM6RcZxFsP@phil
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

+15
+1
drivers/genpd/rockchip/pm-domains.c
··· 976 976 static const struct rockchip_domain_info rv1126_pm_domains[] = { 977 977 [RV1126_PD_VEPU] = DOMAIN_RV1126("vepu", BIT(2), BIT(9), BIT(9), false), 978 978 [RV1126_PD_VI] = DOMAIN_RV1126("vi", BIT(4), BIT(6), BIT(6), false), 979 + [RV1126_PD_VO] = DOMAIN_RV1126("vo", BIT(5), BIT(7), BIT(7), false), 979 980 [RV1126_PD_ISPP] = DOMAIN_RV1126("ispp", BIT(1), BIT(8), BIT(8), false), 980 981 [RV1126_PD_VDPU] = DOMAIN_RV1126("vdpu", BIT(3), BIT(10), BIT(10), false), 981 982 [RV1126_PD_NVM] = DOMAIN_RV1126("nvm", BIT(7), BIT(11), BIT(11), false),
+14
drivers/soc/rockchip/grf.c
··· 121 121 .num_values = ARRAY_SIZE(rk3566_defaults), 122 122 }; 123 123 124 + #define RK3588_GRF_SOC_CON6 0x0318 125 + 126 + static const struct rockchip_grf_value rk3588_defaults[] __initconst = { 127 + { "jtag switching", RK3588_GRF_SOC_CON6, HIWORD_UPDATE(0, 1, 14) }, 128 + }; 129 + 130 + static const struct rockchip_grf_info rk3588_sysgrf __initconst = { 131 + .values = rk3588_defaults, 132 + .num_values = ARRAY_SIZE(rk3588_defaults), 133 + }; 134 + 124 135 125 136 static const struct of_device_id rockchip_grf_dt_match[] __initconst = { 126 137 { ··· 158 147 }, { 159 148 .compatible = "rockchip,rk3566-pipe-grf", 160 149 .data = (void *)&rk3566_pipegrf, 150 + }, { 151 + .compatible = "rockchip,rk3588-sys-grf", 152 + .data = (void *)&rk3588_sysgrf, 161 153 }, 162 154 { /* sentinel */ }, 163 155 };