/* * Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ #ifndef NVGPU_PMUIF_GPMUIF_PMU_H #define NVGPU_PMUIF_GPMUIF_PMU_H #include #include "gpmuif_cmn.h" /* Make sure size of this structure is a multiple of 4 bytes */ struct pmu_cmdline_args_v3 { u32 reserved; u32 cpu_freq_hz; u32 falc_trace_size; u32 falc_trace_dma_base; u32 falc_trace_dma_idx; u8 secure_mode; u8 raise_priv_sec; struct pmu_mem_v1 gc6_ctx; }; struct pmu_cmdline_args_v4 { u32 reserved; u32 cpu_freq_hz; u32 falc_trace_size; struct falc_dma_addr dma_addr; u32 falc_trace_dma_idx; u8 secure_mode; u8 raise_priv_sec; struct pmu_mem_desc_v0 gc6_ctx; u8 pad; }; struct pmu_cmdline_args_v5 { u32 cpu_freq_hz; struct flcn_mem_desc_v0 trace_buf; u8 secure_mode; u8 raise_priv_sec; struct flcn_mem_desc_v0 gc6_ctx; struct flcn_mem_desc_v0 init_data_dma_info; u32 dummy; }; struct pmu_cmdline_args_v6 { u32 cpu_freq_hz; struct flcn_mem_desc_v0 trace_buf; u8 secure_mode; u8 raise_priv_sec; struct flcn_mem_desc_v0 gc6_ctx; struct flcn_mem_desc_v0 gc6_bsod_ctx; struct flcn_mem_desc_v0 super_surface; u32 flags; }; /* GPU ID */ #define PMU_SHA1_GID_SIGNATURE 0xA7C66AD2 #define PMU_SHA1_GID_SIGNATURE_SIZE 4 #define PMU_SHA1_GID_SIZE 16 struct pmu_sha1_gid { bool valid; u8 gid[PMU_SHA1_GID_SIZE]; }; struct pmu_sha1_gid_data { u8 signature[PMU_SHA1_GID_SIGNATURE_SIZE]; u8 gid[PMU_SHA1_GID_SIZE]; }; /* PMU INIT MSG */ enum { PMU_INIT_MSG_TYPE_PMU_INIT = 0, }; struct pmu_init_msg_pmu_v1 { u8 msg_type; u8 pad; u16 os_debug_entry_point; struct { u16 size; u16 offset; u8 index; u8 pad; } queue_info[PMU_QUEUE_COUNT]; u16 sw_managed_area_offset; u16 sw_managed_area_size; }; #define PMU_QUEUE_COUNT_FOR_V5 4 #define PMU_QUEUE_COUNT_FOR_V4 5 #define PMU_QUEUE_COUNT_FOR_V3 3 #define PMU_QUEUE_HPQ_IDX_FOR_V3 0 #define PMU_QUEUE_LPQ_IDX_FOR_V3 1 #define PMU_QUEUE_MSG_IDX_FOR_V3 2 #define PMU_QUEUE_MSG_IDX_FOR_V5 3 struct pmu_init_msg_pmu_v3 { u8 msg_type; u8 queue_index[PMU_QUEUE_COUNT_FOR_V3]; u16 queue_size[PMU_QUEUE_COUNT_FOR_V3]; u16 queue_offset; u16 sw_managed_area_offset; u16 sw_managed_area_size; u16 os_debug_entry_point; u8 dummy[18]; }; struct pmu_init_msg_pmu_v4 { u8 msg_type; u8 queue_index[PMU_QUEUE_COUNT_FOR_V4]; u16 queue_size[PMU_QUEUE_COUNT_FOR_V4]; u16 queue_offset; u16 sw_managed_area_offset; u16 sw_managed_area_size; u16 os_debug_entry_point; u8 dummy[18]; }; struct pmu_init_msg_pmu_v5 { u8 msg_type; u8 flcn_status; u8 queue_index[PMU_QUEUE_COUNT_FOR_V5]; u16 queue_size[PMU_QUEUE_COUNT_FOR_V5]; u16 queue_offset; u16 sw_managed_area_offset; u16 sw_managed_area_size; u16 os_debug_entry_point; u8 dummy[18]; u8 pad; }; union pmu_init_msg_pmu { struct pmu_init_msg_pmu_v1 v1; struct pmu_init_msg_pmu_v3 v3; struct pmu_init_msg_pmu_v4 v4; struct pmu_init_msg_pmu_v5 v5; }; struct pmu_init_msg { union { u8 msg_type; struct pmu_init_msg_pmu_v1 pmu_init_v1; struct pmu_init_msg_pmu_v3 pmu_init_v3; struct pmu_init_msg_pmu_v4 pmu_init_v4; struct pmu_init_msg_pmu_v5 pmu_init_v5; }; }; /* robust channel (RC) messages */ enum { PMU_RC_MSG_TYPE_UNHANDLED_CMD = 0, }; struct pmu_rc_msg_unhandled_cmd { u8 msg_type; u8 unit_id; }; struct pmu_rc_msg { u8 msg_type; struct pmu_rc_msg_unhandled_cmd unhandled_cmd; }; #endif /* NVGPU_PMUIF_GPMUIF_PMU_H*/