mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
|
From 43d9788f546d24df22d8ba3fcc2497d7ccc198f3 Mon Sep 17 00:00:00 2001
|
||
|
From: Gokul Sriram Palanisamy <gokulsri@codeaurora.org>
|
||
|
Date: Sat, 30 Jan 2021 10:50:11 +0530
|
||
|
Subject: [PATCH] clk: qcom: Add WCSSAON reset
|
||
|
|
||
|
Add WCSSAON reset required for Q6v5 on IPQ8074 SoC.
|
||
|
|
||
|
Signed-off-by: Gokul Sriram Palanisamy <gokulsri@codeaurora.org>
|
||
|
Signed-off-by: Sricharan R <sricharan@codeaurora.org>
|
||
|
Signed-off-by: Nikhil Prakash V <nprakash@codeaurora.org>
|
||
|
Acked-by: Stephen Boyd <sboyd@kernel.org>
|
||
|
---
|
||
|
drivers/clk/qcom/gcc-ipq8074.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
--- a/drivers/clk/qcom/gcc-ipq8074.c
|
||
|
+++ b/drivers/clk/qcom/gcc-ipq8074.c
|
||
|
@@ -4717,6 +4717,7 @@ static const struct qcom_reset_map gcc_i
|
||
|
[GCC_NSSPORT4_RESET] = { .reg = 0x68014, .bitmask = BIT(27) | GENMASK(9, 8) },
|
||
|
[GCC_NSSPORT5_RESET] = { .reg = 0x68014, .bitmask = BIT(28) | GENMASK(11, 10) },
|
||
|
[GCC_NSSPORT6_RESET] = { .reg = 0x68014, .bitmask = BIT(29) | GENMASK(13, 12) },
|
||
|
+ [GCC_WCSSAON_RESET] = { 0x59010, 0 },
|
||
|
};
|
||
|
|
||
|
static struct gdsc *gcc_ipq8074_gdscs[] = {
|