]> www.infradead.org Git - linux.git/commitdiff
interconnect: qcom: qcs404: Add regmaps and more bus descriptions
authorAdam Skladowski <a39.skl@gmail.com>
Tue, 9 Jul 2024 10:22:51 +0000 (12:22 +0200)
committerGeorgi Djakov <djakov@kernel.org>
Fri, 23 Aug 2024 23:54:42 +0000 (02:54 +0300)
Currently we are lacking descriptions of regmaps, bus clocks
and types of busses, provide them.

Signed-off-by: Adam Skladowski <a39.skl@gmail.com>
Link: https://lore.kernel.org/r/20240709102728.15349-7-a39.skl@gmail.com
Signed-off-by: Georgi Djakov <djakov@kernel.org>
drivers/interconnect/qcom/qcs404.c

index 91b2ccc56a339d8f229c51b0c994e93e636bfed7..63e9ff223ac49153f0407fa9f9a698993ba70d59 100644 (file)
@@ -10,6 +10,7 @@
 #include <linux/module.h>
 #include <linux/mod_devicetable.h>
 #include <linux/platform_device.h>
+#include <linux/regmap.h>
 
 
 #include "icc-rpm.h"
@@ -1067,10 +1068,22 @@ static struct qcom_icc_node * const qcs404_bimc_nodes[] = {
        [SLAVE_BIMC_SNOC] = &slv_bimc_snoc,
 };
 
+static const struct regmap_config qcs404_bimc_regmap_config = {
+       .reg_bits = 32,
+       .reg_stride = 4,
+       .val_bits = 32,
+       .max_register = 0x80000,
+       .fast_io = true,
+};
+
 static const struct qcom_icc_desc qcs404_bimc = {
-       .bus_clk_desc = &bimc_clk,
+       .type = QCOM_ICC_BIMC,
        .nodes = qcs404_bimc_nodes,
        .num_nodes = ARRAY_SIZE(qcs404_bimc_nodes),
+       .bus_clk_desc = &bimc_clk,
+       .regmap_cfg = &qcs404_bimc_regmap_config,
+       .qos_offset = 0x8000,
+       .ab_coeff = 153,
 };
 
 static struct qcom_icc_node * const qcs404_pcnoc_nodes[] = {
@@ -1122,10 +1135,22 @@ static struct qcom_icc_node * const qcs404_pcnoc_nodes[] = {
        [SLAVE_PCNOC_SNOC] = &slv_pcnoc_snoc,
 };
 
+static const struct regmap_config qcs404_pcnoc_regmap_config = {
+       .reg_bits = 32,
+       .reg_stride = 4,
+       .val_bits = 32,
+       .max_register = 0x15080,
+       .fast_io = true,
+};
+
 static const struct qcom_icc_desc qcs404_pcnoc = {
-       .bus_clk_desc = &bus_0_clk,
+       .type = QCOM_ICC_NOC,
        .nodes = qcs404_pcnoc_nodes,
        .num_nodes = ARRAY_SIZE(qcs404_pcnoc_nodes),
+       .bus_clk_desc = &bus_0_clk,
+       .qos_offset = 0x7000,
+       .keep_alive = true,
+       .regmap_cfg = &qcs404_pcnoc_regmap_config,
 };
 
 static struct qcom_icc_node * const qcs404_snoc_nodes[] = {
@@ -1151,10 +1176,21 @@ static struct qcom_icc_node * const qcs404_snoc_nodes[] = {
        [SLAVE_LPASS] = &slv_lpass,
 };
 
+static const struct regmap_config qcs404_snoc_regmap_config = {
+       .reg_bits = 32,
+       .reg_stride = 4,
+       .val_bits = 32,
+       .max_register = 0x23080,
+       .fast_io = true,
+};
+
 static const struct qcom_icc_desc qcs404_snoc = {
-       .bus_clk_desc = &bus_1_clk,
+       .type = QCOM_ICC_NOC,
        .nodes = qcs404_snoc_nodes,
        .num_nodes = ARRAY_SIZE(qcs404_snoc_nodes),
+       .bus_clk_desc = &bus_1_clk,
+       .qos_offset = 0x11000,
+       .regmap_cfg = &qcs404_snoc_regmap_config,
 };