summaryrefslogtreecommitdiff
path: root/board/google/chromebox_panther/panther.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-02 19:40:54 (GMT)
committerSimon Glass <sjg@chromium.org>2015-04-17 01:27:40 (GMT)
commit51e9dad29675384becb0d31b1aa7388dc77d34aa (patch)
tree3d52fcd844c0238071582a73f44ecf4152eb3dd4 /board/google/chromebox_panther/panther.c
parentcc285c565aad1c25612ddfc4690ff201970a68f0 (diff)
downloadu-boot-51e9dad29675384becb0d31b1aa7388dc77d34aa.tar.xz
x86: Add support for panther (Asus Chromebox)
Support running U-Boot as a coreboot payload. Tested peripherals include: - Video (HDMI and DisplayPort) - SATA disk - Gigabit Ethernet - SPI flash USB3 does not work. This may be a problem with the USB3 PCI driver or something in the USB3 stack and has not been investigated So far this is disabled. The SD card slot also does not work. For video, coreboot will need to run the OPROM to set this up. With this board, bare support (running without coreboot) is not available as yet. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/google/chromebox_panther/panther.c')
-rw-r--r--board/google/chromebox_panther/panther.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/board/google/chromebox_panther/panther.c b/board/google/chromebox_panther/panther.c
new file mode 100644
index 0000000..d492a03
--- /dev/null
+++ b/board/google/chromebox_panther/panther.c
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2015 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+#include <asm/arch/pch.h>
+
+int arch_early_init_r(void)
+{
+ return 0;
+}
+
+int board_early_init_f(void)
+{
+ return 0;
+}
+
+void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
+{
+}