clk: qcom: gcc: Add PCIe0 and PCIe1 GDSC for SM8150
Add the PCIe0 and PCIe1 GDSC defines & driver structures for SM8150. Cc: Stephen Boyd <sboyd@kernel.org> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Bhupesh Sharma <bhupesh.sharma@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20220302203045.184500-4-bhupesh.sharma@linaro.org
This commit is contained in:
parent
b527358cb4
commit
2dc63e768c
@ -3448,6 +3448,24 @@ static struct clk_branch gcc_video_xo_clk = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct gdsc pcie_0_gdsc = {
|
||||||
|
.gdscr = 0x6b004,
|
||||||
|
.pd = {
|
||||||
|
.name = "pcie_0_gdsc",
|
||||||
|
},
|
||||||
|
.pwrsts = PWRSTS_OFF_ON,
|
||||||
|
.flags = POLL_CFG_GDSCR,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct gdsc pcie_1_gdsc = {
|
||||||
|
.gdscr = 0x8d004,
|
||||||
|
.pd = {
|
||||||
|
.name = "pcie_1_gdsc",
|
||||||
|
},
|
||||||
|
.pwrsts = PWRSTS_OFF_ON,
|
||||||
|
.flags = POLL_CFG_GDSCR,
|
||||||
|
};
|
||||||
|
|
||||||
static struct gdsc usb30_prim_gdsc = {
|
static struct gdsc usb30_prim_gdsc = {
|
||||||
.gdscr = 0xf004,
|
.gdscr = 0xf004,
|
||||||
.pd = {
|
.pd = {
|
||||||
@ -3714,6 +3732,8 @@ static const struct qcom_reset_map gcc_sm8150_resets[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static struct gdsc *gcc_sm8150_gdscs[] = {
|
static struct gdsc *gcc_sm8150_gdscs[] = {
|
||||||
|
[PCIE_0_GDSC] = &pcie_0_gdsc,
|
||||||
|
[PCIE_1_GDSC] = &pcie_1_gdsc,
|
||||||
[USB30_PRIM_GDSC] = &usb30_prim_gdsc,
|
[USB30_PRIM_GDSC] = &usb30_prim_gdsc,
|
||||||
[USB30_SEC_GDSC] = &usb30_sec_gdsc,
|
[USB30_SEC_GDSC] = &usb30_sec_gdsc,
|
||||||
};
|
};
|
||||||
|
@ -241,6 +241,8 @@
|
|||||||
#define GCC_USB_PHY_CFG_AHB2PHY_BCR 28
|
#define GCC_USB_PHY_CFG_AHB2PHY_BCR 28
|
||||||
|
|
||||||
/* GCC GDSCRs */
|
/* GCC GDSCRs */
|
||||||
|
#define PCIE_0_GDSC 0
|
||||||
|
#define PCIE_1_GDSC 1
|
||||||
#define USB30_PRIM_GDSC 4
|
#define USB30_PRIM_GDSC 4
|
||||||
#define USB30_SEC_GDSC 5
|
#define USB30_SEC_GDSC 5
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user