coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
panel-AUO_KD101N80_45NA.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <mipi/panel.h>
4 
6  .edid = {
7  .ascii_string = "KD101N80-45NA",
8  .manufacturer_name = "AUO",
9  .panel_bits_per_color = 8,
10  .panel_bits_per_pixel = 24,
11  .mode = {
12  .pixel_clock = 157000,
13  .lvds_dual_channel = 0,
14  .refresh = 60,
15  .ha = 1200, .hbl = 140, .hso = 80, .hspw = 24,
16  .va = 1920, .vbl = 36, .vso = 16, .vspw = 4,
17  .phsync = '-', .pvsync = '-',
18  .x_mm = 135, .y_mm = 216,
19  },
20  },
21  .init = {
22  PANEL_DELAY(10),
23  PANEL_DCS(0x11),
24  PANEL_DELAY(120),
25  PANEL_DCS(0x29),
26  PANEL_DELAY(20),
27  PANEL_END,
28  },
29 };
#define PANEL_DELAY(delay)
Definition: panel.h:49
#define PANEL_END
Definition: panel.h:53
#define PANEL_DCS(...)
Definition: panel.h:39
struct panel_serializable_data AUO_KD101N80_45NA
char ascii_string[EDID_ASCII_STRING_LENGTH+1]
Definition: edid.h:85
struct edid edid
Definition: panel.h:30