Message ID | 20230109002935.244320-2-dmitry.baryshkov@linaro.org (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | clk/interconnect: qcom: finish migration of IP0 to clocks | expand |
On 9.01.2023 01:29, Dmitry Baryshkov wrote: > Drop two defines leftover from the commit 2fb251c26560 ("interconnect: > qcom: sdx55: Drop IP0 interconnects"), which dropped handling of the IP0 > resource in favour of handling it in the clk-rpmh driver. > > Fixes: 2fb251c26560 ("interconnect: qcom: sdx55: Drop IP0 interconnects") > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Konrad > drivers/interconnect/qcom/sdx55.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/interconnect/qcom/sdx55.h b/drivers/interconnect/qcom/sdx55.h > index deff8afe0631..46cbabec8aa1 100644 > --- a/drivers/interconnect/qcom/sdx55.h > +++ b/drivers/interconnect/qcom/sdx55.h > @@ -6,7 +6,7 @@ > #ifndef __DRIVERS_INTERCONNECT_QCOM_SDX55_H > #define __DRIVERS_INTERCONNECT_QCOM_SDX55_H > > -#define SDX55_MASTER_IPA_CORE 0 > +/* 0 was used by MASTER_IPA_CORE, now represented as RPMh clock */ > #define SDX55_MASTER_LLCC 1 > #define SDX55_MASTER_TCU_0 2 > #define SDX55_MASTER_SNOC_GC_MEM_NOC 3 > @@ -28,7 +28,7 @@ > #define SDX55_MASTER_QDSS_ETR 19 > #define SDX55_MASTER_SDCC_1 20 > #define SDX55_MASTER_USB3 21 > -#define SDX55_SLAVE_IPA_CORE 22 > +/* 22 was used by SLAVE_IPA_CORE, now represented as RPMh clock */ > #define SDX55_SLAVE_EBI_CH0 23 > #define SDX55_SLAVE_LLCC 24 > #define SDX55_SLAVE_MEM_NOC_SNOC 25
On Mon, Jan 09, 2023 at 02:29:24AM +0200, Dmitry Baryshkov wrote: > Drop two defines leftover from the commit 2fb251c26560 ("interconnect: > qcom: sdx55: Drop IP0 interconnects"), which dropped handling of the IP0 > resource in favour of handling it in the clk-rpmh driver. > > Fixes: 2fb251c26560 ("interconnect: qcom: sdx55: Drop IP0 interconnects") > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Thanks, Mani > --- > drivers/interconnect/qcom/sdx55.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/interconnect/qcom/sdx55.h b/drivers/interconnect/qcom/sdx55.h > index deff8afe0631..46cbabec8aa1 100644 > --- a/drivers/interconnect/qcom/sdx55.h > +++ b/drivers/interconnect/qcom/sdx55.h > @@ -6,7 +6,7 @@ > #ifndef __DRIVERS_INTERCONNECT_QCOM_SDX55_H > #define __DRIVERS_INTERCONNECT_QCOM_SDX55_H > > -#define SDX55_MASTER_IPA_CORE 0 > +/* 0 was used by MASTER_IPA_CORE, now represented as RPMh clock */ > #define SDX55_MASTER_LLCC 1 > #define SDX55_MASTER_TCU_0 2 > #define SDX55_MASTER_SNOC_GC_MEM_NOC 3 > @@ -28,7 +28,7 @@ > #define SDX55_MASTER_QDSS_ETR 19 > #define SDX55_MASTER_SDCC_1 20 > #define SDX55_MASTER_USB3 21 > -#define SDX55_SLAVE_IPA_CORE 22 > +/* 22 was used by SLAVE_IPA_CORE, now represented as RPMh clock */ > #define SDX55_SLAVE_EBI_CH0 23 > #define SDX55_SLAVE_LLCC 24 > #define SDX55_SLAVE_MEM_NOC_SNOC 25 > -- > 2.39.0 >
diff --git a/drivers/interconnect/qcom/sdx55.h b/drivers/interconnect/qcom/sdx55.h index deff8afe0631..46cbabec8aa1 100644 --- a/drivers/interconnect/qcom/sdx55.h +++ b/drivers/interconnect/qcom/sdx55.h @@ -6,7 +6,7 @@ #ifndef __DRIVERS_INTERCONNECT_QCOM_SDX55_H #define __DRIVERS_INTERCONNECT_QCOM_SDX55_H -#define SDX55_MASTER_IPA_CORE 0 +/* 0 was used by MASTER_IPA_CORE, now represented as RPMh clock */ #define SDX55_MASTER_LLCC 1 #define SDX55_MASTER_TCU_0 2 #define SDX55_MASTER_SNOC_GC_MEM_NOC 3 @@ -28,7 +28,7 @@ #define SDX55_MASTER_QDSS_ETR 19 #define SDX55_MASTER_SDCC_1 20 #define SDX55_MASTER_USB3 21 -#define SDX55_SLAVE_IPA_CORE 22 +/* 22 was used by SLAVE_IPA_CORE, now represented as RPMh clock */ #define SDX55_SLAVE_EBI_CH0 23 #define SDX55_SLAVE_LLCC 24 #define SDX55_SLAVE_MEM_NOC_SNOC 25
Drop two defines leftover from the commit 2fb251c26560 ("interconnect: qcom: sdx55: Drop IP0 interconnects"), which dropped handling of the IP0 resource in favour of handling it in the clk-rpmh driver. Fixes: 2fb251c26560 ("interconnect: qcom: sdx55: Drop IP0 interconnects") Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> --- drivers/interconnect/qcom/sdx55.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)