Commit d3b18f8c authored by Anthony Koo's avatar Anthony Koo Committed by Alex Deucher
Browse files

drm/amd/display: clean up some header paths



[Why]
Some include paths don't need to have relative paths
And some types missing

[How]
make some changes to headers and modify include path

Signed-off-by: default avatarAnthony Koo <Anthony.Koo@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarAurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d5617541
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#define _DMUB_DC_SRV_H_

#include "os_types.h"
#include "../dmub/inc/dmub_cmd.h"
#include "dmub/inc/dmub_cmd.h"

struct dmub_srv;
struct dmub_cmd_header;
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#include "dce_abm.h"
#include "dc.h"
#include "dc_dmub_srv.h"
#include "../../dmub/inc/dmub_srv.h"
#include "dmub/inc/dmub_srv.h"
#include "core_types.h"
#include "dm_services.h"
#include "reg_helper.h"
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@
#include "dmub_psr.h"
#include "dc.h"
#include "dc_dmub_srv.h"
#include "../../dmub/inc/dmub_srv.h"
#include "../../dmub/inc/dmub_gpint_cmd.h"
#include "dmub/inc/dmub_srv.h"
#include "dmub/inc/dmub_gpint_cmd.h"
#include "core_types.h"

#define MAX_PIPES 6
+0 −5
Original line number Diff line number Diff line
@@ -215,11 +215,6 @@ struct dmub_rb_cmd_dpphy_init {
	uint8_t reserved[60];
};

struct dmub_psr_debug_flags {
	uint8_t visual_confirm : 1;
	uint8_t reserved : 7;
};

struct dmub_cmd_psr_copy_settings_data {
	uint16_t psr_level;
	uint8_t dpp_inst;
+11 −0
Original line number Diff line number Diff line
@@ -49,6 +49,12 @@ extern "C" {
#define dmub_udelay(microseconds) udelay(microseconds)
#endif

/* Maximum number of streams on any ASIC. */
#define DMUB_MAX_STREAMS 6

/* Maximum number of planes on any ASIC. */
#define DMUB_MAX_PLANES 6

union dmub_addr {
	struct {
		uint32_t low_part;
@@ -57,6 +63,11 @@ union dmub_addr {
	uint64_t quad_part;
};

struct dmub_psr_debug_flags {
	uint8_t visual_confirm : 1;
	uint8_t reserved : 7;
};

#if defined(__cplusplus)
}
#endif