aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/kukui/panel_kakadu.c
diff options
context:
space:
mode:
authorCasper Chang <casper.chang@bitland.corp-partner.google.com>2020-02-11 11:34:26 +0800
committerPatrick Georgi <pgeorgi@google.com>2020-02-17 15:37:56 +0000
commitfa36d0b79fb9fdc9747bb653398c1893eb7221c8 (patch)
tree8f97a8f35ea3504ce32135c3bc1973c80cb08faa /src/mainboard/google/kukui/panel_kakadu.c
parent1d812e893a2c2e0e6ee1eb9dafb9e681139624e7 (diff)
mb/google/kukui: Add panel for Kakadu
Declare the following panel for Kakadu: - BOE_TV105WUM_NW0 BUG=b:148997748 TEST=build Kakadu image passed BRANCH=kukui Signed-off-by: Casper Chang <casper_chang@bitand.corp-partner.google.com> Change-Id: I394b8cafa8be40e5fd6bf8ceb81b520df73718a4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/38822 Reviewed-by: Peichao Li <peichao.wang@bitland.corp-partner.google.com> Reviewed-by: Hung-Te Lin <hungte@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/kukui/panel_kakadu.c')
-rw-r--r--src/mainboard/google/kukui/panel_kakadu.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/mainboard/google/kukui/panel_kakadu.c b/src/mainboard/google/kukui/panel_kakadu.c
new file mode 100644
index 0000000000..3cb18ba918
--- /dev/null
+++ b/src/mainboard/google/kukui/panel_kakadu.c
@@ -0,0 +1,28 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2020 Bitland Tech Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include "panel.h"
+
+static struct panel_description kakadu_panels[] = {
+ [1] = { .name = "BOE_TV105WUM_NW0", },
+};
+
+struct panel_description *get_panel_description(int panel_id)
+{
+ if (panel_id < 0 || panel_id >= ARRAY_SIZE(kakadu_panels))
+ return NULL;
+
+ return get_panel_from_cbfs(&kakadu_panels[panel_id]);
+}