diff options
| author | Huang Rui <ray.huang@amd.com> | 2018-08-02 17:47:15 +0800 | 
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2018-08-27 11:09:55 -0500 | 
| commit | 55560046d5b0495833cc2cb3de43bbf4425da234 (patch) | |
| tree | 8c405d76c78d7923bd0d9770798cccf21d781295 /drivers/gpu/drm/amd/amdgpu | |
| parent | bb7743bc205177440ba98eca2359779ba943e03b (diff) | |
drm/amdgpu: move firmware definitions into amdgpu_ucode header
Demangle amdgpu.h.
Signed-off-by: Huang Rui <ray.huang@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu.h | 27 | ||||
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | 24 | 
2 files changed, 24 insertions, 27 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index 159854eaf553..d39053d06b27 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -715,33 +715,6 @@ int amdgpu_device_wb_get(struct amdgpu_device *adev, u32 *wb);  void amdgpu_device_wb_free(struct amdgpu_device *adev, u32 wb);  /* - * Firmware - */ -enum amdgpu_firmware_load_type { -	AMDGPU_FW_LOAD_DIRECT = 0, -	AMDGPU_FW_LOAD_SMU, -	AMDGPU_FW_LOAD_PSP, -}; - -struct amdgpu_firmware { -	struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM]; -	enum amdgpu_firmware_load_type load_type; -	struct amdgpu_bo *fw_buf; -	unsigned int fw_size; -	unsigned int max_ucodes; -	/* firmwares are loaded by psp instead of smu from vega10 */ -	const struct amdgpu_psp_funcs *funcs; -	struct amdgpu_bo *rbuf; -	struct mutex mutex; - -	/* gpu info firmware data pointer */ -	const struct firmware *gpu_info_fw; - -	void *fw_buf_ptr; -	uint64_t fw_buf_mc; -}; - -/*   * Benchmarking   */  void amdgpu_benchmark(struct amdgpu_device *adev, int test_number); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h index bdc472b6e641..a1edc70da979 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h @@ -205,6 +205,12 @@ enum AMDGPU_UCODE_STATUS {  	AMDGPU_UCODE_STATUS_LOADED,  }; +enum amdgpu_firmware_load_type { +	AMDGPU_FW_LOAD_DIRECT = 0, +	AMDGPU_FW_LOAD_SMU, +	AMDGPU_FW_LOAD_PSP, +}; +  /* conform to smu_ucode_xfer_cz.h */  #define AMDGPU_SDMA0_UCODE_LOADED	0x00000001  #define AMDGPU_SDMA1_UCODE_LOADED	0x00000002 @@ -232,6 +238,24 @@ struct amdgpu_firmware_info {  	uint32_t tmr_mc_addr_hi;  }; +struct amdgpu_firmware { +	struct amdgpu_firmware_info ucode[AMDGPU_UCODE_ID_MAXIMUM]; +	enum amdgpu_firmware_load_type load_type; +	struct amdgpu_bo *fw_buf; +	unsigned int fw_size; +	unsigned int max_ucodes; +	/* firmwares are loaded by psp instead of smu from vega10 */ +	const struct amdgpu_psp_funcs *funcs; +	struct amdgpu_bo *rbuf; +	struct mutex mutex; + +	/* gpu info firmware data pointer */ +	const struct firmware *gpu_info_fw; + +	void *fw_buf_ptr; +	uint64_t fw_buf_mc; +}; +  void amdgpu_ucode_print_mc_hdr(const struct common_firmware_header *hdr);  void amdgpu_ucode_print_smc_hdr(const struct common_firmware_header *hdr);  void amdgpu_ucode_print_gfx_hdr(const struct common_firmware_header *hdr); | 
