Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01a526f3 authored by Harry Wentland's avatar Harry Wentland Committed by Alex Deucher
Browse files

drm/amd/display: Pass log_mask from DM



Linux and Windows often desire different log levels.

Signed-off-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 02e749dc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -374,6 +374,8 @@ int amdgpu_dm_init(struct amdgpu_device *adev)

	init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;

	init_data.log_mask = DC_DEFAULT_LOG_MASK;

#ifdef ENABLE_FBC
	if (adev->family == FAMILY_CZ)
		amdgpu_dm_initialize_fbc(adev);
+5 −36
Original line number Diff line number Diff line
@@ -64,40 +64,9 @@ static const struct dc_log_type_info log_type_info_tbl[] = {
};


#define DC_DEFAULT_LOG_MASK ((1 << LOG_ERROR) | \
		(1 << LOG_WARNING) | \
		(1 << LOG_EVENT_MODE_SET) | \
		(1 << LOG_EVENT_DETECTION) | \
		(1 << LOG_EVENT_LINK_TRAINING) | \
		(1 << LOG_EVENT_LINK_LOSS) | \
		(1 << LOG_EVENT_UNDERFLOW) | \
		(1 << LOG_RESOURCE) | \
		(1 << LOG_FEATURE_OVERRIDE) | \
		(1 << LOG_DETECTION_EDID_PARSER) | \
		(1 << LOG_DC) | \
		(1 << LOG_HW_HOTPLUG) | \
		(1 << LOG_HW_SET_MODE) | \
		(1 << LOG_HW_RESUME_S3) | \
		(1 << LOG_HW_HPD_IRQ) | \
		(1 << LOG_SYNC) | \
		(1 << LOG_BANDWIDTH_VALIDATION) | \
		(1 << LOG_MST) | \
		(1 << LOG_DETECTION_DP_CAPS) | \
		(1 << LOG_BACKLIGHT)) | \
		(1 << LOG_I2C_AUX) | \
		(1 << LOG_IF_TRACE) | \
		(1 << LOG_DTN) /* | \
		(1 << LOG_DEBUG) | \
		(1 << LOG_BIOS) | \
		(1 << LOG_SURFACE) | \
		(1 << LOG_SCALER) | \
		(1 << LOG_DML) | \
		(1 << LOG_HW_LINK_TRAINING) | \
		(1 << LOG_HW_AUDIO)| \
		(1 << LOG_BANDWIDTH_CALCS)*/

/* ----------- Object init and destruction ----------- */
static bool construct(struct dc_context *ctx, struct dal_logger *logger)
static bool construct(struct dc_context *ctx, struct dal_logger *logger,
		      uint32_t log_mask)
{
	/* malloc buffer and init offsets */
	logger->log_buffer_size = DAL_LOGGER_BUFFER_MAX_SIZE;
@@ -120,7 +89,7 @@ static bool construct(struct dc_context *ctx, struct dal_logger *logger)

	logger->ctx = ctx;

	logger->mask = DC_DEFAULT_LOG_MASK;
	logger->mask = log_mask;

	return true;
}
@@ -133,14 +102,14 @@ static void destruct(struct dal_logger *logger)
	}
}

struct dal_logger *dal_logger_create(struct dc_context *ctx)
struct dal_logger *dal_logger_create(struct dc_context *ctx, uint32_t log_mask)
{
	/* malloc struct */
	struct dal_logger *logger = dm_alloc(sizeof(struct dal_logger));

	if (!logger)
		return NULL;
	if (!construct(ctx, logger)) {
	if (!construct(ctx, logger, log_mask)) {
		dm_free(logger);
		return NULL;
	}
+1 −1
Original line number Diff line number Diff line
@@ -493,7 +493,7 @@ static bool construct(struct dc *dc,
	dc_ctx->asic_id = init_params->asic_id;

	/* Create logger */
	logger = dal_logger_create(dc_ctx);
	logger = dal_logger_create(dc_ctx, init_params->log_mask);

	if (!logger) {
		/* can *not* call logger. call base driver 'print error' */
+1 −0
Original line number Diff line number Diff line
@@ -267,6 +267,7 @@ struct dc_init_data {
	enum dce_environment dce_environment;

	struct dc_config flags;
	uint32_t log_mask;
#ifdef ENABLE_FBC
	uint64_t fbc_gpu_addr;
#endif
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ struct dc_state;
 *
 */

struct dal_logger *dal_logger_create(struct dc_context *ctx);
struct dal_logger *dal_logger_create(struct dc_context *ctx, uint32_t log_mask);

uint32_t dal_logger_destroy(struct dal_logger **logger);

Loading