| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434 |
- // SPDX-License-Identifier: GPL-2.0
- /*
- * Copyright (C) 2020 Linaro Ltd
- * Author: Jun Nie <jun.nie@linaro.org>
- * With reference of msm8916 interconnect driver of Georgi Djakov.
- */
- #include <linux/device.h>
- #include <linux/interconnect-provider.h>
- #include <linux/io.h>
- #include <linux/module.h>
- #include <linux/mod_devicetable.h>
- #include <linux/platform_device.h>
- #include <linux/regmap.h>
- #include <dt-bindings/interconnect/qcom,msm8939.h>
- #include "icc-rpm.h"
- enum {
- MSM8939_BIMC_SNOC_MAS = 1,
- MSM8939_BIMC_SNOC_SLV,
- MSM8939_MASTER_AMPSS_M0,
- MSM8939_MASTER_LPASS,
- MSM8939_MASTER_BLSP_1,
- MSM8939_MASTER_DEHR,
- MSM8939_MASTER_GRAPHICS_3D,
- MSM8939_MASTER_JPEG,
- MSM8939_MASTER_MDP_PORT0,
- MSM8939_MASTER_MDP_PORT1,
- MSM8939_MASTER_CPP,
- MSM8939_MASTER_CRYPTO_CORE0,
- MSM8939_MASTER_SDCC_1,
- MSM8939_MASTER_SDCC_2,
- MSM8939_MASTER_QDSS_BAM,
- MSM8939_MASTER_QDSS_ETR,
- MSM8939_MASTER_SNOC_CFG,
- MSM8939_MASTER_SPDM,
- MSM8939_MASTER_TCU0,
- MSM8939_MASTER_USB_HS1,
- MSM8939_MASTER_USB_HS2,
- MSM8939_MASTER_VFE,
- MSM8939_MASTER_VIDEO_P0,
- MSM8939_SNOC_MM_INT_0,
- MSM8939_SNOC_MM_INT_1,
- MSM8939_SNOC_MM_INT_2,
- MSM8939_PNOC_INT_0,
- MSM8939_PNOC_INT_1,
- MSM8939_PNOC_MAS_0,
- MSM8939_PNOC_MAS_1,
- MSM8939_PNOC_SLV_0,
- MSM8939_PNOC_SLV_1,
- MSM8939_PNOC_SLV_2,
- MSM8939_PNOC_SLV_3,
- MSM8939_PNOC_SLV_4,
- MSM8939_PNOC_SLV_8,
- MSM8939_PNOC_SLV_9,
- MSM8939_PNOC_SNOC_MAS,
- MSM8939_PNOC_SNOC_SLV,
- MSM8939_SNOC_QDSS_INT,
- MSM8939_SLAVE_AMPSS_L2,
- MSM8939_SLAVE_APSS,
- MSM8939_SLAVE_LPASS,
- MSM8939_SLAVE_BIMC_CFG,
- MSM8939_SLAVE_BLSP_1,
- MSM8939_SLAVE_BOOT_ROM,
- MSM8939_SLAVE_CAMERA_CFG,
- MSM8939_SLAVE_CATS_128,
- MSM8939_SLAVE_OCMEM_64,
- MSM8939_SLAVE_CLK_CTL,
- MSM8939_SLAVE_CRYPTO_0_CFG,
- MSM8939_SLAVE_DEHR_CFG,
- MSM8939_SLAVE_DISPLAY_CFG,
- MSM8939_SLAVE_EBI_CH0,
- MSM8939_SLAVE_GRAPHICS_3D_CFG,
- MSM8939_SLAVE_IMEM_CFG,
- MSM8939_SLAVE_IMEM,
- MSM8939_SLAVE_MPM,
- MSM8939_SLAVE_MSG_RAM,
- MSM8939_SLAVE_MSS,
- MSM8939_SLAVE_PDM,
- MSM8939_SLAVE_PMIC_ARB,
- MSM8939_SLAVE_PNOC_CFG,
- MSM8939_SLAVE_PRNG,
- MSM8939_SLAVE_QDSS_CFG,
- MSM8939_SLAVE_QDSS_STM,
- MSM8939_SLAVE_RBCPR_CFG,
- MSM8939_SLAVE_SDCC_1,
- MSM8939_SLAVE_SDCC_2,
- MSM8939_SLAVE_SECURITY,
- MSM8939_SLAVE_SNOC_CFG,
- MSM8939_SLAVE_SPDM,
- MSM8939_SLAVE_SRVC_SNOC,
- MSM8939_SLAVE_TCSR,
- MSM8939_SLAVE_TLMM,
- MSM8939_SLAVE_USB_HS1,
- MSM8939_SLAVE_USB_HS2,
- MSM8939_SLAVE_VENUS_CFG,
- MSM8939_SNOC_BIMC_0_MAS,
- MSM8939_SNOC_BIMC_0_SLV,
- MSM8939_SNOC_BIMC_1_MAS,
- MSM8939_SNOC_BIMC_1_SLV,
- MSM8939_SNOC_BIMC_2_MAS,
- MSM8939_SNOC_BIMC_2_SLV,
- MSM8939_SNOC_INT_0,
- MSM8939_SNOC_INT_1,
- MSM8939_SNOC_INT_BIMC,
- MSM8939_SNOC_PNOC_MAS,
- MSM8939_SNOC_PNOC_SLV,
- };
- static const u16 bimc_snoc_mas_links[] = {
- MSM8939_BIMC_SNOC_SLV
- };
- static struct qcom_icc_node bimc_snoc_mas = {
- .name = "bimc_snoc_mas",
- .id = MSM8939_BIMC_SNOC_MAS,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(bimc_snoc_mas_links),
- .links = bimc_snoc_mas_links,
- };
- static const u16 bimc_snoc_slv_links[] = {
- MSM8939_SNOC_INT_0,
- MSM8939_SNOC_INT_1
- };
- static struct qcom_icc_node bimc_snoc_slv = {
- .name = "bimc_snoc_slv",
- .id = MSM8939_BIMC_SNOC_SLV,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = 2,
- .num_links = ARRAY_SIZE(bimc_snoc_slv_links),
- .links = bimc_snoc_slv_links,
- };
- static const u16 mas_apss_links[] = {
- MSM8939_SLAVE_EBI_CH0,
- MSM8939_BIMC_SNOC_MAS,
- MSM8939_SLAVE_AMPSS_L2
- };
- static struct qcom_icc_node mas_apss = {
- .name = "mas_apss",
- .id = MSM8939_MASTER_AMPSS_M0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_FIXED,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 0,
- .num_links = ARRAY_SIZE(mas_apss_links),
- .links = mas_apss_links,
- };
- static const u16 mas_audio_links[] = {
- MSM8939_PNOC_MAS_0
- };
- static struct qcom_icc_node mas_audio = {
- .name = "mas_audio",
- .id = MSM8939_MASTER_LPASS,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_audio_links),
- .links = mas_audio_links,
- };
- static const u16 mas_blsp_1_links[] = {
- MSM8939_PNOC_MAS_1
- };
- static struct qcom_icc_node mas_blsp_1 = {
- .name = "mas_blsp_1",
- .id = MSM8939_MASTER_BLSP_1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_blsp_1_links),
- .links = mas_blsp_1_links,
- };
- static const u16 mas_dehr_links[] = {
- MSM8939_PNOC_MAS_0
- };
- static struct qcom_icc_node mas_dehr = {
- .name = "mas_dehr",
- .id = MSM8939_MASTER_DEHR,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_dehr_links),
- .links = mas_dehr_links,
- };
- static const u16 mas_gfx_links[] = {
- MSM8939_SLAVE_EBI_CH0,
- MSM8939_BIMC_SNOC_MAS,
- MSM8939_SLAVE_AMPSS_L2
- };
- static struct qcom_icc_node mas_gfx = {
- .name = "mas_gfx",
- .id = MSM8939_MASTER_GRAPHICS_3D,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_FIXED,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 2,
- .num_links = ARRAY_SIZE(mas_gfx_links),
- .links = mas_gfx_links,
- };
- static const u16 mas_jpeg_links[] = {
- MSM8939_SNOC_MM_INT_0,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_jpeg = {
- .name = "mas_jpeg",
- .id = MSM8939_MASTER_JPEG,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 6,
- .num_links = ARRAY_SIZE(mas_jpeg_links),
- .links = mas_jpeg_links,
- };
- static const u16 mas_mdp0_links[] = {
- MSM8939_SNOC_MM_INT_1,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_mdp0 = {
- .name = "mas_mdp0",
- .id = MSM8939_MASTER_MDP_PORT0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 7,
- .num_links = ARRAY_SIZE(mas_mdp0_links),
- .links = mas_mdp0_links,
- };
- static const u16 mas_mdp1_links[] = {
- MSM8939_SNOC_MM_INT_0,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_mdp1 = {
- .name = "mas_mdp1",
- .id = MSM8939_MASTER_MDP_PORT1,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 13,
- .num_links = ARRAY_SIZE(mas_mdp1_links),
- .links = mas_mdp1_links,
- };
- static const u16 mas_cpp_links[] = {
- MSM8939_SNOC_MM_INT_0,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_cpp = {
- .name = "mas_cpp",
- .id = MSM8939_MASTER_CPP,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 12,
- .num_links = ARRAY_SIZE(mas_cpp_links),
- .links = mas_cpp_links,
- };
- static const u16 mas_pcnoc_crypto_0_links[] = {
- MSM8939_PNOC_INT_1
- };
- static struct qcom_icc_node mas_pcnoc_crypto_0 = {
- .name = "mas_pcnoc_crypto_0",
- .id = MSM8939_MASTER_CRYPTO_CORE0,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_pcnoc_crypto_0_links),
- .links = mas_pcnoc_crypto_0_links,
- };
- static const u16 mas_pcnoc_sdcc_1_links[] = {
- MSM8939_PNOC_INT_1
- };
- static struct qcom_icc_node mas_pcnoc_sdcc_1 = {
- .name = "mas_pcnoc_sdcc_1",
- .id = MSM8939_MASTER_SDCC_1,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_pcnoc_sdcc_1_links),
- .links = mas_pcnoc_sdcc_1_links,
- };
- static const u16 mas_pcnoc_sdcc_2_links[] = {
- MSM8939_PNOC_INT_1
- };
- static struct qcom_icc_node mas_pcnoc_sdcc_2 = {
- .name = "mas_pcnoc_sdcc_2",
- .id = MSM8939_MASTER_SDCC_2,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_pcnoc_sdcc_2_links),
- .links = mas_pcnoc_sdcc_2_links,
- };
- static const u16 mas_qdss_bam_links[] = {
- MSM8939_SNOC_QDSS_INT
- };
- static struct qcom_icc_node mas_qdss_bam = {
- .name = "mas_qdss_bam",
- .id = MSM8939_MASTER_QDSS_BAM,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_FIXED,
- .qos.areq_prio = 1,
- .qos.prio_level = 1,
- .qos.qos_port = 11,
- .num_links = ARRAY_SIZE(mas_qdss_bam_links),
- .links = mas_qdss_bam_links,
- };
- static const u16 mas_qdss_etr_links[] = {
- MSM8939_SNOC_QDSS_INT
- };
- static struct qcom_icc_node mas_qdss_etr = {
- .name = "mas_qdss_etr",
- .id = MSM8939_MASTER_QDSS_ETR,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_FIXED,
- .qos.areq_prio = 1,
- .qos.prio_level = 1,
- .qos.qos_port = 10,
- .num_links = ARRAY_SIZE(mas_qdss_etr_links),
- .links = mas_qdss_etr_links,
- };
- static const u16 mas_snoc_cfg_links[] = {
- MSM8939_SLAVE_SRVC_SNOC
- };
- static struct qcom_icc_node mas_snoc_cfg = {
- .name = "mas_snoc_cfg",
- .id = MSM8939_MASTER_SNOC_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_snoc_cfg_links),
- .links = mas_snoc_cfg_links,
- };
- static const u16 mas_spdm_links[] = {
- MSM8939_PNOC_MAS_0
- };
- static struct qcom_icc_node mas_spdm = {
- .name = "mas_spdm",
- .id = MSM8939_MASTER_SPDM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_spdm_links),
- .links = mas_spdm_links,
- };
- static const u16 mas_tcu0_links[] = {
- MSM8939_SLAVE_EBI_CH0,
- MSM8939_BIMC_SNOC_MAS,
- MSM8939_SLAVE_AMPSS_L2
- };
- static struct qcom_icc_node mas_tcu0 = {
- .name = "mas_tcu0",
- .id = MSM8939_MASTER_TCU0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_FIXED,
- .qos.areq_prio = 2,
- .qos.prio_level = 2,
- .qos.qos_port = 6,
- .num_links = ARRAY_SIZE(mas_tcu0_links),
- .links = mas_tcu0_links,
- };
- static const u16 mas_usb_hs1_links[] = {
- MSM8939_PNOC_MAS_1
- };
- static struct qcom_icc_node mas_usb_hs1 = {
- .name = "mas_usb_hs1",
- .id = MSM8939_MASTER_USB_HS1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_usb_hs1_links),
- .links = mas_usb_hs1_links,
- };
- static const u16 mas_usb_hs2_links[] = {
- MSM8939_PNOC_MAS_1
- };
- static struct qcom_icc_node mas_usb_hs2 = {
- .name = "mas_usb_hs2",
- .id = MSM8939_MASTER_USB_HS2,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(mas_usb_hs2_links),
- .links = mas_usb_hs2_links,
- };
- static const u16 mas_vfe_links[] = {
- MSM8939_SNOC_MM_INT_1,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_vfe = {
- .name = "mas_vfe",
- .id = MSM8939_MASTER_VFE,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 9,
- .num_links = ARRAY_SIZE(mas_vfe_links),
- .links = mas_vfe_links,
- };
- static const u16 mas_video_links[] = {
- MSM8939_SNOC_MM_INT_0,
- MSM8939_SNOC_MM_INT_2
- };
- static struct qcom_icc_node mas_video = {
- .name = "mas_video",
- .id = MSM8939_MASTER_VIDEO_P0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_BYPASS,
- .qos.areq_prio = 0,
- .qos.prio_level = 0,
- .qos.qos_port = 8,
- .num_links = ARRAY_SIZE(mas_video_links),
- .links = mas_video_links,
- };
- static const u16 mm_int_0_links[] = {
- MSM8939_SNOC_BIMC_2_MAS
- };
- static struct qcom_icc_node mm_int_0 = {
- .name = "mm_int_0",
- .id = MSM8939_SNOC_MM_INT_0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(mm_int_0_links),
- .links = mm_int_0_links,
- };
- static const u16 mm_int_1_links[] = {
- MSM8939_SNOC_BIMC_1_MAS
- };
- static struct qcom_icc_node mm_int_1 = {
- .name = "mm_int_1",
- .id = MSM8939_SNOC_MM_INT_1,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(mm_int_1_links),
- .links = mm_int_1_links,
- };
- static const u16 mm_int_2_links[] = {
- MSM8939_SNOC_INT_0
- };
- static struct qcom_icc_node mm_int_2 = {
- .name = "mm_int_2",
- .id = MSM8939_SNOC_MM_INT_2,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(mm_int_2_links),
- .links = mm_int_2_links,
- };
- static const u16 pcnoc_int_0_links[] = {
- MSM8939_PNOC_SNOC_MAS,
- MSM8939_PNOC_SLV_0,
- MSM8939_PNOC_SLV_1,
- MSM8939_PNOC_SLV_2,
- MSM8939_PNOC_SLV_3,
- MSM8939_PNOC_SLV_4,
- MSM8939_PNOC_SLV_8,
- MSM8939_PNOC_SLV_9
- };
- static struct qcom_icc_node pcnoc_int_0 = {
- .name = "pcnoc_int_0",
- .id = MSM8939_PNOC_INT_0,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_int_0_links),
- .links = pcnoc_int_0_links,
- };
- static const u16 pcnoc_int_1_links[] = {
- MSM8939_PNOC_SNOC_MAS
- };
- static struct qcom_icc_node pcnoc_int_1 = {
- .name = "pcnoc_int_1",
- .id = MSM8939_PNOC_INT_1,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_int_1_links),
- .links = pcnoc_int_1_links,
- };
- static const u16 pcnoc_m_0_links[] = {
- MSM8939_PNOC_INT_0
- };
- static struct qcom_icc_node pcnoc_m_0 = {
- .name = "pcnoc_m_0",
- .id = MSM8939_PNOC_MAS_0,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_m_0_links),
- .links = pcnoc_m_0_links,
- };
- static const u16 pcnoc_m_1_links[] = {
- MSM8939_PNOC_SNOC_MAS
- };
- static struct qcom_icc_node pcnoc_m_1 = {
- .name = "pcnoc_m_1",
- .id = MSM8939_PNOC_MAS_1,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_m_1_links),
- .links = pcnoc_m_1_links,
- };
- static const u16 pcnoc_s_0_links[] = {
- MSM8939_SLAVE_CLK_CTL,
- MSM8939_SLAVE_TLMM,
- MSM8939_SLAVE_TCSR,
- MSM8939_SLAVE_SECURITY,
- MSM8939_SLAVE_MSS
- };
- static struct qcom_icc_node pcnoc_s_0 = {
- .name = "pcnoc_s_0",
- .id = MSM8939_PNOC_SLV_0,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_0_links),
- .links = pcnoc_s_0_links,
- };
- static const u16 pcnoc_s_1_links[] = {
- MSM8939_SLAVE_IMEM_CFG,
- MSM8939_SLAVE_CRYPTO_0_CFG,
- MSM8939_SLAVE_MSG_RAM,
- MSM8939_SLAVE_PDM,
- MSM8939_SLAVE_PRNG
- };
- static struct qcom_icc_node pcnoc_s_1 = {
- .name = "pcnoc_s_1",
- .id = MSM8939_PNOC_SLV_1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_1_links),
- .links = pcnoc_s_1_links,
- };
- static const u16 pcnoc_s_2_links[] = {
- MSM8939_SLAVE_SPDM,
- MSM8939_SLAVE_BOOT_ROM,
- MSM8939_SLAVE_BIMC_CFG,
- MSM8939_SLAVE_PNOC_CFG,
- MSM8939_SLAVE_PMIC_ARB
- };
- static struct qcom_icc_node pcnoc_s_2 = {
- .name = "pcnoc_s_2",
- .id = MSM8939_PNOC_SLV_2,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_2_links),
- .links = pcnoc_s_2_links,
- };
- static const u16 pcnoc_s_3_links[] = {
- MSM8939_SLAVE_MPM,
- MSM8939_SLAVE_SNOC_CFG,
- MSM8939_SLAVE_RBCPR_CFG,
- MSM8939_SLAVE_QDSS_CFG,
- MSM8939_SLAVE_DEHR_CFG
- };
- static struct qcom_icc_node pcnoc_s_3 = {
- .name = "pcnoc_s_3",
- .id = MSM8939_PNOC_SLV_3,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_3_links),
- .links = pcnoc_s_3_links,
- };
- static const u16 pcnoc_s_4_links[] = {
- MSM8939_SLAVE_VENUS_CFG,
- MSM8939_SLAVE_CAMERA_CFG,
- MSM8939_SLAVE_DISPLAY_CFG
- };
- static struct qcom_icc_node pcnoc_s_4 = {
- .name = "pcnoc_s_4",
- .id = MSM8939_PNOC_SLV_4,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_4_links),
- .links = pcnoc_s_4_links,
- };
- static const u16 pcnoc_s_8_links[] = {
- MSM8939_SLAVE_USB_HS1,
- MSM8939_SLAVE_SDCC_1,
- MSM8939_SLAVE_BLSP_1
- };
- static struct qcom_icc_node pcnoc_s_8 = {
- .name = "pcnoc_s_8",
- .id = MSM8939_PNOC_SLV_8,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_8_links),
- .links = pcnoc_s_8_links,
- };
- static const u16 pcnoc_s_9_links[] = {
- MSM8939_SLAVE_SDCC_2,
- MSM8939_SLAVE_LPASS,
- MSM8939_SLAVE_USB_HS2
- };
- static struct qcom_icc_node pcnoc_s_9 = {
- .name = "pcnoc_s_9",
- .id = MSM8939_PNOC_SLV_9,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_s_9_links),
- .links = pcnoc_s_9_links,
- };
- static const u16 pcnoc_snoc_mas_links[] = {
- MSM8939_PNOC_SNOC_SLV
- };
- static struct qcom_icc_node pcnoc_snoc_mas = {
- .name = "pcnoc_snoc_mas",
- .id = MSM8939_PNOC_SNOC_MAS,
- .buswidth = 8,
- .mas_rpm_id = 29,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(pcnoc_snoc_mas_links),
- .links = pcnoc_snoc_mas_links,
- };
- static const u16 pcnoc_snoc_slv_links[] = {
- MSM8939_SNOC_INT_0,
- MSM8939_SNOC_INT_BIMC,
- MSM8939_SNOC_INT_1
- };
- static struct qcom_icc_node pcnoc_snoc_slv = {
- .name = "pcnoc_snoc_slv",
- .id = MSM8939_PNOC_SNOC_SLV,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = 45,
- .num_links = ARRAY_SIZE(pcnoc_snoc_slv_links),
- .links = pcnoc_snoc_slv_links,
- };
- static const u16 qdss_int_links[] = {
- MSM8939_SNOC_INT_0,
- MSM8939_SNOC_INT_BIMC
- };
- static struct qcom_icc_node qdss_int = {
- .name = "qdss_int",
- .id = MSM8939_SNOC_QDSS_INT,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(qdss_int_links),
- .links = qdss_int_links,
- };
- static struct qcom_icc_node slv_apps_l2 = {
- .name = "slv_apps_l2",
- .id = MSM8939_SLAVE_AMPSS_L2,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_apss = {
- .name = "slv_apss",
- .id = MSM8939_SLAVE_APSS,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_audio = {
- .name = "slv_audio",
- .id = MSM8939_SLAVE_LPASS,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_bimc_cfg = {
- .name = "slv_bimc_cfg",
- .id = MSM8939_SLAVE_BIMC_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_blsp_1 = {
- .name = "slv_blsp_1",
- .id = MSM8939_SLAVE_BLSP_1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_boot_rom = {
- .name = "slv_boot_rom",
- .id = MSM8939_SLAVE_BOOT_ROM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_camera_cfg = {
- .name = "slv_camera_cfg",
- .id = MSM8939_SLAVE_CAMERA_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_cats_0 = {
- .name = "slv_cats_0",
- .id = MSM8939_SLAVE_CATS_128,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_cats_1 = {
- .name = "slv_cats_1",
- .id = MSM8939_SLAVE_OCMEM_64,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_clk_ctl = {
- .name = "slv_clk_ctl",
- .id = MSM8939_SLAVE_CLK_CTL,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_crypto_0_cfg = {
- .name = "slv_crypto_0_cfg",
- .id = MSM8939_SLAVE_CRYPTO_0_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_dehr_cfg = {
- .name = "slv_dehr_cfg",
- .id = MSM8939_SLAVE_DEHR_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_display_cfg = {
- .name = "slv_display_cfg",
- .id = MSM8939_SLAVE_DISPLAY_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_ebi_ch0 = {
- .name = "slv_ebi_ch0",
- .id = MSM8939_SLAVE_EBI_CH0,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = 0,
- };
- static struct qcom_icc_node slv_gfx_cfg = {
- .name = "slv_gfx_cfg",
- .id = MSM8939_SLAVE_GRAPHICS_3D_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_imem_cfg = {
- .name = "slv_imem_cfg",
- .id = MSM8939_SLAVE_IMEM_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_imem = {
- .name = "slv_imem",
- .id = MSM8939_SLAVE_IMEM,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = 26,
- };
- static struct qcom_icc_node slv_mpm = {
- .name = "slv_mpm",
- .id = MSM8939_SLAVE_MPM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_msg_ram = {
- .name = "slv_msg_ram",
- .id = MSM8939_SLAVE_MSG_RAM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_mss = {
- .name = "slv_mss",
- .id = MSM8939_SLAVE_MSS,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_pdm = {
- .name = "slv_pdm",
- .id = MSM8939_SLAVE_PDM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_pmic_arb = {
- .name = "slv_pmic_arb",
- .id = MSM8939_SLAVE_PMIC_ARB,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_pcnoc_cfg = {
- .name = "slv_pcnoc_cfg",
- .id = MSM8939_SLAVE_PNOC_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_prng = {
- .name = "slv_prng",
- .id = MSM8939_SLAVE_PRNG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_qdss_cfg = {
- .name = "slv_qdss_cfg",
- .id = MSM8939_SLAVE_QDSS_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_qdss_stm = {
- .name = "slv_qdss_stm",
- .id = MSM8939_SLAVE_QDSS_STM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = 30,
- };
- static struct qcom_icc_node slv_rbcpr_cfg = {
- .name = "slv_rbcpr_cfg",
- .id = MSM8939_SLAVE_RBCPR_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_sdcc_1 = {
- .name = "slv_sdcc_1",
- .id = MSM8939_SLAVE_SDCC_1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_sdcc_2 = {
- .name = "slv_sdcc_2",
- .id = MSM8939_SLAVE_SDCC_2,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_security = {
- .name = "slv_security",
- .id = MSM8939_SLAVE_SECURITY,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_snoc_cfg = {
- .name = "slv_snoc_cfg",
- .id = MSM8939_SLAVE_SNOC_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_spdm = {
- .name = "slv_spdm",
- .id = MSM8939_SLAVE_SPDM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_srvc_snoc = {
- .name = "slv_srvc_snoc",
- .id = MSM8939_SLAVE_SRVC_SNOC,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_tcsr = {
- .name = "slv_tcsr",
- .id = MSM8939_SLAVE_TCSR,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_tlmm = {
- .name = "slv_tlmm",
- .id = MSM8939_SLAVE_TLMM,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_usb_hs1 = {
- .name = "slv_usb_hs1",
- .id = MSM8939_SLAVE_USB_HS1,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_usb_hs2 = {
- .name = "slv_usb_hs2",
- .id = MSM8939_SLAVE_USB_HS2,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static struct qcom_icc_node slv_venus_cfg = {
- .name = "slv_venus_cfg",
- .id = MSM8939_SLAVE_VENUS_CFG,
- .buswidth = 4,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- };
- static const u16 snoc_bimc_0_mas_links[] = {
- MSM8939_SNOC_BIMC_0_SLV
- };
- static struct qcom_icc_node snoc_bimc_0_mas = {
- .name = "snoc_bimc_0_mas",
- .id = MSM8939_SNOC_BIMC_0_MAS,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(snoc_bimc_0_mas_links),
- .links = snoc_bimc_0_mas_links,
- };
- static const u16 snoc_bimc_0_slv_links[] = {
- MSM8939_SLAVE_EBI_CH0
- };
- static struct qcom_icc_node snoc_bimc_0_slv = {
- .name = "snoc_bimc_0_slv",
- .id = MSM8939_SNOC_BIMC_0_SLV,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(snoc_bimc_0_slv_links),
- .links = snoc_bimc_0_slv_links,
- };
- static const u16 snoc_bimc_1_mas_links[] = {
- MSM8939_SNOC_BIMC_1_SLV
- };
- static struct qcom_icc_node snoc_bimc_1_mas = {
- .name = "snoc_bimc_1_mas",
- .id = MSM8939_SNOC_BIMC_1_MAS,
- .buswidth = 16,
- .mas_rpm_id = 76,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(snoc_bimc_1_mas_links),
- .links = snoc_bimc_1_mas_links,
- };
- static const u16 snoc_bimc_1_slv_links[] = {
- MSM8939_SLAVE_EBI_CH0
- };
- static struct qcom_icc_node snoc_bimc_1_slv = {
- .name = "snoc_bimc_1_slv",
- .id = MSM8939_SNOC_BIMC_1_SLV,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = 104,
- .num_links = ARRAY_SIZE(snoc_bimc_1_slv_links),
- .links = snoc_bimc_1_slv_links,
- };
- static const u16 snoc_bimc_2_mas_links[] = {
- MSM8939_SNOC_BIMC_2_SLV
- };
- static struct qcom_icc_node snoc_bimc_2_mas = {
- .name = "snoc_bimc_2_mas",
- .id = MSM8939_SNOC_BIMC_2_MAS,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(snoc_bimc_2_mas_links),
- .links = snoc_bimc_2_mas_links,
- };
- static const u16 snoc_bimc_2_slv_links[] = {
- MSM8939_SLAVE_EBI_CH0
- };
- static struct qcom_icc_node snoc_bimc_2_slv = {
- .name = "snoc_bimc_2_slv",
- .id = MSM8939_SNOC_BIMC_2_SLV,
- .buswidth = 16,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .qos.ap_owned = true,
- .qos.qos_mode = NOC_QOS_MODE_INVALID,
- .num_links = ARRAY_SIZE(snoc_bimc_2_slv_links),
- .links = snoc_bimc_2_slv_links,
- };
- static const u16 snoc_int_0_links[] = {
- MSM8939_SLAVE_QDSS_STM,
- MSM8939_SLAVE_IMEM,
- MSM8939_SNOC_PNOC_MAS
- };
- static struct qcom_icc_node snoc_int_0 = {
- .name = "snoc_int_0",
- .id = MSM8939_SNOC_INT_0,
- .buswidth = 8,
- .mas_rpm_id = 99,
- .slv_rpm_id = 130,
- .num_links = ARRAY_SIZE(snoc_int_0_links),
- .links = snoc_int_0_links,
- };
- static const u16 snoc_int_1_links[] = {
- MSM8939_SLAVE_APSS,
- MSM8939_SLAVE_CATS_128,
- MSM8939_SLAVE_OCMEM_64
- };
- static struct qcom_icc_node snoc_int_1 = {
- .name = "snoc_int_1",
- .id = MSM8939_SNOC_INT_1,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(snoc_int_1_links),
- .links = snoc_int_1_links,
- };
- static const u16 snoc_int_bimc_links[] = {
- MSM8939_SNOC_BIMC_1_MAS
- };
- static struct qcom_icc_node snoc_int_bimc = {
- .name = "snoc_int_bimc",
- .id = MSM8939_SNOC_INT_BIMC,
- .buswidth = 8,
- .mas_rpm_id = 101,
- .slv_rpm_id = 132,
- .num_links = ARRAY_SIZE(snoc_int_bimc_links),
- .links = snoc_int_bimc_links,
- };
- static const u16 snoc_pcnoc_mas_links[] = {
- MSM8939_SNOC_PNOC_SLV
- };
- static struct qcom_icc_node snoc_pcnoc_mas = {
- .name = "snoc_pcnoc_mas",
- .id = MSM8939_SNOC_PNOC_MAS,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(snoc_pcnoc_mas_links),
- .links = snoc_pcnoc_mas_links,
- };
- static const u16 snoc_pcnoc_slv_links[] = {
- MSM8939_PNOC_INT_0
- };
- static struct qcom_icc_node snoc_pcnoc_slv = {
- .name = "snoc_pcnoc_slv",
- .id = MSM8939_SNOC_PNOC_SLV,
- .buswidth = 8,
- .mas_rpm_id = -1,
- .slv_rpm_id = -1,
- .num_links = ARRAY_SIZE(snoc_pcnoc_slv_links),
- .links = snoc_pcnoc_slv_links,
- };
- static struct qcom_icc_node * const msm8939_snoc_nodes[] = {
- [BIMC_SNOC_SLV] = &bimc_snoc_slv,
- [MASTER_QDSS_BAM] = &mas_qdss_bam,
- [MASTER_QDSS_ETR] = &mas_qdss_etr,
- [MASTER_SNOC_CFG] = &mas_snoc_cfg,
- [PCNOC_SNOC_SLV] = &pcnoc_snoc_slv,
- [SLAVE_APSS] = &slv_apss,
- [SLAVE_CATS_128] = &slv_cats_0,
- [SLAVE_OCMEM_64] = &slv_cats_1,
- [SLAVE_IMEM] = &slv_imem,
- [SLAVE_QDSS_STM] = &slv_qdss_stm,
- [SLAVE_SRVC_SNOC] = &slv_srvc_snoc,
- [SNOC_BIMC_0_MAS] = &snoc_bimc_0_mas,
- [SNOC_BIMC_1_MAS] = &snoc_bimc_1_mas,
- [SNOC_BIMC_2_MAS] = &snoc_bimc_2_mas,
- [SNOC_INT_0] = &snoc_int_0,
- [SNOC_INT_1] = &snoc_int_1,
- [SNOC_INT_BIMC] = &snoc_int_bimc,
- [SNOC_PCNOC_MAS] = &snoc_pcnoc_mas,
- [SNOC_QDSS_INT] = &qdss_int,
- };
- static const struct regmap_config msm8939_snoc_regmap_config = {
- .reg_bits = 32,
- .reg_stride = 4,
- .val_bits = 32,
- .max_register = 0x14080,
- .fast_io = true,
- };
- static const struct qcom_icc_desc msm8939_snoc = {
- .type = QCOM_ICC_NOC,
- .nodes = msm8939_snoc_nodes,
- .num_nodes = ARRAY_SIZE(msm8939_snoc_nodes),
- .bus_clk_desc = &bus_1_clk,
- .regmap_cfg = &msm8939_snoc_regmap_config,
- .qos_offset = 0x7000,
- };
- static struct qcom_icc_node * const msm8939_snoc_mm_nodes[] = {
- [MASTER_VIDEO_P0] = &mas_video,
- [MASTER_JPEG] = &mas_jpeg,
- [MASTER_VFE] = &mas_vfe,
- [MASTER_MDP_PORT0] = &mas_mdp0,
- [MASTER_MDP_PORT1] = &mas_mdp1,
- [MASTER_CPP] = &mas_cpp,
- [SNOC_MM_INT_0] = &mm_int_0,
- [SNOC_MM_INT_1] = &mm_int_1,
- [SNOC_MM_INT_2] = &mm_int_2,
- };
- static const struct qcom_icc_desc msm8939_snoc_mm = {
- .type = QCOM_ICC_NOC,
- .nodes = msm8939_snoc_mm_nodes,
- .num_nodes = ARRAY_SIZE(msm8939_snoc_mm_nodes),
- .bus_clk_desc = &bus_2_clk,
- .regmap_cfg = &msm8939_snoc_regmap_config,
- .qos_offset = 0x7000,
- };
- static struct qcom_icc_node * const msm8939_bimc_nodes[] = {
- [BIMC_SNOC_MAS] = &bimc_snoc_mas,
- [MASTER_AMPSS_M0] = &mas_apss,
- [MASTER_GRAPHICS_3D] = &mas_gfx,
- [MASTER_TCU0] = &mas_tcu0,
- [SLAVE_AMPSS_L2] = &slv_apps_l2,
- [SLAVE_EBI_CH0] = &slv_ebi_ch0,
- [SNOC_BIMC_0_SLV] = &snoc_bimc_0_slv,
- [SNOC_BIMC_1_SLV] = &snoc_bimc_1_slv,
- [SNOC_BIMC_2_SLV] = &snoc_bimc_2_slv,
- };
- static const struct regmap_config msm8939_bimc_regmap_config = {
- .reg_bits = 32,
- .reg_stride = 4,
- .val_bits = 32,
- .max_register = 0x62000,
- .fast_io = true,
- };
- static const struct qcom_icc_desc msm8939_bimc = {
- .type = QCOM_ICC_BIMC,
- .nodes = msm8939_bimc_nodes,
- .num_nodes = ARRAY_SIZE(msm8939_bimc_nodes),
- .bus_clk_desc = &bimc_clk,
- .regmap_cfg = &msm8939_bimc_regmap_config,
- .qos_offset = 0x8000,
- };
- static struct qcom_icc_node * const msm8939_pcnoc_nodes[] = {
- [MASTER_BLSP_1] = &mas_blsp_1,
- [MASTER_DEHR] = &mas_dehr,
- [MASTER_LPASS] = &mas_audio,
- [MASTER_CRYPTO_CORE0] = &mas_pcnoc_crypto_0,
- [MASTER_SDCC_1] = &mas_pcnoc_sdcc_1,
- [MASTER_SDCC_2] = &mas_pcnoc_sdcc_2,
- [MASTER_SPDM] = &mas_spdm,
- [MASTER_USB_HS1] = &mas_usb_hs1,
- [MASTER_USB_HS2] = &mas_usb_hs2,
- [PCNOC_INT_0] = &pcnoc_int_0,
- [PCNOC_INT_1] = &pcnoc_int_1,
- [PCNOC_MAS_0] = &pcnoc_m_0,
- [PCNOC_MAS_1] = &pcnoc_m_1,
- [PCNOC_SLV_0] = &pcnoc_s_0,
- [PCNOC_SLV_1] = &pcnoc_s_1,
- [PCNOC_SLV_2] = &pcnoc_s_2,
- [PCNOC_SLV_3] = &pcnoc_s_3,
- [PCNOC_SLV_4] = &pcnoc_s_4,
- [PCNOC_SLV_8] = &pcnoc_s_8,
- [PCNOC_SLV_9] = &pcnoc_s_9,
- [PCNOC_SNOC_MAS] = &pcnoc_snoc_mas,
- [SLAVE_BIMC_CFG] = &slv_bimc_cfg,
- [SLAVE_BLSP_1] = &slv_blsp_1,
- [SLAVE_BOOT_ROM] = &slv_boot_rom,
- [SLAVE_CAMERA_CFG] = &slv_camera_cfg,
- [SLAVE_CLK_CTL] = &slv_clk_ctl,
- [SLAVE_CRYPTO_0_CFG] = &slv_crypto_0_cfg,
- [SLAVE_DEHR_CFG] = &slv_dehr_cfg,
- [SLAVE_DISPLAY_CFG] = &slv_display_cfg,
- [SLAVE_GRAPHICS_3D_CFG] = &slv_gfx_cfg,
- [SLAVE_IMEM_CFG] = &slv_imem_cfg,
- [SLAVE_LPASS] = &slv_audio,
- [SLAVE_MPM] = &slv_mpm,
- [SLAVE_MSG_RAM] = &slv_msg_ram,
- [SLAVE_MSS] = &slv_mss,
- [SLAVE_PDM] = &slv_pdm,
- [SLAVE_PMIC_ARB] = &slv_pmic_arb,
- [SLAVE_PCNOC_CFG] = &slv_pcnoc_cfg,
- [SLAVE_PRNG] = &slv_prng,
- [SLAVE_QDSS_CFG] = &slv_qdss_cfg,
- [SLAVE_RBCPR_CFG] = &slv_rbcpr_cfg,
- [SLAVE_SDCC_1] = &slv_sdcc_1,
- [SLAVE_SDCC_2] = &slv_sdcc_2,
- [SLAVE_SECURITY] = &slv_security,
- [SLAVE_SNOC_CFG] = &slv_snoc_cfg,
- [SLAVE_SPDM] = &slv_spdm,
- [SLAVE_TCSR] = &slv_tcsr,
- [SLAVE_TLMM] = &slv_tlmm,
- [SLAVE_USB_HS1] = &slv_usb_hs1,
- [SLAVE_USB_HS2] = &slv_usb_hs2,
- [SLAVE_VENUS_CFG] = &slv_venus_cfg,
- [SNOC_PCNOC_SLV] = &snoc_pcnoc_slv,
- };
- static const struct regmap_config msm8939_pcnoc_regmap_config = {
- .reg_bits = 32,
- .reg_stride = 4,
- .val_bits = 32,
- .max_register = 0x11000,
- .fast_io = true,
- };
- static const struct qcom_icc_desc msm8939_pcnoc = {
- .type = QCOM_ICC_NOC,
- .nodes = msm8939_pcnoc_nodes,
- .num_nodes = ARRAY_SIZE(msm8939_pcnoc_nodes),
- .bus_clk_desc = &bus_0_clk,
- .regmap_cfg = &msm8939_pcnoc_regmap_config,
- .qos_offset = 0x7000,
- };
- static const struct of_device_id msm8939_noc_of_match[] = {
- { .compatible = "qcom,msm8939-bimc", .data = &msm8939_bimc },
- { .compatible = "qcom,msm8939-pcnoc", .data = &msm8939_pcnoc },
- { .compatible = "qcom,msm8939-snoc", .data = &msm8939_snoc },
- { .compatible = "qcom,msm8939-snoc-mm", .data = &msm8939_snoc_mm },
- { }
- };
- MODULE_DEVICE_TABLE(of, msm8939_noc_of_match);
- static struct platform_driver msm8939_noc_driver = {
- .probe = qnoc_probe,
- .remove_new = qnoc_remove,
- .driver = {
- .name = "qnoc-msm8939",
- .of_match_table = msm8939_noc_of_match,
- .sync_state = icc_sync_state,
- },
- };
- module_platform_driver(msm8939_noc_driver);
- MODULE_AUTHOR("Jun Nie <jun.nie@linaro.org>");
- MODULE_DESCRIPTION("Qualcomm MSM8939 NoC driver");
- MODULE_LICENSE("GPL v2");
|