summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSumit Gupta <sumitg@nvidia.com>2018-04-02 07:34:55 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-30 08:32:56 -0400
commitfa24a82867d9bab8cc5c9f942acb5a15063bb3ad (patch)
tree0ce3a248d42bf816e5ce44246e1f770849ca3cc6 /include/linux
parent0dfe060ccc44606d6e505398e5bb2f3e0b6d5f12 (diff)
tegra: t19x: correct compatible string for NOC's
Correcting compatible string name from bridge to NOC. Also, adding is_ax2apb_bridge_connected flag to check if the cluster is connected to CBB through any AXI2APB bridge. Currently, AON cluster is only one which is not connected. So, no need to read AXI2APB bridge registers for that NOC. Bug 200340783 Change-Id: Iea89b6a3daff1dd30b6d43a9e8254ed362a841d0 Signed-off-by: Sumit Gupta <sumitg@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1686705 GVS: Gerrit_Virtual_Submit Reviewed-by: Bibek Basu <bbasu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/platform/tegra/tegra_cbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/platform/tegra/tegra_cbb.h b/include/linux/platform/tegra/tegra_cbb.h
index 39734bdec..234224fe3 100644
--- a/include/linux/platform/tegra/tegra_cbb.h
+++ b/include/linux/platform/tegra/tegra_cbb.h
@@ -135,6 +135,7 @@ struct tegra_cbb_errlog_record {
135 char **tegra_noc_routeid_initflow; 135 char **tegra_noc_routeid_initflow;
136 char **tegra_noc_routeid_targflow; 136 char **tegra_noc_routeid_targflow;
137 char **tegra_cbb_master_id; 137 char **tegra_cbb_master_id;
138 bool is_ax2apb_bridge_connected;
138 u64 *axi2abp_bases; 139 u64 *axi2abp_bases;
139 int apb_bridge_cnt; 140 int apb_bridge_cnt;
140}; 141};
@@ -153,5 +154,6 @@ struct tegra_cbb_noc_data {
153 char **tegra_noc_routeid_initflow; 154 char **tegra_noc_routeid_initflow;
154 char **tegra_noc_routeid_targflow; 155 char **tegra_noc_routeid_targflow;
155 char **tegra_cbb_master_id; 156 char **tegra_cbb_master_id;
157 bool is_ax2apb_bridge_connected;
156}; 158};
157 159