diff options
author | Robert Marko <robert.marko@sartura.hr> | 2024-06-03 14:06:14 +0200 |
---|---|---|
committer | Caleb Connolly <caleb.connolly@linaro.org> | 2024-07-26 01:53:12 +0200 |
commit | 13cb918769eb8b6ddafa4bc51736b754ac0e51ae (patch) | |
tree | fc553c9a25a244116af56f5230b1c36922961bb4 /drivers | |
parent | 19ea72e489d4107ebe235e70a493fe3f9f403a9c (diff) | |
download | u-boot-13cb918769eb8b6ddafa4bc51736b754ac0e51ae.tar.gz u-boot-13cb918769eb8b6ddafa4bc51736b754ac0e51ae.tar.bz2 u-boot-13cb918769eb8b6ddafa4bc51736b754ac0e51ae.zip |
clock: qcom: ipq4019: add missing networking resets
IPQ4019 has more networking related resets that will be required for future
wired networking support, so lets add them.
This syncs the driver with Linux.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Reviewed-by: Caleb Connolly <caleb.connolly@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/qcom/clock-ipq4019.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/clk/qcom/clock-ipq4019.c b/drivers/clk/qcom/clock-ipq4019.c index af88ca3950..f6760c6fb3 100644 --- a/drivers/clk/qcom/clock-ipq4019.c +++ b/drivers/clk/qcom/clock-ipq4019.c @@ -144,6 +144,12 @@ static const struct qcom_reset_map gcc_ipq4019_resets[] = { [GCC_TCSR_BCR] = {0x22000, 0}, [GCC_MPM_BCR] = {0x24000, 0}, [GCC_SPDM_BCR] = {0x25000, 0}, + [ESS_MAC1_ARES] = {0x1200C, 0}, + [ESS_MAC2_ARES] = {0x1200C, 1}, + [ESS_MAC3_ARES] = {0x1200C, 2}, + [ESS_MAC4_ARES] = {0x1200C, 3}, + [ESS_MAC5_ARES] = {0x1200C, 4}, + [ESS_PSGMII_ARES] = {0x1200C, 5}, }; static struct msm_clk_data ipq4019_clk_data = { |