amdgpu_psp.h 7.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * Copyright 2016 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.
 *
 * Author: Huang Rui
 *
 */
#ifndef __AMDGPU_PSP_H__
#define __AMDGPU_PSP_H__

#include "amdgpu.h"
#include "psp_gfx_if.h"
30
#include "ta_xgmi_if.h"
31 32 33

#define PSP_FENCE_BUFFER_SIZE	0x1000
#define PSP_CMD_BUFFER_SIZE	0x1000
34 35
#define PSP_ASD_SHARED_MEM_SIZE 0x4000
#define PSP_XGMI_SHARED_MEM_SIZE 0x4000
36
#define PSP_1_MEG		0x100000
37
#define PSP_TMR_SIZE	0x400000
38

39
struct psp_context;
40
struct psp_xgmi_node_info;
41
struct psp_xgmi_topology_info;
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
enum psp_ring_type
{
	PSP_RING_TYPE__INVALID = 0,
	/*
	 * These values map to the way the PSP kernel identifies the
	 * rings.
	 */
	PSP_RING_TYPE__UM = 1, /* User mode ring (formerly called RBI) */
	PSP_RING_TYPE__KM = 2  /* Kernel mode ring (formerly called GPCOM) */
};

struct psp_ring
{
	enum psp_ring_type		ring_type;
	struct psp_gfx_rb_frame		*ring_mem;
	uint64_t			ring_mem_mc_addr;
	void				*ring_mem_handle;
	uint32_t			ring_size;
};

63
struct psp_funcs
64 65 66 67 68 69 70
{
	int (*init_microcode)(struct psp_context *psp);
	int (*bootloader_load_sysdrv)(struct psp_context *psp);
	int (*bootloader_load_sos)(struct psp_context *psp);
	int (*prep_cmd_buf)(struct amdgpu_firmware_info *ucode,
			    struct psp_gfx_cmd_resp *cmd);
	int (*ring_init)(struct psp_context *psp, enum psp_ring_type ring_type);
71 72
	int (*ring_create)(struct psp_context *psp,
			   enum psp_ring_type ring_type);
73 74
	int (*ring_stop)(struct psp_context *psp,
			    enum psp_ring_type ring_type);
75 76
	int (*ring_destroy)(struct psp_context *psp,
			    enum psp_ring_type ring_type);
77 78 79 80
	int (*cmd_submit)(struct psp_context *psp,
			  struct amdgpu_firmware_info *ucode,
			  uint64_t cmd_buf_mc_addr, uint64_t fence_mc_addr,
			  int index);
81 82 83 84
	bool (*compare_sram_data)(struct psp_context *psp,
				  struct amdgpu_firmware_info *ucode,
				  enum AMDGPU_UCODE_ID ucode_type);
	bool (*smu_reload_quirk)(struct psp_context *psp);
85
	int (*mode1_reset)(struct psp_context *psp);
86 87
	int (*xgmi_get_node_id)(struct psp_context *psp, uint64_t *node_id);
	int (*xgmi_get_hive_id)(struct psp_context *psp, uint64_t *hive_id);
88
	int (*xgmi_get_topology_info)(struct psp_context *psp, int number_devices,
89
				      struct psp_xgmi_topology_info *topology);
90
	int (*xgmi_set_topology_info)(struct psp_context *psp, int number_devices,
91
				      struct psp_xgmi_topology_info *topology);
92
	bool (*support_vmr_ring)(struct psp_context *psp);
93 94
};

95 96 97 98 99 100 101 102
struct psp_xgmi_context {
	uint8_t				initialized;
	uint32_t			session_id;
	struct amdgpu_bo                *xgmi_shared_bo;
	uint64_t                        xgmi_shared_mc_addr;
	void                            *xgmi_shared_buf;
};

103 104 105 106 107 108
struct psp_context
{
	struct amdgpu_device            *adev;
	struct psp_ring                 km_ring;
	struct psp_gfx_cmd_resp		*cmd;

109
	const struct psp_funcs		*funcs;
110

111
	/* firmware buffer */
112 113
	struct amdgpu_bo		*fw_pri_bo;
	uint64_t			fw_pri_mc_addr;
114 115
	void				*fw_pri_buf;

116 117 118 119 120 121 122 123 124 125
	/* sos firmware */
	const struct firmware		*sos_fw;
	uint32_t			sos_fw_version;
	uint32_t			sos_feature_version;
	uint32_t			sys_bin_size;
	uint32_t			sos_bin_size;
	uint8_t				*sys_start_addr;
	uint8_t				*sos_start_addr;

	/* tmr buffer */
126 127
	struct amdgpu_bo		*tmr_bo;
	uint64_t			tmr_mc_addr;
128 129
	void				*tmr_buf;

H
Huang Rui 已提交
130
	/* asd firmware and buffer */
131 132 133 134 135
	const struct firmware		*asd_fw;
	uint32_t			asd_fw_version;
	uint32_t			asd_feature_version;
	uint32_t			asd_ucode_size;
	uint8_t				*asd_start_addr;
136 137
	struct amdgpu_bo		*asd_shared_bo;
	uint64_t			asd_shared_mc_addr;
H
Huang Rui 已提交
138
	void				*asd_shared_buf;
139 140

	/* fence buffer */
141 142
	struct amdgpu_bo		*fence_buf_bo;
	uint64_t			fence_buf_mc_addr;
143
	void				*fence_buf;
144 145 146 147 148

	/* cmd buffer */
	struct amdgpu_bo		*cmd_buf_bo;
	uint64_t			cmd_buf_mc_addr;
	struct psp_gfx_cmd_resp		*cmd_buf_mem;
149 150 151

	/* fence value associated with cmd buffer */
	atomic_t			fence_value;
152 153 154 155 156 157 158

	/* xgmi ta firmware and buffer */
	const struct firmware		*ta_fw;
	uint32_t			ta_xgmi_ucode_version;
	uint32_t			ta_xgmi_ucode_size;
	uint8_t				*ta_xgmi_start_addr;
	struct psp_xgmi_context		xgmi_context;
159 160 161 162 163 164 165
};

struct amdgpu_psp_funcs {
	bool (*check_fw_loading_status)(struct amdgpu_device *adev,
					enum AMDGPU_UCODE_ID);
};

166 167 168 169 170 171 172 173
#define AMDGPU_XGMI_MAX_CONNECTED_NODES		64
struct psp_xgmi_node_info {
	uint64_t				node_id;
	uint8_t					num_hops;
	uint8_t					is_sharing_enabled;
	enum ta_xgmi_assigned_sdma_engine	sdma_engine;
};

174
struct psp_xgmi_topology_info {
175 176
	uint32_t			num_nodes;
	struct psp_xgmi_node_info	nodes[AMDGPU_XGMI_MAX_CONNECTED_NODES];
177 178
};

179 180 181 182 183
#define psp_prep_cmd_buf(ucode, type) (psp)->funcs->prep_cmd_buf((ucode), (type))
#define psp_ring_init(psp, type) (psp)->funcs->ring_init((psp), (type))
#define psp_ring_create(psp, type) (psp)->funcs->ring_create((psp), (type))
#define psp_ring_stop(psp, type) (psp)->funcs->ring_stop((psp), (type))
#define psp_ring_destroy(psp, type) ((psp)->funcs->ring_destroy((psp), (type)))
184
#define psp_cmd_submit(psp, ucode, cmd_mc, fence_mc, index) \
185
		(psp)->funcs->cmd_submit((psp), (ucode), (cmd_mc), (fence_mc), (index))
186
#define psp_compare_sram_data(psp, ucode, type) \
187
		(psp)->funcs->compare_sram_data((psp), (ucode), (type))
188
#define psp_init_microcode(psp) \
189
		((psp)->funcs->init_microcode ? (psp)->funcs->init_microcode((psp)) : 0)
190
#define psp_bootloader_load_sysdrv(psp) \
191
		((psp)->funcs->bootloader_load_sysdrv ? (psp)->funcs->bootloader_load_sysdrv((psp)) : 0)
192
#define psp_bootloader_load_sos(psp) \
193
		((psp)->funcs->bootloader_load_sos ? (psp)->funcs->bootloader_load_sos((psp)) : 0)
194
#define psp_smu_reload_quirk(psp) \
195
		((psp)->funcs->smu_reload_quirk ? (psp)->funcs->smu_reload_quirk((psp)) : false)
196 197
#define psp_support_vmr_ring(psp) \
		((psp)->funcs->support_vmr_ring ? (psp)->funcs->support_vmr_ring((psp)) : false)
198
#define psp_mode1_reset(psp) \
199
		((psp)->funcs->mode1_reset ? (psp)->funcs->mode1_reset((psp)) : false)
200 201 202 203
#define psp_xgmi_get_node_id(psp, node_id) \
		((psp)->funcs->xgmi_get_node_id ? (psp)->funcs->xgmi_get_node_id((psp), (node_id)) : -EINVAL)
#define psp_xgmi_get_hive_id(psp, hive_id) \
		((psp)->funcs->xgmi_get_hive_id ? (psp)->funcs->xgmi_get_hive_id((psp), (hive_id)) : -EINVAL)
204 205 206 207 208 209
#define psp_xgmi_get_topology_info(psp, num_device, topology) \
		((psp)->funcs->xgmi_get_topology_info ? \
		(psp)->funcs->xgmi_get_topology_info((psp), (num_device), (topology)) : -EINVAL)
#define psp_xgmi_set_topology_info(psp, num_device, topology) \
		((psp)->funcs->xgmi_set_topology_info ?	 \
		(psp)->funcs->xgmi_set_topology_info((psp), (num_device), (topology)) : -EINVAL)
210

211 212
#define amdgpu_psp_check_fw_loading_status(adev, i) (adev)->firmware.funcs->check_fw_loading_status((adev), (i))

213 214 215 216 217 218
extern const struct amd_ip_funcs psp_ip_funcs;

extern const struct amdgpu_ip_block_version psp_v3_1_ip_block;
extern int psp_wait_for(struct psp_context *psp, uint32_t reg_index,
			uint32_t field_val, uint32_t mask, bool check_changed);

H
Huang Rui 已提交
219 220
extern const struct amdgpu_ip_block_version psp_v10_0_ip_block;

221
int psp_gpu_reset(struct amdgpu_device *adev);
222
int psp_xgmi_invoke(struct psp_context *psp, uint32_t ta_cmd_id);
223
extern const struct amdgpu_ip_block_version psp_v11_0_ip_block;
224

225
#endif