Revert "amdgpu/dc: inline a bunch of the dml wrappers."
authorHarry Wentland <harry.wentland@amd.com>
Tue, 17 Oct 2017 02:11:04 +0000 (22:11 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Sat, 21 Oct 2017 20:45:03 +0000 (16:45 -0400)
This reverts commit 3e8c3108dab197858e74dbb740c5312ae636ea9b.

Unfortunately these clash with our DML update from the HW guys.
Will attempt to reroll them after.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml/display_mode_support.c
drivers/gpu/drm/amd/display/dc/dml/display_rq_dlg_calc.c
drivers/gpu/drm/amd/display/dc/dml/display_watermark.c
drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.h
drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h [deleted file]
drivers/gpu/drm/amd/display/dc/dml/soc_bounding_box.c

index ac573568c10aeb986450637b8475364744a7d526..3b4ee74527f5013748c4beb8466989be34d3b238 100644 (file)
@@ -26,7 +26,6 @@
 #include "display_mode_support.h"
 #include "display_mode_lib.h"
 
-#include "dml_inline_defs.h"
 int dml_ms_check(
                struct display_mode_lib *mode_lib,
                struct _vcs_dpi_display_e2e_pipe_params_st *e2e,
index 7a5fb1cef303c9acdc64e90f1691e18df58e90bd..9fccbbffe12958c45e2a26399eef3ad175e24807 100644 (file)
@@ -25,8 +25,6 @@
 #include "display_rq_dlg_calc.h"
 #include "display_mode_lib.h"
 
-#include "dml_inline_defs.h"
-
 static unsigned int get_bytes_per_element(enum source_format_class source_format, bool is_chroma)
 {
        unsigned int ret_val = 0;
index 142a3284ac44ac21c3e97c293e0e9d8084a9ba45..390f09391433949d3df43b13d7d17f51ffebb9c1 100644 (file)
@@ -24,7 +24,6 @@
  */
 #include "display_watermark.h"
 #include "display_mode_lib.h"
-#include "dml_inline_defs.h"
 
 static void get_bytes_per_pixel(
                enum source_format_class format,
index c242b8d41b8a22e6ab6ad3eb0f492f3292c091e4..21349a022de3b198e9447c3453e79abc1dc1afeb 100644 (file)
 #include "dml_common_defs.h"
 #include "../calcs/dcn_calc_math.h"
 
-#include "dml_inline_defs.h"
+double dml_min(double a, double b)
+{
+       return (double) dcn_bw_min2(a, b);
+}
+
+double dml_max(double a, double b)
+{
+       return (double) dcn_bw_max2(a, b);
+}
+
+double dml_ceil(double a)
+{
+       return (double) dcn_bw_ceil2(a, 1);
+}
+
+double dml_floor(double a)
+{
+       return (double) dcn_bw_floor2(a, 1);
+}
+
 double dml_round(double a)
 {
        double round_pt = 0.5;
@@ -39,6 +58,16 @@ double dml_round(double a)
                return floor;
 }
 
+int dml_log2(double x)
+{
+       return dml_round((double)dcn_bw_log(x, 2));
+}
+
+double dml_pow(double a, int exp)
+{
+       return (double) dcn_bw_pow(a, exp);
+}
+
 unsigned int dml_round_to_multiple(
        unsigned int num,
        unsigned int multiple,
@@ -60,6 +89,16 @@ unsigned int dml_round_to_multiple(
                return (num - remainder);
 }
 
+double dml_fmod(double f, int val)
+{
+       return (double) dcn_bw_mod(f, val);
+}
+
+double dml_ceil_2(double f)
+{
+       return (double) dcn_bw_ceil2(f, 2);
+}
+
 bool dml_util_is_420(enum source_format_class sorce_format)
 {
        bool val = false;
@@ -92,3 +131,18 @@ bool dml_util_is_420(enum source_format_class sorce_format)
 
        return val;
 }
+
+double dml_ceil_ex(double x, double granularity)
+{
+       return (double) dcn_bw_ceil2(x, granularity);
+}
+
+double dml_floor_ex(double x, double granularity)
+{
+       return (double) dcn_bw_floor2(x, granularity);
+}
+
+double dml_log(double x, double base)
+{
+       return (double) dcn_bw_log(x, base);
+}
index c621f8321b03a128e8a1a424dc7a6d2f268b36cf..c5340d41eedb7f0bb71d3aed0d77e038b5c9297b 100644 (file)
 
 #define DTRACE(str, ...) dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__);
 
+double dml_min(double a, double b);
+double dml_max(double a, double b);
 bool dml_util_is_420(enum source_format_class sorce_format);
+double dml_ceil_ex(double x, double granularity);
+double dml_floor_ex(double x, double granularity);
+double dml_log(double x, double base);
+double dml_ceil(double a);
+double dml_floor(double a);
 double dml_round(double a);
+int dml_log2(double x);
+double dml_pow(double a, int exp);
 unsigned int dml_round_to_multiple(
                        unsigned int num, unsigned int multiple, bool up);
+double dml_fmod(double f, int val);
+double dml_ceil_2(double f);
 
 #endif /* __DC_COMMON_DEFS_H__ */
diff --git a/drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h b/drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h
deleted file mode 100644 (file)
index 1c6c631..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-#ifndef __DML_INLINE_DEFS_H__
-#define __DML_INLINE_DEFS_H__
-#include "dml_common_defs.h"
-#include "../calcs/dcn_calc_math.h"
-
-static inline double dml_min(double a, double b)
-{
-       return (double) dcn_bw_min2(a, b);
-}
-
-static inline double dml_max(double a, double b)
-{
-       return (double) dcn_bw_max2(a, b);
-}
-
-static inline double dml_ceil(double a)
-{
-       return (double) dcn_bw_ceil2(a, 1);
-}
-
-static inline double dml_floor(double a)
-{
-       return (double) dcn_bw_floor2(a, 1);
-}
-
-static inline int dml_log2(double x)
-{
-       return dml_round((double)dcn_bw_log(x, 2));
-}
-
-static inline double dml_pow(double a, int exp)
-{
-       return (double) dcn_bw_pow(a, exp);
-}
-
-static inline double dml_fmod(double f, int val)
-{
-       return (double) dcn_bw_mod(f, val);
-}
-
-static inline double dml_ceil_2(double f)
-{
-       return (double) dcn_bw_ceil2(f, 2);
-}
-
-static inline double dml_ceil_ex(double x, double granularity)
-{
-       return (double) dcn_bw_ceil2(x, granularity);
-}
-
-static inline double dml_floor_ex(double x, double granularity)
-{
-       return (double) dcn_bw_floor2(x, granularity);
-}
-
-static inline double dml_log(double x, double base)
-{
-       return (double) dcn_bw_log(x, base);
-}
-
-#endif
index d40f6ae9622c59d73f8c2d77773db12c702cc7fd..112b0b728b4d4bba9d6c46c5a370d99bea790171 100644 (file)
@@ -25,7 +25,6 @@
 #include "soc_bounding_box.h"
 #include "display_mode_lib.h"
 
-#include "dml_inline_defs.h"
 void dml_socbb_set_latencies(
                struct display_mode_lib *mode_lib,
                struct _vcs_dpi_soc_bounding_box_st *from_box)