[coreboot-gerrit] New patch to review for coreboot: b14ec47 pinky: Add mainboard-specific bootblock init

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Mar 26 14:58:24 CET 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9050

-gerrit

commit b14ec475fc17e5dce9a0b6ccf5f3f4f08ca344b3
Author: David Hendricks <dhendrix at chromium.org>
Date:   Mon Sep 29 13:20:59 2014 -0700

    pinky: Add mainboard-specific bootblock init
    
    This adds a mainboard-specific bootblock function that will be used
    to set up some board-specific parameters which are currently set up
    in the SoC bootblock function.
    
    BUG=none
    BRANCH=none
    TEST=built and booted on Pinky
    
    Change-Id: I86c90f7ade824fb9d6b71ca3349d1ce9eb4772fe
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 03e0bb2eaca7a54c3df95b21d856ef4114d3c833
    Original-Signed-off-by: David Hendricks <dhendrix at chromium.org>
    Original-Change-Id: Ibee7076ebd6080f04b0697067e85ce8b6b2230e4
    Original-Reviewed-on: https://chromium-review.googlesource.com/220399
    Original-Reviewed-by: Julius Werner <jwerner at chromium.org>
---
 src/mainboard/google/veyron_pinky/Kconfig      |  1 +
 src/mainboard/google/veyron_pinky/Makefile.inc |  1 +
 src/mainboard/google/veyron_pinky/bootblock.c  | 24 ++++++++++++++++++++++++
 3 files changed, 26 insertions(+)

diff --git a/src/mainboard/google/veyron_pinky/Kconfig b/src/mainboard/google/veyron_pinky/Kconfig
index beacefe..ea025bf 100644
--- a/src/mainboard/google/veyron_pinky/Kconfig
+++ b/src/mainboard/google/veyron_pinky/Kconfig
@@ -28,6 +28,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy
 	select SOC_ROCKCHIP_RK3288
 	select MAINBOARD_DO_NATIVE_VGA_INIT
 	select BOARD_ROMSIZE_KB_4096
+	select MAINBOARD_HAS_BOOTBLOCK_INIT
 	select HAVE_HARD_RESET
 
 config MAINBOARD_DIR
diff --git a/src/mainboard/google/veyron_pinky/Makefile.inc b/src/mainboard/google/veyron_pinky/Makefile.inc
index 4936672..2d3f62f 100644
--- a/src/mainboard/google/veyron_pinky/Makefile.inc
+++ b/src/mainboard/google/veyron_pinky/Makefile.inc
@@ -16,6 +16,7 @@
 ## along with this program; if not, write to the Free Software
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 ##
+bootblock-y += bootblock.c
 bootblock-y += reset.c
 
 verstage-y += reset.c
diff --git a/src/mainboard/google/veyron_pinky/bootblock.c b/src/mainboard/google/veyron_pinky/bootblock.c
new file mode 100644
index 0000000..d5bffea
--- /dev/null
+++ b/src/mainboard/google/veyron_pinky/bootblock.c
@@ -0,0 +1,24 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2014 Google 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <bootblock_common.h>
+
+void bootblock_mainboard_init(void)
+{
+}



More information about the coreboot-gerrit mailing list