coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
panel-AUO_NT51021D8P.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 = "NT51021D8P",
8  .manufacturer_name = "AUO",
9  .panel_bits_per_color = 8,
10  .panel_bits_per_pixel = 24,
11  .mode = {
12  .pixel_clock = 159420,
13  .lvds_dual_channel = 0,
14  .refresh = 60,
15  .ha = 1200, .hbl = 141, .hso = 80, .hspw = 1,
16  .va = 1920, .vbl = 61, .vso = 35, .vspw = 1,
17  .phsync = '-', .pvsync = '-',
18  .x_mm = 107, .y_mm = 132,
19  },
20  },
21  .init = {
22  PANEL_DCS(0x11),
23  PANEL_DELAY(0x78),
24  PANEL_DCS(0x29),
25  PANEL_DELAY(0x14),
26  PANEL_END,
27  },
28 };
#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_NT51021D8P
char ascii_string[EDID_ASCII_STRING_LENGTH+1]
Definition: edid.h:85
struct edid edid
Definition: panel.h:30