Files
system76-coreboot/src/drivers/mipi/panel-AUO_KD101N80_45NA.c
Julius Werner 5ff1808f20 device/mipi: Move to drivers/mipi
Sounds like we prefer to have this under drivers/ instead of device/.
Also move all MIPI-related headers out from device/ into their own
directory.

Signed-off-by: Julius Werner <jwerner@chromium.org>
Change-Id: Ib3e66954b8f0cf85b28d8d186b09d7846707559d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57128
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
2021-08-26 15:18:45 +00:00

31 lines
680 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#include <mipi/panel.h>
struct panel_serializable_data AUO_KD101N80_45NA = {
.edid = {
.ascii_string = "KD101N80-45NA",
.manufacturer_name = "AUO",
.panel_bits_per_color = 8,
.panel_bits_per_pixel = 24,
.mode = {
.pixel_clock = 157000,
.lvds_dual_channel = 0,
.refresh = 60,
.ha = 1200, .hbl = 140, .hso = 80, .hspw = 24,
.va = 1920, .vbl = 36, .vso = 16, .vspw = 4,
.phsync = '-', .pvsync = '-',
.x_mm = 135, .y_mm = 216,
},
},
.orientation = LB_FB_ORIENTATION_LEFT_UP,
.init = {
PANEL_DELAY(10),
PANEL_DCS(0x11),
PANEL_DELAY(120),
PANEL_DCS(0x29),
PANEL_DELAY(20),
PANEL_END,
},
};