amd-drm-next-5.11-2020-11-05: amdgpu: - Add initial support for Vangogh - Add support for Green Sardine - Add initial support for Dimgrey Cavefish - Scatter/Gather display support for Renoir - Updates for Sienna Cichlid - Updates for Navy Flounder - SMU7 power improvements - Modifier support for gfx9+ - CI BACO fixes - Arcturus SMU fixes - Lots of code cleanups - DC fixes - Kernel doc fixes - Add more GPU HW client information to page fault error logging - MPO clock tuning for RV - FP fixes for DCN3 on ARM and PPC radeon: - Expose voltage via hwmon on Sumo APUs amdkfd: - Fix unique id handling - Misc fixes From: Alex Deucher <alexdeucher@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20201105222749.201798-1-alexander.deucher@amd.com
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright 2019 Advanced Micro Devices, Inc.
 | |
|  *
 | |
|  * 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
 | |
|  */
 | |
| 
 | |
| 
 | |
| 
 | |
| void kgd_gfx_v9_program_sh_mem_settings(struct kgd_dev *kgd, uint32_t vmid,
 | |
| 		uint32_t sh_mem_config,
 | |
| 		uint32_t sh_mem_ape1_base, uint32_t sh_mem_ape1_limit,
 | |
| 		uint32_t sh_mem_bases);
 | |
| int kgd_gfx_v9_set_pasid_vmid_mapping(struct kgd_dev *kgd, u32 pasid,
 | |
| 		unsigned int vmid);
 | |
| int kgd_gfx_v9_init_interrupts(struct kgd_dev *kgd, uint32_t pipe_id);
 | |
| int kgd_gfx_v9_hqd_load(struct kgd_dev *kgd, void *mqd, uint32_t pipe_id,
 | |
| 			uint32_t queue_id, uint32_t __user *wptr,
 | |
| 			uint32_t wptr_shift, uint32_t wptr_mask,
 | |
| 			struct mm_struct *mm);
 | |
| int kgd_gfx_v9_hiq_mqd_load(struct kgd_dev *kgd, void *mqd,
 | |
| 			    uint32_t pipe_id, uint32_t queue_id,
 | |
| 			    uint32_t doorbell_off);
 | |
| int kgd_gfx_v9_hqd_dump(struct kgd_dev *kgd,
 | |
| 			uint32_t pipe_id, uint32_t queue_id,
 | |
| 			uint32_t (**dump)[2], uint32_t *n_regs);
 | |
| bool kgd_gfx_v9_hqd_is_occupied(struct kgd_dev *kgd, uint64_t queue_address,
 | |
| 		uint32_t pipe_id, uint32_t queue_id);
 | |
| int kgd_gfx_v9_hqd_destroy(struct kgd_dev *kgd, void *mqd,
 | |
| 				enum kfd_preempt_type reset_type,
 | |
| 				unsigned int utimeout, uint32_t pipe_id,
 | |
| 				uint32_t queue_id);
 | |
| int kgd_gfx_v9_address_watch_disable(struct kgd_dev *kgd);
 | |
| int kgd_gfx_v9_address_watch_execute(struct kgd_dev *kgd,
 | |
| 					unsigned int watch_point_id,
 | |
| 					uint32_t cntl_val,
 | |
| 					uint32_t addr_hi,
 | |
| 					uint32_t addr_lo);
 | |
| int kgd_gfx_v9_wave_control_execute(struct kgd_dev *kgd,
 | |
| 					uint32_t gfx_index_val,
 | |
| 					uint32_t sq_cmd);
 | |
| uint32_t kgd_gfx_v9_address_watch_get_offset(struct kgd_dev *kgd,
 | |
| 					unsigned int watch_point_id,
 | |
| 					unsigned int reg_offset);
 | |
| 
 | |
| bool kgd_gfx_v9_get_atc_vmid_pasid_mapping_info(struct kgd_dev *kgd,
 | |
| 					uint8_t vmid, uint16_t *p_pasid);
 | |
| 
 | |
| void kgd_gfx_v9_set_vm_context_page_table_base(struct kgd_dev *kgd,
 | |
| 			uint32_t vmid, uint64_t page_table_base);
 | |
| void kgd_gfx_v9_get_cu_occupancy(struct kgd_dev *kgd, int pasid,
 | |
| 		int *pasid_wave_cnt, int *max_waves_per_cu);
 |