xref: /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/amdgpu_socbb.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright 2019 Advanced Micro Devices, Inc.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Permission is hereby granted, free of charge, to any person obtaining a
5*4882a593Smuzhiyun  * copy of this software and associated documentation files (the "Software"),
6*4882a593Smuzhiyun  * to deal in the Software without restriction, including without limitation
7*4882a593Smuzhiyun  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8*4882a593Smuzhiyun  * and/or sell copies of the Software, and to permit persons to whom the
9*4882a593Smuzhiyun  * Software is furnished to do so, subject to the following conditions:
10*4882a593Smuzhiyun  *
11*4882a593Smuzhiyun  * The above copyright notice and this permission notice shall be included in
12*4882a593Smuzhiyun  * all copies or substantial portions of the Software.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*4882a593Smuzhiyun  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17*4882a593Smuzhiyun  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18*4882a593Smuzhiyun  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19*4882a593Smuzhiyun  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20*4882a593Smuzhiyun  * OTHER DEALINGS IN THE SOFTWARE.
21*4882a593Smuzhiyun  *
22*4882a593Smuzhiyun  */
23*4882a593Smuzhiyun #ifndef __AMDGPU_SOCBB_H__
24*4882a593Smuzhiyun #define __AMDGPU_SOCBB_H__
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun struct gpu_info_voltage_scaling_v1_0 {
27*4882a593Smuzhiyun 	uint32_t state;
28*4882a593Smuzhiyun 	uint32_t dscclk_mhz;
29*4882a593Smuzhiyun 	uint32_t dcfclk_mhz;
30*4882a593Smuzhiyun 	uint32_t socclk_mhz;
31*4882a593Smuzhiyun 	uint32_t dram_speed_mts;
32*4882a593Smuzhiyun 	uint32_t fabricclk_mhz;
33*4882a593Smuzhiyun 	uint32_t dispclk_mhz;
34*4882a593Smuzhiyun 	uint32_t phyclk_mhz;
35*4882a593Smuzhiyun 	uint32_t dppclk_mhz;
36*4882a593Smuzhiyun };
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun struct gpu_info_soc_bounding_box_v1_0 {
39*4882a593Smuzhiyun 	uint32_t sr_exit_time_us;
40*4882a593Smuzhiyun 	uint32_t sr_enter_plus_exit_time_us;
41*4882a593Smuzhiyun 	uint32_t urgent_latency_us;
42*4882a593Smuzhiyun 	uint32_t urgent_latency_pixel_data_only_us;
43*4882a593Smuzhiyun 	uint32_t urgent_latency_pixel_mixed_with_vm_data_us;
44*4882a593Smuzhiyun 	uint32_t urgent_latency_vm_data_only_us;
45*4882a593Smuzhiyun 	uint32_t writeback_latency_us;
46*4882a593Smuzhiyun 	uint32_t ideal_dram_bw_after_urgent_percent;
47*4882a593Smuzhiyun 	uint32_t pct_ideal_dram_sdp_bw_after_urgent_pixel_only; // PercentOfIdealDRAMFabricAndSDPPortBWReceivedAfterUrgLatencyPixelDataOnly
48*4882a593Smuzhiyun 	uint32_t pct_ideal_dram_sdp_bw_after_urgent_pixel_and_vm;
49*4882a593Smuzhiyun 	uint32_t pct_ideal_dram_sdp_bw_after_urgent_vm_only;
50*4882a593Smuzhiyun 	uint32_t max_avg_sdp_bw_use_normal_percent;
51*4882a593Smuzhiyun 	uint32_t max_avg_dram_bw_use_normal_percent;
52*4882a593Smuzhiyun 	uint32_t max_request_size_bytes;
53*4882a593Smuzhiyun 	uint32_t downspread_percent;
54*4882a593Smuzhiyun 	uint32_t dram_page_open_time_ns;
55*4882a593Smuzhiyun 	uint32_t dram_rw_turnaround_time_ns;
56*4882a593Smuzhiyun 	uint32_t dram_return_buffer_per_channel_bytes;
57*4882a593Smuzhiyun 	uint32_t dram_channel_width_bytes;
58*4882a593Smuzhiyun 	uint32_t fabric_datapath_to_dcn_data_return_bytes;
59*4882a593Smuzhiyun 	uint32_t dcn_downspread_percent;
60*4882a593Smuzhiyun 	uint32_t dispclk_dppclk_vco_speed_mhz;
61*4882a593Smuzhiyun 	uint32_t dfs_vco_period_ps;
62*4882a593Smuzhiyun 	uint32_t urgent_out_of_order_return_per_channel_pixel_only_bytes;
63*4882a593Smuzhiyun 	uint32_t urgent_out_of_order_return_per_channel_pixel_and_vm_bytes;
64*4882a593Smuzhiyun 	uint32_t urgent_out_of_order_return_per_channel_vm_only_bytes;
65*4882a593Smuzhiyun 	uint32_t round_trip_ping_latency_dcfclk_cycles;
66*4882a593Smuzhiyun 	uint32_t urgent_out_of_order_return_per_channel_bytes;
67*4882a593Smuzhiyun 	uint32_t channel_interleave_bytes;
68*4882a593Smuzhiyun 	uint32_t num_banks;
69*4882a593Smuzhiyun 	uint32_t num_chans;
70*4882a593Smuzhiyun 	uint32_t vmm_page_size_bytes;
71*4882a593Smuzhiyun 	uint32_t dram_clock_change_latency_us;
72*4882a593Smuzhiyun 	uint32_t writeback_dram_clock_change_latency_us;
73*4882a593Smuzhiyun 	uint32_t return_bus_width_bytes;
74*4882a593Smuzhiyun 	uint32_t voltage_override;
75*4882a593Smuzhiyun 	uint32_t xfc_bus_transport_time_us;
76*4882a593Smuzhiyun 	uint32_t xfc_xbuf_latency_tolerance_us;
77*4882a593Smuzhiyun 	uint32_t use_urgent_burst_bw;
78*4882a593Smuzhiyun 	uint32_t num_states;
79*4882a593Smuzhiyun 	struct gpu_info_voltage_scaling_v1_0 clock_limits[8];
80*4882a593Smuzhiyun };
81*4882a593Smuzhiyun 
82*4882a593Smuzhiyun #endif
83