1 /* SPDX-License-Identifier: GPL-2.0-only OR MIT */ 2 3 #include <soc/addressmap.h> 4 #include <soc/dp_intf.h> 5 6 const struct mtk_dpintf dpintf_data = { 7 .regs = (void *)(DP_INTF0_BASE), 8 .color_format = MTK_DPINTF_COLOR_FORMAT_RGB, 9 .yc_map = MTK_DPINTF_OUT_YC_MAP_RGB, 10 .bit_num = MTK_DPINTF_OUT_BIT_NUM_8BITS, 11 .channel_swap = MTK_DPINTF_OUT_CHANNEL_SWAP_RGB, 12 .input_mode = MTK_DPINTF_INPUT_MODE_1P, 13 }; 14