diff options
Diffstat (limited to 'src/cpu/samsung/exynos5420/dp.h')
-rw-r--r-- | src/cpu/samsung/exynos5420/dp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cpu/samsung/exynos5420/dp.h b/src/cpu/samsung/exynos5420/dp.h index 4d9d26b859..9131b0853c 100644 --- a/src/cpu/samsung/exynos5420/dp.h +++ b/src/cpu/samsung/exynos5420/dp.h @@ -23,6 +23,8 @@ #ifndef CPU_SAMSUNG_EXYNOS5420_DP_H #define CPU_SAMSUNG_EXYNOS5420_DP_H +#include "cpu.h" + /* DSIM register map */ struct exynos_dp { u8 res1[0x10]; @@ -209,6 +211,9 @@ struct exynos_dp { u32 test_pattern_gen_ctrl; }; +static struct exynos_dp * const exynos_dp0 = (void *)EXYNOS5_DP0_BASE; +static struct exynos_dp * const exynos_dp1 = (void *)EXYNOS5_DP1_BASE; + /* For DP VIDEO CTL 1 */ #define VIDEO_EN_MASK (0x01 << 7) #define VIDEO_MUTE_MASK (0x01 << 6) |