mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 21:44:06 +08:00
b713442214
Adding driver to handle errors from Control Backbone (CBB) which are generated due to illegal accesses. CBB 1.0 is used in Tegra194 SoCs. When an error is reported from a NOC within CBB, the driver prints debug information about failed transaction like Error Code, Error Description, Master, Address, AXI ID, Cache, Protection, Security Group etc. It then causes system crash using BUG_ON() or call WARN() based on whether the error type is fatal or not. Signed-off-by: Sumit Gupta <sumitg@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
12 lines
409 B
Makefile
12 lines
409 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y += fuse/
|
|
obj-y += cbb/
|
|
|
|
obj-y += common.o
|
|
obj-$(CONFIG_SOC_TEGRA_FLOWCTRL) += flowctrl.o
|
|
obj-$(CONFIG_SOC_TEGRA_PMC) += pmc.o
|
|
obj-$(CONFIG_SOC_TEGRA_POWERGATE_BPMP) += powergate-bpmp.o
|
|
obj-$(CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER) += regulators-tegra20.o
|
|
obj-$(CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER) += regulators-tegra30.o
|
|
obj-$(CONFIG_ARCH_TEGRA_186_SOC) += ari-tegra186.o
|