Path: blob/master/drivers/gpu/drm/amd/include/amd_shared.h
29285 views
/*1* Copyright 2015 Advanced Micro Devices, Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* the rights to use, copy, modify, merge, publish, distribute, sublicense,7* and/or sell copies of the Software, and to permit persons to whom the8* Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice shall be included in11* all copies or substantial portions of the Software.12*13* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR14* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,15* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL16* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR17* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,18* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR19* OTHER DEALINGS IN THE SOFTWARE.20*/2122#ifndef __AMD_SHARED_H__23#define __AMD_SHARED_H__2425#include <drm/amd_asic_type.h>26#include <drm/drm_print.h>272829#define AMD_MAX_USEC_TIMEOUT 1000000 /* 1000 ms */30struct amdgpu_ip_block;313233/*34* Chip flags35*/36enum amd_chip_flags {37AMD_ASIC_MASK = 0x0000ffffUL,38AMD_FLAGS_MASK = 0xffff0000UL,39AMD_IS_MOBILITY = 0x00010000UL,40AMD_IS_APU = 0x00020000UL,41AMD_IS_PX = 0x00040000UL,42AMD_EXP_HW_SUPPORT = 0x00080000UL,43};4445enum amd_apu_flags {46AMD_APU_IS_RAVEN = 0x00000001UL,47AMD_APU_IS_RAVEN2 = 0x00000002UL,48AMD_APU_IS_PICASSO = 0x00000004UL,49AMD_APU_IS_RENOIR = 0x00000008UL,50AMD_APU_IS_GREEN_SARDINE = 0x00000010UL,51AMD_APU_IS_VANGOGH = 0x00000020UL,52AMD_APU_IS_CYAN_SKILLFISH2 = 0x00000040UL,53};5455/**56* DOC: IP Blocks57*58* GPUs are composed of IP (intellectual property) blocks. These59* IP blocks provide various functionalities: display, graphics,60* video decode, etc. The IP blocks that comprise a particular GPU61* are listed in the GPU's respective SoC file. amdgpu_device.c62* acquires the list of IP blocks for the GPU in use on initialization.63* It can then operate on this list to perform standard driver operations64* such as: init, fini, suspend, resume, etc.65*66*67* IP block implementations are named using the following convention:68* <functionality>_v<version> (E.g.: gfx_v6_0).69*/7071/**72* enum amd_ip_block_type - Used to classify IP blocks by functionality.73*74* @AMD_IP_BLOCK_TYPE_COMMON: GPU Family75* @AMD_IP_BLOCK_TYPE_GMC: Graphics Memory Controller76* @AMD_IP_BLOCK_TYPE_IH: Interrupt Handler77* @AMD_IP_BLOCK_TYPE_SMC: System Management Controller78* @AMD_IP_BLOCK_TYPE_PSP: Platform Security Processor79* @AMD_IP_BLOCK_TYPE_DCE: Display and Compositing Engine80* @AMD_IP_BLOCK_TYPE_GFX: Graphics and Compute Engine81* @AMD_IP_BLOCK_TYPE_SDMA: System DMA Engine82* @AMD_IP_BLOCK_TYPE_UVD: Unified Video Decoder83* @AMD_IP_BLOCK_TYPE_VCE: Video Compression Engine84* @AMD_IP_BLOCK_TYPE_ACP: Audio Co-Processor85* @AMD_IP_BLOCK_TYPE_VCN: Video Core/Codec Next86* @AMD_IP_BLOCK_TYPE_MES: Micro-Engine Scheduler87* @AMD_IP_BLOCK_TYPE_JPEG: JPEG Engine88* @AMD_IP_BLOCK_TYPE_VPE: Video Processing Engine89* @AMD_IP_BLOCK_TYPE_UMSCH_MM: User Mode Scheduler for Multimedia90* @AMD_IP_BLOCK_TYPE_ISP: Image Signal Processor91* @AMD_IP_BLOCK_TYPE_NUM: Total number of IP block types92*/93enum amd_ip_block_type {94AMD_IP_BLOCK_TYPE_COMMON,95AMD_IP_BLOCK_TYPE_GMC,96AMD_IP_BLOCK_TYPE_IH,97AMD_IP_BLOCK_TYPE_SMC,98AMD_IP_BLOCK_TYPE_PSP,99AMD_IP_BLOCK_TYPE_DCE,100AMD_IP_BLOCK_TYPE_GFX,101AMD_IP_BLOCK_TYPE_SDMA,102AMD_IP_BLOCK_TYPE_UVD,103AMD_IP_BLOCK_TYPE_VCE,104AMD_IP_BLOCK_TYPE_ACP,105AMD_IP_BLOCK_TYPE_VCN,106AMD_IP_BLOCK_TYPE_MES,107AMD_IP_BLOCK_TYPE_JPEG,108AMD_IP_BLOCK_TYPE_VPE,109AMD_IP_BLOCK_TYPE_UMSCH_MM,110AMD_IP_BLOCK_TYPE_ISP,111AMD_IP_BLOCK_TYPE_NUM,112};113114enum amd_clockgating_state {115AMD_CG_STATE_GATE = 0,116AMD_CG_STATE_UNGATE,117};118119120enum amd_powergating_state {121AMD_PG_STATE_GATE = 0,122AMD_PG_STATE_UNGATE,123};124125126/* CG flags */127#define AMD_CG_SUPPORT_GFX_MGCG (1ULL << 0)128#define AMD_CG_SUPPORT_GFX_MGLS (1ULL << 1)129#define AMD_CG_SUPPORT_GFX_CGCG (1ULL << 2)130#define AMD_CG_SUPPORT_GFX_CGLS (1ULL << 3)131#define AMD_CG_SUPPORT_GFX_CGTS (1ULL << 4)132#define AMD_CG_SUPPORT_GFX_CGTS_LS (1ULL << 5)133#define AMD_CG_SUPPORT_GFX_CP_LS (1ULL << 6)134#define AMD_CG_SUPPORT_GFX_RLC_LS (1ULL << 7)135#define AMD_CG_SUPPORT_MC_LS (1ULL << 8)136#define AMD_CG_SUPPORT_MC_MGCG (1ULL << 9)137#define AMD_CG_SUPPORT_SDMA_LS (1ULL << 10)138#define AMD_CG_SUPPORT_SDMA_MGCG (1ULL << 11)139#define AMD_CG_SUPPORT_BIF_LS (1ULL << 12)140#define AMD_CG_SUPPORT_UVD_MGCG (1ULL << 13)141#define AMD_CG_SUPPORT_VCE_MGCG (1ULL << 14)142#define AMD_CG_SUPPORT_HDP_LS (1ULL << 15)143#define AMD_CG_SUPPORT_HDP_MGCG (1ULL << 16)144#define AMD_CG_SUPPORT_ROM_MGCG (1ULL << 17)145#define AMD_CG_SUPPORT_DRM_LS (1ULL << 18)146#define AMD_CG_SUPPORT_BIF_MGCG (1ULL << 19)147#define AMD_CG_SUPPORT_GFX_3D_CGCG (1ULL << 20)148#define AMD_CG_SUPPORT_GFX_3D_CGLS (1ULL << 21)149#define AMD_CG_SUPPORT_DRM_MGCG (1ULL << 22)150#define AMD_CG_SUPPORT_DF_MGCG (1ULL << 23)151#define AMD_CG_SUPPORT_VCN_MGCG (1ULL << 24)152#define AMD_CG_SUPPORT_HDP_DS (1ULL << 25)153#define AMD_CG_SUPPORT_HDP_SD (1ULL << 26)154#define AMD_CG_SUPPORT_IH_CG (1ULL << 27)155#define AMD_CG_SUPPORT_ATHUB_LS (1ULL << 28)156#define AMD_CG_SUPPORT_ATHUB_MGCG (1ULL << 29)157#define AMD_CG_SUPPORT_JPEG_MGCG (1ULL << 30)158#define AMD_CG_SUPPORT_GFX_FGCG (1ULL << 31)159#define AMD_CG_SUPPORT_REPEATER_FGCG (1ULL << 32)160#define AMD_CG_SUPPORT_GFX_PERF_CLK (1ULL << 33)161/* PG flags */162#define AMD_PG_SUPPORT_GFX_PG (1 << 0)163#define AMD_PG_SUPPORT_GFX_SMG (1 << 1)164#define AMD_PG_SUPPORT_GFX_DMG (1 << 2)165#define AMD_PG_SUPPORT_UVD (1 << 3)166#define AMD_PG_SUPPORT_VCE (1 << 4)167#define AMD_PG_SUPPORT_CP (1 << 5)168#define AMD_PG_SUPPORT_GDS (1 << 6)169#define AMD_PG_SUPPORT_RLC_SMU_HS (1 << 7)170#define AMD_PG_SUPPORT_SDMA (1 << 8)171#define AMD_PG_SUPPORT_ACP (1 << 9)172#define AMD_PG_SUPPORT_SAMU (1 << 10)173#define AMD_PG_SUPPORT_GFX_QUICK_MG (1 << 11)174#define AMD_PG_SUPPORT_GFX_PIPELINE (1 << 12)175#define AMD_PG_SUPPORT_MMHUB (1 << 13)176#define AMD_PG_SUPPORT_VCN (1 << 14)177#define AMD_PG_SUPPORT_VCN_DPG (1 << 15)178#define AMD_PG_SUPPORT_ATHUB (1 << 16)179#define AMD_PG_SUPPORT_JPEG (1 << 17)180#define AMD_PG_SUPPORT_IH_SRAM_PG (1 << 18)181#define AMD_PG_SUPPORT_JPEG_DPG (1 << 19)182183/**184* enum PP_FEATURE_MASK - Used to mask power play features.185*186* @PP_SCLK_DPM_MASK: Dynamic adjustment of the system (graphics) clock.187* @PP_MCLK_DPM_MASK: Dynamic adjustment of the memory clock.188* @PP_PCIE_DPM_MASK: Dynamic adjustment of PCIE clocks and lanes.189* @PP_SCLK_DEEP_SLEEP_MASK: System (graphics) clock deep sleep.190* @PP_POWER_CONTAINMENT_MASK: Power containment.191* @PP_UVD_HANDSHAKE_MASK: Unified video decoder handshake.192* @PP_SMC_VOLTAGE_CONTROL_MASK: Dynamic voltage control.193* @PP_VBI_TIME_SUPPORT_MASK: Vertical blank interval support.194* @PP_ULV_MASK: Ultra low voltage.195* @PP_ENABLE_GFX_CG_THRU_SMU: SMU control of GFX engine clockgating.196* @PP_CLOCK_STRETCH_MASK: Clock stretching.197* @PP_OD_FUZZY_FAN_CONTROL_MASK: Overdrive fuzzy fan control.198* @PP_SOCCLK_DPM_MASK: Dynamic adjustment of the SoC clock.199* @PP_DCEFCLK_DPM_MASK: Dynamic adjustment of the Display Controller Engine Fabric clock.200* @PP_OVERDRIVE_MASK: Over- and under-clocking support.201* @PP_GFXOFF_MASK: Dynamic graphics engine power control.202* @PP_ACG_MASK: Adaptive clock generator.203* @PP_STUTTER_MODE: Stutter mode.204* @PP_AVFS_MASK: Adaptive voltage and frequency scaling.205* @PP_GFX_DCS_MASK: GFX Async DCS.206*207* To override these settings on boot, append amdgpu.ppfeaturemask=<mask> to208* the kernel's command line parameters. This is usually done through a system's209* boot loader (E.g. GRUB). If manually loading the driver, pass210* ppfeaturemask=<mask> as a modprobe parameter.211*/212enum PP_FEATURE_MASK {213PP_SCLK_DPM_MASK = 0x1,214PP_MCLK_DPM_MASK = 0x2,215PP_PCIE_DPM_MASK = 0x4,216PP_SCLK_DEEP_SLEEP_MASK = 0x8,217PP_POWER_CONTAINMENT_MASK = 0x10,218PP_UVD_HANDSHAKE_MASK = 0x20,219PP_SMC_VOLTAGE_CONTROL_MASK = 0x40,220PP_VBI_TIME_SUPPORT_MASK = 0x80,221PP_ULV_MASK = 0x100,222PP_ENABLE_GFX_CG_THRU_SMU = 0x200,223PP_CLOCK_STRETCH_MASK = 0x400,224PP_OD_FUZZY_FAN_CONTROL_MASK = 0x800,225PP_SOCCLK_DPM_MASK = 0x1000,226PP_DCEFCLK_DPM_MASK = 0x2000,227PP_OVERDRIVE_MASK = 0x4000,228PP_GFXOFF_MASK = 0x8000,229PP_ACG_MASK = 0x10000,230PP_STUTTER_MODE = 0x20000,231PP_AVFS_MASK = 0x40000,232PP_GFX_DCS_MASK = 0x80000,233};234235enum amd_harvest_ip_mask {236AMD_HARVEST_IP_VCN_MASK = 0x1,237AMD_HARVEST_IP_JPEG_MASK = 0x2,238AMD_HARVEST_IP_DMU_MASK = 0x4,239};240241/**242* enum DC_FEATURE_MASK - Bits that control DC feature defaults243*/244enum DC_FEATURE_MASK {245//Default value can be found at "uint amdgpu_dc_feature_mask"246/**247* @DC_FBC_MASK: (0x1) disabled by default248*/249DC_FBC_MASK = (1 << 0),250/**251* @DC_MULTI_MON_PP_MCLK_SWITCH_MASK: (0x2) enabled by default252*/253DC_MULTI_MON_PP_MCLK_SWITCH_MASK = (1 << 1),254/**255* @DC_DISABLE_FRACTIONAL_PWM_MASK: (0x4) disabled by default256*/257DC_DISABLE_FRACTIONAL_PWM_MASK = (1 << 2),258/**259* @DC_PSR_MASK: (0x8) disabled by default for DCN < 3.1260*/261DC_PSR_MASK = (1 << 3),262/**263* @DC_EDP_NO_POWER_SEQUENCING: (0x10) disabled by default264*/265DC_EDP_NO_POWER_SEQUENCING = (1 << 4),266/**267* @DC_DISABLE_LTTPR_DP1_4A: (0x20) disabled by default268*/269DC_DISABLE_LTTPR_DP1_4A = (1 << 5),270/**271* @DC_DISABLE_LTTPR_DP2_0: (0x40) disabled by default272*/273DC_DISABLE_LTTPR_DP2_0 = (1 << 6),274/**275* @DC_PSR_ALLOW_SMU_OPT: (0x80) disabled by default276*/277DC_PSR_ALLOW_SMU_OPT = (1 << 7),278/**279* @DC_PSR_ALLOW_MULTI_DISP_OPT: (0x100) disabled by default280*/281DC_PSR_ALLOW_MULTI_DISP_OPT = (1 << 8),282/**283* @DC_REPLAY_MASK: (0x200) disabled by default for DCN < 3.1.4284*/285DC_REPLAY_MASK = (1 << 9),286};287288/**289* enum DC_DEBUG_MASK - Bits that are useful for debugging the Display Core IP290*/291enum DC_DEBUG_MASK {292/**293* @DC_DISABLE_PIPE_SPLIT: (0x1) If set, disable pipe-splitting294*/295DC_DISABLE_PIPE_SPLIT = 0x1,296297/**298* @DC_DISABLE_STUTTER: (0x2) If set, disable memory stutter mode299*/300DC_DISABLE_STUTTER = 0x2,301302/**303* @DC_DISABLE_DSC: (0x4) If set, disable display stream compression304*/305DC_DISABLE_DSC = 0x4,306307/**308* @DC_DISABLE_CLOCK_GATING: (0x8) If set, disable clock gating optimizations309*/310DC_DISABLE_CLOCK_GATING = 0x8,311312/**313* @DC_DISABLE_PSR: (0x10) If set, disable Panel self refresh v1 and PSR-SU314*/315DC_DISABLE_PSR = 0x10,316317/**318* @DC_FORCE_SUBVP_MCLK_SWITCH: (0x20) If set, force mclk switch in subvp, even319* if mclk switch in vblank is possible320*/321DC_FORCE_SUBVP_MCLK_SWITCH = 0x20,322323/**324* @DC_DISABLE_MPO: (0x40) If set, disable multi-plane offloading325*/326DC_DISABLE_MPO = 0x40,327328/**329* @DC_ENABLE_DPIA_TRACE: (0x80) If set, enable trace logging for DPIA330*/331DC_ENABLE_DPIA_TRACE = 0x80,332333/**334* @DC_ENABLE_DML2: (0x100) If set, force usage of DML2, even if the DCN version335* does not default to it.336*/337DC_ENABLE_DML2 = 0x100,338339/**340* @DC_DISABLE_PSR_SU: (0x200) If set, disable PSR SU341*/342DC_DISABLE_PSR_SU = 0x200,343344/**345* @DC_DISABLE_REPLAY: (0x400) If set, disable Panel Replay346*/347DC_DISABLE_REPLAY = 0x400,348349/**350* @DC_DISABLE_IPS: (0x800) If set, disable all Idle Power States, all the time.351* If more than one IPS debug bit is set, the lowest bit takes352* precedence. For example, if DC_FORCE_IPS_ENABLE and353* DC_DISABLE_IPS_DYNAMIC are set, then DC_DISABLE_IPS_DYNAMIC takes354* precedence.355*/356DC_DISABLE_IPS = 0x800,357358/**359* @DC_DISABLE_IPS_DYNAMIC: (0x1000) If set, disable all IPS, all the time,360* *except* when driver goes into suspend.361*/362DC_DISABLE_IPS_DYNAMIC = 0x1000,363364/**365* @DC_DISABLE_IPS2_DYNAMIC: (0x2000) If set, disable IPS2 (IPS1 allowed) if366* there is an enabled display. Otherwise, enable all IPS.367*/368DC_DISABLE_IPS2_DYNAMIC = 0x2000,369370/**371* @DC_FORCE_IPS_ENABLE: (0x4000) If set, force enable all IPS, all the time.372*/373DC_FORCE_IPS_ENABLE = 0x4000,374/**375* @DC_DISABLE_ACPI_EDID: (0x8000) If set, don't attempt to fetch EDID for376* eDP display from ACPI _DDC method.377*/378DC_DISABLE_ACPI_EDID = 0x8000,379380/**381* @DC_DISABLE_HDMI_CEC: (0x10000) If set, disable HDMI-CEC feature in amdgpu driver.382*/383DC_DISABLE_HDMI_CEC = 0x10000,384385/**386* @DC_DISABLE_SUBVP_FAMS: (0x20000) If set, disable DCN Sub-Viewport & Firmware Assisted387* Memory Clock Switching (FAMS) feature in amdgpu driver.388*/389DC_DISABLE_SUBVP_FAMS = 0x20000,390/**391* @DC_DISABLE_CUSTOM_BRIGHTNESS_CURVE: (0x40000) If set, disable support for custom392* brightness curves393*/394DC_DISABLE_CUSTOM_BRIGHTNESS_CURVE = 0x40000,395396/**397* @DC_HDCP_LC_FORCE_FW_ENABLE: (0x80000) If set, use HDCP Locality Check FW398* path regardless of reported HW capabilities.399*/400DC_HDCP_LC_FORCE_FW_ENABLE = 0x80000,401402/**403* @DC_HDCP_LC_ENABLE_SW_FALLBACK: (0x100000) If set, upon HDCP Locality Check FW404* path failure, retry using legacy SW path.405*/406DC_HDCP_LC_ENABLE_SW_FALLBACK = 0x100000,407408/**409* @DC_SKIP_DETECTION_LT: (0x200000) If set, skip detection link training410*/411DC_SKIP_DETECTION_LT = 0x200000,412};413414enum amd_dpm_forced_level;415416/**417* struct amd_ip_funcs - general hooks for managing amdgpu IP Blocks418* @name: Name of IP block419* @early_init: sets up early driver state (pre sw_init),420* does not configure hw - Optional421* @late_init: sets up late driver/hw state (post hw_init) - Optional422* @sw_init: sets up driver state, does not configure hw423* @sw_fini: tears down driver state, does not configure hw424* @early_fini: tears down stuff before dev detached from driver425* @hw_init: sets up the hw state426* @hw_fini: tears down the hw state427* @late_fini: final cleanup428* @prepare_suspend: handle IP specific changes to prepare for suspend429* (such as allocating any required memory)430* @suspend: handles IP specific hw/sw changes for suspend431* @resume: handles IP specific hw/sw changes for resume432* @complete: handles IP specific changes after resume433* @is_idle: returns current IP block idle status434* @wait_for_idle: poll for idle435* @check_soft_reset: check soft reset the IP block436* @pre_soft_reset: pre soft reset the IP block437* @soft_reset: soft reset the IP block438* @post_soft_reset: post soft reset the IP block439* @set_clockgating_state: enable/disable cg for the IP block440* @set_powergating_state: enable/disable pg for the IP block441* @get_clockgating_state: get current clockgating status442* @dump_ip_state: dump the IP state of the ASIC during a gpu hang443* @print_ip_state: print the IP state in devcoredump for each IP of the ASIC444*445* These hooks provide an interface for controlling the operational state446* of IP blocks. After acquiring a list of IP blocks for the GPU in use,447* the driver can make chip-wide state changes by walking this list and448* making calls to hooks from each IP block. This list is ordered to ensure449* that the driver initializes the IP blocks in a safe sequence.450*/451struct amd_ip_funcs {452char *name;453int (*early_init)(struct amdgpu_ip_block *ip_block);454int (*late_init)(struct amdgpu_ip_block *ip_block);455int (*sw_init)(struct amdgpu_ip_block *ip_block);456int (*sw_fini)(struct amdgpu_ip_block *ip_block);457int (*early_fini)(struct amdgpu_ip_block *ip_block);458int (*hw_init)(struct amdgpu_ip_block *ip_block);459int (*hw_fini)(struct amdgpu_ip_block *ip_block);460void (*late_fini)(struct amdgpu_ip_block *ip_block);461int (*prepare_suspend)(struct amdgpu_ip_block *ip_block);462int (*suspend)(struct amdgpu_ip_block *ip_block);463int (*resume)(struct amdgpu_ip_block *ip_block);464void (*complete)(struct amdgpu_ip_block *ip_block);465bool (*is_idle)(struct amdgpu_ip_block *ip_block);466int (*wait_for_idle)(struct amdgpu_ip_block *ip_block);467bool (*check_soft_reset)(struct amdgpu_ip_block *ip_block);468int (*pre_soft_reset)(struct amdgpu_ip_block *ip_block);469int (*soft_reset)(struct amdgpu_ip_block *ip_block);470int (*post_soft_reset)(struct amdgpu_ip_block *ip_block);471int (*set_clockgating_state)(struct amdgpu_ip_block *ip_block,472enum amd_clockgating_state state);473int (*set_powergating_state)(struct amdgpu_ip_block *ip_block,474enum amd_powergating_state state);475void (*get_clockgating_state)(struct amdgpu_ip_block *ip_block, u64 *flags);476void (*dump_ip_state)(struct amdgpu_ip_block *ip_block);477void (*print_ip_state)(struct amdgpu_ip_block *ip_block, struct drm_printer *p);478};479480481#endif /* __AMD_SHARED_H__ */482483484