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

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
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#define _DMUB_DC_SRV_H_ #define _DMUB_DC_SRV_H_
#include "os_types.h" #include "os_types.h"
#include "../dmub/inc/dmub_cmd.h" #include "dmub/inc/dmub_cmd.h"
struct dmub_srv; struct dmub_srv;
struct dmub_cmd_header; struct dmub_cmd_header;
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include "dce_abm.h" #include "dce_abm.h"
#include "dc.h" #include "dc.h"
#include "dc_dmub_srv.h" #include "dc_dmub_srv.h"
#include "../../dmub/inc/dmub_srv.h" #include "dmub/inc/dmub_srv.h"
#include "core_types.h" #include "core_types.h"
#include "dm_services.h" #include "dm_services.h"
#include "reg_helper.h" #include "reg_helper.h"
......
...@@ -26,8 +26,8 @@ ...@@ -26,8 +26,8 @@
#include "dmub_psr.h" #include "dmub_psr.h"
#include "dc.h" #include "dc.h"
#include "dc_dmub_srv.h" #include "dc_dmub_srv.h"
#include "../../dmub/inc/dmub_srv.h" #include "dmub/inc/dmub_srv.h"
#include "../../dmub/inc/dmub_gpint_cmd.h" #include "dmub/inc/dmub_gpint_cmd.h"
#include "core_types.h" #include "core_types.h"
#define MAX_PIPES 6 #define MAX_PIPES 6
......
...@@ -215,11 +215,6 @@ struct dmub_rb_cmd_dpphy_init { ...@@ -215,11 +215,6 @@ struct dmub_rb_cmd_dpphy_init {
uint8_t reserved[60]; 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 { struct dmub_cmd_psr_copy_settings_data {
uint16_t psr_level; uint16_t psr_level;
uint8_t dpp_inst; uint8_t dpp_inst;
......
...@@ -49,6 +49,12 @@ extern "C" { ...@@ -49,6 +49,12 @@ extern "C" {
#define dmub_udelay(microseconds) udelay(microseconds) #define dmub_udelay(microseconds) udelay(microseconds)
#endif #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 { union dmub_addr {
struct { struct {
uint32_t low_part; uint32_t low_part;
...@@ -57,6 +63,11 @@ union dmub_addr { ...@@ -57,6 +63,11 @@ union dmub_addr {
uint64_t quad_part; uint64_t quad_part;
}; };
struct dmub_psr_debug_flags {
uint8_t visual_confirm : 1;
uint8_t reserved : 7;
};
#if defined(__cplusplus) #if defined(__cplusplus)
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment