mirror of
git://nv-tegra.nvidia.com/linux-hwpm.git
synced 2025-12-22 17:30:40 +03:00
tegra: hwpm: rename source files
Shorten source file names by removing "tegra_hwpm" prefix. This will make understanding the code more legible. Jira THWPM-58 Change-Id: I39aac11c9f2a763a254b0605f9d96a7b0f372992 Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2729469 Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com> Reviewed-by: Vasuki Shankar <vasukis@nvidia.com> Reviewed-by: Seema Khowala <seemaj@nvidia.com> GVS: Gerrit_Virtual_Submit
This commit is contained in:
committed by
mobile promotions
parent
4ba1394149
commit
4f1e352286
76
Makefile
76
Makefile
@@ -8,33 +8,33 @@ ccflags-y += -I$(srctree.nvidia)/drivers/platform/tegra/hwpm
|
||||
ccflags-y += -I$(srctree.nvidia)/drivers/platform/tegra/hwpm/include
|
||||
ccflags-y += -I$(srctree.nvidia)/include
|
||||
|
||||
obj-$(CONFIG_DEBUG_FS) += os/linux/tegra_hwpm_debugfs.o
|
||||
obj-y += os/linux/tegra_hwpm_linux.o
|
||||
obj-y += os/linux/tegra_hwpm_io.o
|
||||
obj-y += os/linux/tegra_hwpm_ip.o
|
||||
obj-y += os/linux/tegra_hwpm_ioctl.o
|
||||
obj-y += os/linux/tegra_hwpm_log.o
|
||||
obj-$(CONFIG_DEBUG_FS) += os/linux/debugfs.o
|
||||
obj-y += os/linux/driver.o
|
||||
obj-y += os/linux/io.o
|
||||
obj-y += os/linux/ip_utils.o
|
||||
obj-y += os/linux/ioctl.o
|
||||
obj-y += os/linux/log.o
|
||||
|
||||
obj-y += common/tegra_hwpm_alist_utils.o
|
||||
obj-y += common/tegra_hwpm_aperture_utils.o
|
||||
obj-y += common/tegra_hwpm_ip_utils.o
|
||||
obj-y += common/tegra_hwpm_mem_buf_utils.o
|
||||
obj-y += common/tegra_hwpm_regops_utils.o
|
||||
obj-y += common/tegra_hwpm_resource_utils.o
|
||||
obj-y += common/tegra_hwpm_init.o
|
||||
obj-y += common/allowlist.o
|
||||
obj-y += common/aperture.o
|
||||
obj-y += common/ip.o
|
||||
obj-y += common/mem_buf.o
|
||||
obj-y += common/regops.o
|
||||
obj-y += common/resource.o
|
||||
obj-y += common/init.o
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_T234_HWPM),y)
|
||||
|
||||
obj-y += hal/t234/t234_hwpm_alist_utils.o
|
||||
obj-y += hal/t234/t234_hwpm_aperture_utils.o
|
||||
obj-y += hal/t234/t234_hwpm_interface_utils.o
|
||||
obj-y += hal/t234/t234_hwpm_ip_utils.o
|
||||
obj-y += hal/t234/t234_hwpm_mem_buf_utils.o
|
||||
obj-y += hal/t234/t234_hwpm_regops_allowlist.o
|
||||
obj-y += hal/t234/t234_hwpm_resource_utils.o
|
||||
obj-y += hal/t234/t234_alist.o
|
||||
obj-y += hal/t234/t234_aperture.o
|
||||
obj-y += hal/t234/t234_interface.o
|
||||
obj-y += hal/t234/t234_ip.o
|
||||
obj-y += hal/t234/t234_mem_mgmt.o
|
||||
obj-y += hal/t234/t234_regops_allowlist.o
|
||||
obj-y += hal/t234/t234_resource.o
|
||||
|
||||
obj-y += hal/t234/ip/pma/t234_hwpm_ip_pma.o
|
||||
obj-y += hal/t234/ip/rtr/t234_hwpm_ip_rtr.o
|
||||
obj-y += hal/t234/ip/pma/t234_pma.o
|
||||
obj-y += hal/t234/ip/rtr/t234_rtr.o
|
||||
|
||||
#
|
||||
# Control IP config
|
||||
@@ -55,75 +55,75 @@ endif
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_NVDLA),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_NVDLA
|
||||
obj-y += hal/t234/ip/nvdla/t234_hwpm_ip_nvdla.o
|
||||
obj-y += hal/t234/ip/nvdla/t234_nvdla.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_PVA),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_PVA
|
||||
obj-y += hal/t234/ip/pva/t234_hwpm_ip_pva.o
|
||||
obj-y += hal/t234/ip/pva/t234_pva.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_NV_TEGRA_MC),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_MSS_CHANNEL
|
||||
obj-y += hal/t234/ip/mss_channel/t234_hwpm_ip_mss_channel.o
|
||||
obj-y += hal/t234/ip/mss_channel/t234_mss_channel.o
|
||||
endif
|
||||
|
||||
ifneq ($(CONFIG_TEGRA_HWPM_MINIMAL_IP_ENABLE),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_DISPLAY
|
||||
obj-y += hal/t234/ip/display/t234_hwpm_ip_display.o
|
||||
obj-y += hal/t234/ip/display/t234_display.o
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_ISP),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_ISP
|
||||
obj-y += hal/t234/ip/isp/t234_hwpm_ip_isp.o
|
||||
obj-y += hal/t234/ip/isp/t234_isp.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_NVETHERNET),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_MGBE
|
||||
obj-y += hal/t234/ip/mgbe/t234_hwpm_ip_mgbe.o
|
||||
obj-y += hal/t234/ip/mgbe/t234_mgbe.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_NV_TEGRA_MC),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_MSS_ISO_NISO_HUBS
|
||||
obj-y += hal/t234/ip/mss_iso_niso_hubs/t234_hwpm_ip_mss_iso_niso_hubs.o
|
||||
obj-y += hal/t234/ip/mss_iso_niso_hubs/t234_mss_iso_niso_hubs.o
|
||||
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_MSS_MCF
|
||||
obj-y += hal/t234/ip/mss_mcf/t234_hwpm_ip_mss_mcf.o
|
||||
obj-y += hal/t234/ip/mss_mcf/t234_mss_mcf.o
|
||||
endif
|
||||
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_MSS_GPU_HUB
|
||||
obj-y += hal/t234/ip/mss_gpu_hub/t234_hwpm_ip_mss_gpu_hub.o
|
||||
obj-y += hal/t234/ip/mss_gpu_hub/t234_mss_gpu_hub.o
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_NVDEC),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_NVDEC
|
||||
obj-y += hal/t234/ip/nvdec/t234_hwpm_ip_nvdec.o
|
||||
obj-y += hal/t234/ip/nvdec/t234_nvdec.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_NVENC),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_NVENC
|
||||
obj-y += hal/t234/ip/nvenc/t234_hwpm_ip_nvenc.o
|
||||
obj-y += hal/t234/ip/nvenc/t234_nvenc.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_OFA),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_OFA
|
||||
obj-y += hal/t234/ip/ofa/t234_hwpm_ip_ofa.o
|
||||
obj-y += hal/t234/ip/ofa/t234_ofa.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_PCIE_TEGRA194),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_PCIE
|
||||
obj-y += hal/t234/ip/pcie/t234_hwpm_ip_pcie.o
|
||||
obj-y += hal/t234/ip/pcie/t234_pcie.o
|
||||
endif
|
||||
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_SCF
|
||||
obj-y += hal/t234/ip/scf/t234_hwpm_ip_scf.o
|
||||
obj-y += hal/t234/ip/scf/t234_scf.o
|
||||
|
||||
ifeq ($(CONFIG_VIDEO_TEGRA_VI),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_VI
|
||||
obj-y += hal/t234/ip/vi/t234_hwpm_ip_vi.o
|
||||
obj-y += hal/t234/ip/vi/t234_vi.o
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_TEGRA_GRHOST_VIC),y)
|
||||
ccflags-y += -DCONFIG_T234_HWPM_IP_VIC
|
||||
obj-y += hal/t234/ip/vic/t234_hwpm_ip_vic.o
|
||||
obj-y += hal/t234/ip/vic/t234_vic.o
|
||||
endif
|
||||
|
||||
endif
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include <tegra_hwpm.h>
|
||||
#include <tegra_hwpm_common.h>
|
||||
|
||||
#include <hal/t234/t234_hwpm_init.h>
|
||||
#include <hal/t234/t234_init.h>
|
||||
#ifdef CONFIG_TEGRA_NEXT1_HWPM
|
||||
#include <tegra_hwpm_next_init.h>
|
||||
#endif
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_display.h"
|
||||
#include "t234_display.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_display_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_isp.h"
|
||||
#include "t234_isp.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_isp_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_mgbe.h"
|
||||
#include "t234_mgbe.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_mgbe_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_mss_channel.h"
|
||||
#include "t234_mss_channel.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_mss_channel_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_mss_gpu_hub.h"
|
||||
#include "t234_mss_gpu_hub.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_mss_gpu_hub_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_mss_iso_niso_hubs.h"
|
||||
#include "t234_mss_iso_niso_hubs.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_mss_iso_niso_hub_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_mss_mcf.h"
|
||||
#include "t234_mss_mcf.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_mss_mcf_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_nvdec.h"
|
||||
#include "t234_nvdec.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_nvdec_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_nvdla.h"
|
||||
#include "t234_nvdla.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_nvdla_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_nvenc.h"
|
||||
#include "t234_nvenc.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_nvenc_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_ofa.h"
|
||||
#include "t234_ofa.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_ofa_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_pcie.h"
|
||||
#include "t234_pcie.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_pcie_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_pma.h"
|
||||
#include "t234_pma.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_pma_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_pva.h"
|
||||
#include "t234_pva.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_pva_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_rtr.h"
|
||||
#include "t234_rtr.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
/* RTR aperture should be placed in instance T234_HWPM_IP_RTR_STATIC_RTR_INST */
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_scf.h"
|
||||
#include "t234_scf.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_scf_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_vi.h"
|
||||
#include "t234_vi.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_vi_inst0_perfmon_element_static_array[
|
||||
@@ -11,10 +11,10 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_ip_vic.h"
|
||||
#include "t234_vic.h"
|
||||
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
static struct hwpm_ip_aperture t234_vic_inst0_perfmon_element_static_array[
|
||||
@@ -18,8 +18,8 @@
|
||||
#include <tegra_hwpm_io.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <tegra_hwpm_static_analysis.h>
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_hwpm_regops_allowlist.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
#include <hal/t234/t234_regops_allowlist.h>
|
||||
|
||||
size_t t234_hwpm_get_alist_buf_size(struct tegra_soc_hwpm *hwpm)
|
||||
{
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <tegra_hwpm_log.h>
|
||||
#include <tegra_hwpm_io.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
|
||||
#include <hal/t234/hw/t234_pmasys_soc_hwpm.h>
|
||||
#include <hal/t234/hw/t234_pmmsys_soc_hwpm.h>
|
||||
@@ -18,8 +18,8 @@
|
||||
#include <tegra_hwpm_common.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <tegra_hwpm_static_analysis.h>
|
||||
#include <hal/t234/t234_hwpm_init.h>
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_init.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
|
||||
static struct tegra_soc_hwpm_chip t234_chip_info = {
|
||||
.chip_ips = NULL,
|
||||
@@ -14,24 +14,24 @@
|
||||
#ifndef T234_HWPM_INTERNAL_H
|
||||
#define T234_HWPM_INTERNAL_H
|
||||
|
||||
#include <hal/t234/ip/vi/t234_hwpm_ip_vi.h>
|
||||
#include <hal/t234/ip/isp/t234_hwpm_ip_isp.h>
|
||||
#include <hal/t234/ip/vic/t234_hwpm_ip_vic.h>
|
||||
#include <hal/t234/ip/ofa/t234_hwpm_ip_ofa.h>
|
||||
#include <hal/t234/ip/pva/t234_hwpm_ip_pva.h>
|
||||
#include <hal/t234/ip/nvdla/t234_hwpm_ip_nvdla.h>
|
||||
#include <hal/t234/ip/mgbe/t234_hwpm_ip_mgbe.h>
|
||||
#include <hal/t234/ip/scf/t234_hwpm_ip_scf.h>
|
||||
#include <hal/t234/ip/nvdec/t234_hwpm_ip_nvdec.h>
|
||||
#include <hal/t234/ip/nvenc/t234_hwpm_ip_nvenc.h>
|
||||
#include <hal/t234/ip/pcie/t234_hwpm_ip_pcie.h>
|
||||
#include <hal/t234/ip/display/t234_hwpm_ip_display.h>
|
||||
#include <hal/t234/ip/mss_channel/t234_hwpm_ip_mss_channel.h>
|
||||
#include <hal/t234/ip/mss_gpu_hub/t234_hwpm_ip_mss_gpu_hub.h>
|
||||
#include <hal/t234/ip/mss_iso_niso_hubs/t234_hwpm_ip_mss_iso_niso_hubs.h>
|
||||
#include <hal/t234/ip/mss_mcf/t234_hwpm_ip_mss_mcf.h>
|
||||
#include <hal/t234/ip/pma/t234_hwpm_ip_pma.h>
|
||||
#include <hal/t234/ip/rtr/t234_hwpm_ip_rtr.h>
|
||||
#include <hal/t234/ip/vi/t234_vi.h>
|
||||
#include <hal/t234/ip/isp/t234_isp.h>
|
||||
#include <hal/t234/ip/vic/t234_vic.h>
|
||||
#include <hal/t234/ip/ofa/t234_ofa.h>
|
||||
#include <hal/t234/ip/pva/t234_pva.h>
|
||||
#include <hal/t234/ip/nvdla/t234_nvdla.h>
|
||||
#include <hal/t234/ip/mgbe/t234_mgbe.h>
|
||||
#include <hal/t234/ip/scf/t234_scf.h>
|
||||
#include <hal/t234/ip/nvdec/t234_nvdec.h>
|
||||
#include <hal/t234/ip/nvenc/t234_nvenc.h>
|
||||
#include <hal/t234/ip/pcie/t234_pcie.h>
|
||||
#include <hal/t234/ip/display/t234_display.h>
|
||||
#include <hal/t234/ip/mss_channel/t234_mss_channel.h>
|
||||
#include <hal/t234/ip/mss_gpu_hub/t234_mss_gpu_hub.h>
|
||||
#include <hal/t234/ip/mss_iso_niso_hubs/t234_mss_iso_niso_hubs.h>
|
||||
#include <hal/t234/ip/mss_mcf/t234_mss_mcf.h>
|
||||
#include <hal/t234/ip/pma/t234_pma.h>
|
||||
#include <hal/t234/ip/rtr/t234_rtr.h>
|
||||
|
||||
#define T234_HWPM_ACTIVE_IP_MAX T234_HWPM_IP_MAX
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <tegra_hwpm_log.h>
|
||||
#include <tegra_hwpm_common.h>
|
||||
#include <tegra_hwpm_static_analysis.h>
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
#include <hal/t234/hw/t234_addr_map_soc_hwpm.h>
|
||||
|
||||
/*
|
||||
@@ -18,7 +18,7 @@
|
||||
#include <tegra_hwpm_log.h>
|
||||
#include <tegra_hwpm_io.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
|
||||
#include <hal/t234/hw/t234_pmasys_soc_hwpm.h>
|
||||
#include <hal/t234/hw/t234_pmmsys_soc_hwpm.h>
|
||||
@@ -16,7 +16,7 @@
|
||||
* This file is autogenerated. Do not edit.
|
||||
*/
|
||||
|
||||
#include "t234_hwpm_regops_allowlist.h"
|
||||
#include "t234_regops_allowlist.h"
|
||||
|
||||
struct allowlist t234_perfmon_alist[67] = {
|
||||
{0x00000000, true},
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <tegra_hwpm_io.h>
|
||||
#include <tegra_hwpm.h>
|
||||
|
||||
#include <hal/t234/t234_hwpm_internal.h>
|
||||
#include <hal/t234/t234_internal.h>
|
||||
|
||||
#include <hal/t234/hw/t234_pmasys_soc_hwpm.h>
|
||||
#include <hal/t234/hw/t234_pmmsys_soc_hwpm.h>
|
||||
@@ -17,7 +17,7 @@
|
||||
#include <tegra_hwpm_log.h>
|
||||
#include <tegra_hwpm_io.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <tegra_hwpm_debugfs.h>
|
||||
#include <os/linux/debugfs.h>
|
||||
|
||||
/* FIXME: This is a placeholder for now. We can add debugfs nodes as needed. */
|
||||
void tegra_hwpm_debugfs_init(struct tegra_soc_hwpm *hwpm)
|
||||
@@ -11,8 +11,8 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef TEGRA_HWPM_DEBUGFS_H
|
||||
#define TEGRA_HWPM_DEBUGFS_H
|
||||
#ifndef TEGRA_HWPM_OS_LINUX_DEBUGFS_H
|
||||
#define TEGRA_HWPM_OS_LINUX_DEBUGFS_H
|
||||
|
||||
struct tegra_soc_hwpm;
|
||||
|
||||
@@ -24,4 +24,4 @@ static inline void tegra_hwpm_debugfs_init(struct tegra_soc_hwpm *hwpm) {}
|
||||
static inline void tegra_hwpm_debugfs_deinit(struct tegra_soc_hwpm *hwpm) {}
|
||||
#endif /* CONFIG_DEBUG_FS */
|
||||
|
||||
#endif /* TEGRA_HWPM_DEBUGFS_H */
|
||||
#endif /* TEGRA_HWPM_OS_LINUX_DEBUGFS_H */
|
||||
@@ -24,7 +24,7 @@
|
||||
#include <soc/tegra/fuse.h>
|
||||
|
||||
#include <tegra_hwpm_log.h>
|
||||
#include <tegra_hwpm_debugfs.h>
|
||||
#include <os/linux/debugfs.h>
|
||||
#include <tegra_hwpm.h>
|
||||
#include <tegra_hwpm_common.h>
|
||||
|
||||
Reference in New Issue
Block a user