Skip to content

Commit ba86de8

Browse files
konradybcioGeorgi Djakov
authored andcommitted
interconnect: qcom: qcm2290: Enable keep_alive on all buses
QCM2290 expects all buses to be up at all times when the CPU is active. Enable keep_alive on all of them to achieve that. Fixes: 1a14b1a ("interconnect: qcom: Add QCM2290 driver support") Signed-off-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Georgi Djakov <[email protected]>
1 parent 06c2afb commit ba86de8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/interconnect/qcom/qcm2290.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,6 +1198,7 @@ static const struct qcom_icc_desc qcm2290_bimc = {
11981198
.nodes = qcm2290_bimc_nodes,
11991199
.num_nodes = ARRAY_SIZE(qcm2290_bimc_nodes),
12001200
.regmap_cfg = &qcm2290_bimc_regmap_config,
1201+
.keep_alive = true,
12011202
/* M_REG_BASE() in vendor msm_bus_bimc_adhoc driver */
12021203
.qos_offset = 0x8000,
12031204
};
@@ -1253,6 +1254,7 @@ static const struct qcom_icc_desc qcm2290_cnoc = {
12531254
.nodes = qcm2290_cnoc_nodes,
12541255
.num_nodes = ARRAY_SIZE(qcm2290_cnoc_nodes),
12551256
.regmap_cfg = &qcm2290_cnoc_regmap_config,
1257+
.keep_alive = true,
12561258
};
12571259

12581260
static struct qcom_icc_node * const qcm2290_snoc_nodes[] = {
@@ -1294,6 +1296,7 @@ static const struct qcom_icc_desc qcm2290_snoc = {
12941296
.nodes = qcm2290_snoc_nodes,
12951297
.num_nodes = ARRAY_SIZE(qcm2290_snoc_nodes),
12961298
.regmap_cfg = &qcm2290_snoc_regmap_config,
1299+
.keep_alive = true,
12971300
/* Vendor DT node fab-sys_noc property 'qcom,base-offset' */
12981301
.qos_offset = 0x15000,
12991302
};
@@ -1307,6 +1310,7 @@ static const struct qcom_icc_desc qcm2290_qup_virt = {
13071310
.type = QCOM_ICC_QNOC,
13081311
.nodes = qcm2290_qup_virt_nodes,
13091312
.num_nodes = ARRAY_SIZE(qcm2290_qup_virt_nodes),
1313+
+ .keep_alive = true,
13101314
};
13111315

13121316
static struct qcom_icc_node * const qcm2290_mmnrt_virt_nodes[] = {
@@ -1321,6 +1325,7 @@ static const struct qcom_icc_desc qcm2290_mmnrt_virt = {
13211325
.nodes = qcm2290_mmnrt_virt_nodes,
13221326
.num_nodes = ARRAY_SIZE(qcm2290_mmnrt_virt_nodes),
13231327
.regmap_cfg = &qcm2290_snoc_regmap_config,
1328+
.keep_alive = true,
13241329
.qos_offset = 0x15000,
13251330
};
13261331

@@ -1335,6 +1340,7 @@ static const struct qcom_icc_desc qcm2290_mmrt_virt = {
13351340
.nodes = qcm2290_mmrt_virt_nodes,
13361341
.num_nodes = ARRAY_SIZE(qcm2290_mmrt_virt_nodes),
13371342
.regmap_cfg = &qcm2290_snoc_regmap_config,
1343+
.keep_alive = true,
13381344
.qos_offset = 0x15000,
13391345
};
13401346

0 commit comments

Comments
 (0)