aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2017-09-28 10:45:26 +1000
committerAlex Deucher <alexander.deucher@amd.com>2017-09-28 16:51:28 -0400
commit3e8c3108dab197858e74dbb740c5312ae636ea9b (patch)
treea578d7c7101f908c4defd9e4d2e2e868a168f7fa /drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
parentamdgpu/dc: inline a bunch of float operations. (diff)
downloadlinux-dev-3e8c3108dab197858e74dbb740c5312ae636ea9b.tar.xz
linux-dev-3e8c3108dab197858e74dbb740c5312ae636ea9b.zip
amdgpu/dc: inline a bunch of the dml wrappers.
This reduces code size. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c56
1 files changed, 1 insertions, 55 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c b/drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
index 21349a022de3..c242b8d41b8a 100644
--- a/drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
+++ b/drivers/gpu/drm/amd/display/dc/dml/dml_common_defs.c
@@ -26,26 +26,7 @@
#include "dml_common_defs.h"
#include "../calcs/dcn_calc_math.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);
-}
-
+#include "dml_inline_defs.h"
double dml_round(double a)
{
double round_pt = 0.5;
@@ -58,16 +39,6 @@ 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,
@@ -89,16 +60,6 @@ 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;
@@ -131,18 +92,3 @@ 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);
-}