vega10_smumgr.c 11.1 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
/*
 * 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.
 *
 */

#include "smumgr.h"
#include "vega10_inc.h"
26
#include "soc15_common.h"
27
#include "vega10_smumgr.h"
28
#include "vega10_hwmgr.h"
29 30
#include "vega10_ppsmc.h"
#include "smu9_driver_if.h"
31
#include "smu9_smumgr.h"
32 33
#include "ppatomctrl.h"
#include "pp_debug.h"
34

35

36
static int vega10_copy_table_from_smc(struct pp_hwmgr *hwmgr,
37 38
		uint8_t *table, int16_t table_id)
{
39
	struct vega10_smumgr *priv = hwmgr->smu_backend;
40 41

	PP_ASSERT_WITH_CODE(table_id < MAX_SMU_TABLE,
42
			"Invalid SMU Table ID!", return -EINVAL);
43
	PP_ASSERT_WITH_CODE(priv->smu_tables.entry[table_id].version != 0,
44
			"Invalid SMU Table version!", return -EINVAL);
45
	PP_ASSERT_WITH_CODE(priv->smu_tables.entry[table_id].size != 0,
46
			"Invalid SMU Table Length!", return -EINVAL);
47
	smu9_send_msg_to_smc_with_parameter(hwmgr,
48
			PPSMC_MSG_SetDriverDramAddrHigh,
49
			upper_32_bits(priv->smu_tables.entry[table_id].mc_addr));
50
	smu9_send_msg_to_smc_with_parameter(hwmgr,
51
			PPSMC_MSG_SetDriverDramAddrLow,
52
			lower_32_bits(priv->smu_tables.entry[table_id].mc_addr));
53
	smu9_send_msg_to_smc_with_parameter(hwmgr,
54
			PPSMC_MSG_TransferTableSmu2Dram,
55
			priv->smu_tables.entry[table_id].table_id);
56 57 58 59 60 61 62

	memcpy(table, priv->smu_tables.entry[table_id].table,
			priv->smu_tables.entry[table_id].size);

	return 0;
}

63
static int vega10_copy_table_to_smc(struct pp_hwmgr *hwmgr,
64 65
		uint8_t *table, int16_t table_id)
{
66
	struct vega10_smumgr *priv = hwmgr->smu_backend;
67 68

	PP_ASSERT_WITH_CODE(table_id < MAX_SMU_TABLE,
69
			"Invalid SMU Table ID!", return -EINVAL);
70
	PP_ASSERT_WITH_CODE(priv->smu_tables.entry[table_id].version != 0,
71
			"Invalid SMU Table version!", return -EINVAL);
72
	PP_ASSERT_WITH_CODE(priv->smu_tables.entry[table_id].size != 0,
73
			"Invalid SMU Table Length!", return -EINVAL);
74 75 76 77

	memcpy(priv->smu_tables.entry[table_id].table, table,
			priv->smu_tables.entry[table_id].size);

78
	smu9_send_msg_to_smc_with_parameter(hwmgr,
79
			PPSMC_MSG_SetDriverDramAddrHigh,
80
			upper_32_bits(priv->smu_tables.entry[table_id].mc_addr));
81
	smu9_send_msg_to_smc_with_parameter(hwmgr,
82
			PPSMC_MSG_SetDriverDramAddrLow,
83
			lower_32_bits(priv->smu_tables.entry[table_id].mc_addr));
84
	smu9_send_msg_to_smc_with_parameter(hwmgr,
85
			PPSMC_MSG_TransferTableDram2Smu,
86
			priv->smu_tables.entry[table_id].table_id);
87 88 89 90

	return 0;
}

91 92 93 94 95 96 97 98 99 100
int vega10_enable_smc_features(struct pp_hwmgr *hwmgr,
			       bool enable, uint32_t feature_mask)
{
	int msg = enable ? PPSMC_MSG_EnableSmuFeatures :
			PPSMC_MSG_DisableSmuFeatures;

	return smum_send_msg_to_smc_with_parameter(hwmgr,
			msg, feature_mask);
}

101
static int vega10_get_smc_features(struct pp_hwmgr *hwmgr,
102 103
		uint32_t *features_enabled)
{
104 105 106
	if (features_enabled == NULL)
		return -EINVAL;

107 108
	smu9_send_msg_to_smc(hwmgr, PPSMC_MSG_GetEnabledSmuFeatures);
	*features_enabled = smu9_get_argument(hwmgr);
109

110
	return 0;
111 112
}

113 114 115 116 117 118 119 120 121 122 123 124
static bool vega10_is_dpm_running(struct pp_hwmgr *hwmgr)
{
	uint32_t features_enabled = 0;

	vega10_get_smc_features(hwmgr, &features_enabled);

	if (features_enabled & SMC_DPM_FEATURES)
		return true;
	else
		return false;
}

125
static int vega10_set_tools_address(struct pp_hwmgr *hwmgr)
126
{
127
	struct vega10_smumgr *priv = hwmgr->smu_backend;
128

129
	if (priv->smu_tables.entry[TOOLSTABLE].mc_addr) {
130
		smu9_send_msg_to_smc_with_parameter(hwmgr,
131
				PPSMC_MSG_SetToolsDramAddrHigh,
132
				upper_32_bits(priv->smu_tables.entry[TOOLSTABLE].mc_addr));
133
		smu9_send_msg_to_smc_with_parameter(hwmgr,
134
				PPSMC_MSG_SetToolsDramAddrLow,
135
				lower_32_bits(priv->smu_tables.entry[TOOLSTABLE].mc_addr));
136 137 138 139
	}
	return 0;
}

140
static int vega10_verify_smc_interface(struct pp_hwmgr *hwmgr)
141 142
{
	uint32_t smc_driver_if_version;
143
	struct amdgpu_device *adev = hwmgr->adev;
144 145
	uint32_t dev_id;
	uint32_t rev_id;
146

147
	PP_ASSERT_WITH_CODE(!smu9_send_msg_to_smc(hwmgr,
148 149
			PPSMC_MSG_GetDriverIfVersion),
			"Attempt to get SMC IF Version Number Failed!",
150
			return -EINVAL);
151
	smc_driver_if_version = smu9_get_argument(hwmgr);
152

153 154
	dev_id = adev->pdev->device;
	rev_id = adev->pdev->revision;
155 156 157 158 159 160

	if (!((dev_id == 0x687f) &&
		((rev_id == 0xc0) ||
		(rev_id == 0xc1) ||
		(rev_id == 0xc3)))) {
		if (smc_driver_if_version != SMU9_DRIVER_IF_VERSION) {
161 162
			pr_err("Your firmware(0x%x) doesn't match SMU9_DRIVER_IF_VERSION(0x%x). Please update your firmware!\n",
			       smc_driver_if_version, SMU9_DRIVER_IF_VERSION);
163 164
			return -EINVAL;
		}
165
	}
166 167 168 169

	return 0;
}

170
static int vega10_smu_init(struct pp_hwmgr *hwmgr)
171 172
{
	struct vega10_smumgr *priv;
173
	unsigned long tools_size;
174 175 176
	int ret;
	struct cgs_firmware_info info = {0};

177
	ret = cgs_get_firmware_info(hwmgr->device,
178
				    CGS_UCODE_ID_SMU,
179 180 181 182 183 184 185 186 187
				    &info);
	if (ret || !info.kptr)
		return -EINVAL;

	priv = kzalloc(sizeof(struct vega10_smumgr), GFP_KERNEL);

	if (!priv)
		return -ENOMEM;

188
	hwmgr->smu_backend = priv;
189 190

	/* allocate space for pptable */
191
	ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
192 193
			sizeof(PPTable_t),
			PAGE_SIZE,
194
			AMDGPU_GEM_DOMAIN_VRAM,
195 196 197
			&priv->smu_tables.entry[PPTABLE].handle,
			&priv->smu_tables.entry[PPTABLE].mc_addr,
			&priv->smu_tables.entry[PPTABLE].table);
198
	if (ret)
199
		goto free_backend;
200 201 202 203 204 205

	priv->smu_tables.entry[PPTABLE].version = 0x01;
	priv->smu_tables.entry[PPTABLE].size = sizeof(PPTable_t);
	priv->smu_tables.entry[PPTABLE].table_id = TABLE_PPTABLE;

	/* allocate space for watermarks table */
206
	ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
207 208
			sizeof(Watermarks_t),
			PAGE_SIZE,
209
			AMDGPU_GEM_DOMAIN_VRAM,
210 211 212
			&priv->smu_tables.entry[WMTABLE].handle,
			&priv->smu_tables.entry[WMTABLE].mc_addr,
			&priv->smu_tables.entry[WMTABLE].table);
213 214 215

	if (ret)
		goto err0;
216 217 218 219 220 221

	priv->smu_tables.entry[WMTABLE].version = 0x01;
	priv->smu_tables.entry[WMTABLE].size = sizeof(Watermarks_t);
	priv->smu_tables.entry[WMTABLE].table_id = TABLE_WATERMARKS;

	/* allocate space for AVFS table */
222
	ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
223 224
			sizeof(AvfsTable_t),
			PAGE_SIZE,
225
			AMDGPU_GEM_DOMAIN_VRAM,
226 227 228
			&priv->smu_tables.entry[AVFSTABLE].handle,
			&priv->smu_tables.entry[AVFSTABLE].mc_addr,
			&priv->smu_tables.entry[AVFSTABLE].table);
229 230 231

	if (ret)
		goto err1;
232 233 234 235 236

	priv->smu_tables.entry[AVFSTABLE].version = 0x01;
	priv->smu_tables.entry[AVFSTABLE].size = sizeof(AvfsTable_t);
	priv->smu_tables.entry[AVFSTABLE].table_id = TABLE_AVFS;

237
	tools_size = 0x19000;
238
	if (tools_size) {
239
		ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
240 241
				tools_size,
				PAGE_SIZE,
242
				AMDGPU_GEM_DOMAIN_VRAM,
243 244 245
				&priv->smu_tables.entry[TOOLSTABLE].handle,
				&priv->smu_tables.entry[TOOLSTABLE].mc_addr,
				&priv->smu_tables.entry[TOOLSTABLE].table);
246 247 248 249 250
		if (ret)
			goto err2;
		priv->smu_tables.entry[TOOLSTABLE].version = 0x01;
		priv->smu_tables.entry[TOOLSTABLE].size = tools_size;
		priv->smu_tables.entry[TOOLSTABLE].table_id = TABLE_PMSTATUSLOG;
251 252
	}

253
	/* allocate space for AVFS Fuse table */
254
	ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
255 256
			sizeof(AvfsFuseOverride_t),
			PAGE_SIZE,
257
			AMDGPU_GEM_DOMAIN_VRAM,
258 259 260
			&priv->smu_tables.entry[AVFSFUSETABLE].handle,
			&priv->smu_tables.entry[AVFSFUSETABLE].mc_addr,
			&priv->smu_tables.entry[AVFSFUSETABLE].table);
261 262
	if (ret)
		goto err3;
263 264 265 266

	priv->smu_tables.entry[AVFSFUSETABLE].version = 0x01;
	priv->smu_tables.entry[AVFSFUSETABLE].size = sizeof(AvfsFuseOverride_t);
	priv->smu_tables.entry[AVFSFUSETABLE].table_id = TABLE_AVFS_FUSE_OVERRIDE;
267

268

269
	return 0;
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287

err3:
	if (priv->smu_tables.entry[TOOLSTABLE].table)
		amdgpu_bo_free_kernel(&priv->smu_tables.entry[TOOLSTABLE].handle,
				&priv->smu_tables.entry[TOOLSTABLE].mc_addr,
				&priv->smu_tables.entry[TOOLSTABLE].table);
err2:
	amdgpu_bo_free_kernel(&priv->smu_tables.entry[AVFSTABLE].handle,
				&priv->smu_tables.entry[AVFSTABLE].mc_addr,
				&priv->smu_tables.entry[AVFSTABLE].table);
err1:
	amdgpu_bo_free_kernel(&priv->smu_tables.entry[WMTABLE].handle,
				&priv->smu_tables.entry[WMTABLE].mc_addr,
				&priv->smu_tables.entry[WMTABLE].table);
err0:
	amdgpu_bo_free_kernel(&priv->smu_tables.entry[PPTABLE].handle,
			&priv->smu_tables.entry[PPTABLE].mc_addr,
			&priv->smu_tables.entry[PPTABLE].table);
288 289 290
free_backend:
	kfree(hwmgr->smu_backend);

291
	return -EINVAL;
292 293
}

294
static int vega10_smu_fini(struct pp_hwmgr *hwmgr)
295
{
296
	struct vega10_smumgr *priv = hwmgr->smu_backend;
297 298

	if (priv) {
299 300 301 302 303 304 305 306 307
		amdgpu_bo_free_kernel(&priv->smu_tables.entry[PPTABLE].handle,
				&priv->smu_tables.entry[PPTABLE].mc_addr,
				&priv->smu_tables.entry[PPTABLE].table);
		amdgpu_bo_free_kernel(&priv->smu_tables.entry[WMTABLE].handle,
					&priv->smu_tables.entry[WMTABLE].mc_addr,
					&priv->smu_tables.entry[WMTABLE].table);
		amdgpu_bo_free_kernel(&priv->smu_tables.entry[AVFSTABLE].handle,
					&priv->smu_tables.entry[AVFSTABLE].mc_addr,
					&priv->smu_tables.entry[AVFSTABLE].table);
308
		if (priv->smu_tables.entry[TOOLSTABLE].table)
309 310 311 312 313 314
			amdgpu_bo_free_kernel(&priv->smu_tables.entry[TOOLSTABLE].handle,
					&priv->smu_tables.entry[TOOLSTABLE].mc_addr,
					&priv->smu_tables.entry[TOOLSTABLE].table);
		amdgpu_bo_free_kernel(&priv->smu_tables.entry[AVFSFUSETABLE].handle,
					&priv->smu_tables.entry[AVFSFUSETABLE].mc_addr,
					&priv->smu_tables.entry[AVFSFUSETABLE].table);
315 316
		kfree(hwmgr->smu_backend);
		hwmgr->smu_backend = NULL;
317 318 319 320
	}
	return 0;
}

321
static int vega10_start_smu(struct pp_hwmgr *hwmgr)
322
{
323
	if (!smu9_is_smc_ram_running(hwmgr))
324 325
		return -EINVAL;

326
	PP_ASSERT_WITH_CODE(!vega10_verify_smc_interface(hwmgr),
327
			"Failed to verify SMC interface!",
328
			return -EINVAL);
329

330
	vega10_set_tools_address(hwmgr);
331

332 333 334
	return 0;
}

335 336
static int vega10_smc_table_manager(struct pp_hwmgr *hwmgr, uint8_t *table,
				    uint16_t table_id, bool rw)
337 338 339 340 341 342 343 344 345 346 347
{
	int ret;

	if (rw)
		ret = vega10_copy_table_from_smc(hwmgr, table, table_id);
	else
		ret = vega10_copy_table_to_smc(hwmgr, table, table_id);

	return ret;
}

348 349 350 351 352
const struct pp_smumgr_func vega10_smu_funcs = {
	.smu_init = &vega10_smu_init,
	.smu_fini = &vega10_smu_fini,
	.start_smu = &vega10_start_smu,
	.request_smu_load_specific_fw = NULL,
353 354
	.send_msg_to_smc = &smu9_send_msg_to_smc,
	.send_msg_to_smc_with_parameter = &smu9_send_msg_to_smc_with_parameter,
355 356
	.download_pptable_settings = NULL,
	.upload_pptable_settings = NULL,
357
	.is_dpm_running = vega10_is_dpm_running,
358
	.get_argument = smu9_get_argument,
359
	.smc_table_manager = vega10_smc_table_manager,
360
};