the following patch was just integrated into master:
commit d5844d2806e98a60f957cbb4020cb0a1e4300a36
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat May 23 05:46:55 2015 +0300
AGESA: Drop EXT_RT_TBL_SUPPORT
Not referenced anywhere.
Change-Id: I66c5f2948145666721c9033b82f23f7c37ac1884
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10281
Reviewed-by: Edward O'Callaghan <edward.ocallaghan(a)koparo.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10281 for details.
-gerrit
the following patch was just integrated into master:
commit 05b65ab23a3716ff91b291ba4845f79e10329e27
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat May 23 05:46:49 2015 +0300
AGESA: Drop DIMM_SUPPORT, _DDR3 and _REGISTERED
Not referenced anywhere.
Change-Id: I57180ccfab93e45df9982d08bad71834a04eb9f9
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/10280
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <edward.ocallaghan(a)koparo.com>
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10280 for details.
-gerrit
the following patch was just integrated into master:
commit 77ff0b1a01d3d640be55d301b2fcf09a3f840ffe
Author: Lee Leahy <leroy.p.leahy(a)intel.com>
Date: Tue May 5 15:07:29 2015 -0700
Braswell: Use Baytrail as Comparison Base
Add baytrail source for comparison with Braswell.
BRANCH=none
BUG=None
TEST=None
Change-Id: I5170addf41676d95a3daf070a32bcee085f8156d
Signed-off-by: Lee Leahy <leroy.p.leahy(a)intel.com>
Reviewed-on: http://review.coreboot.org/10117
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10117 for details.
-gerrit
the following patch was just integrated into master:
commit b5ad827ee584a960212ae983e30cd1a0b18c55a5
Author: Lee Leahy <leroy.p.leahy(a)intel.com>
Date: Mon Apr 20 15:29:16 2015 -0700
drivers/intel: Update FSP 1.1 Driver
Update the FSP driver files from 1.0 to 1.1.
Updates will occur manually to these files only for FSP 1.1 support. An
fsp_x_y should be added in the future to support newer versions of the
FSP specification.
Please note that due to the interface with EDK2, these files make
references to data structures and fields that use CamelCase.
BRANCH=none
BUG=None
TEST=Build for Braswell or Skylake boards using FSP 1.1.
Change-Id: I2914c047d786a3060075356783ac9758bc41f633
Signed-off-by: Lee Leahy <leroy.p.leahy(a)intel.com>
Reviewed-on: http://review.coreboot.org/10049
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/10049 for details.
-gerrit
the following patch was just integrated into master:
commit 65ff63f5ea70ca08d451d8e25791bf1200ce8c11
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Thu May 21 18:54:10 2015 +0200
MAINTAINERS: grab build system responsibility
Since nobody else stepped up, I hereby claim responsibility for the
build system.
Change-Id: I580b906d15fc2f049f0072e7b4608b1f19db83ab
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Reviewed-on: http://review.coreboot.org/10277
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10277 for details.
-gerrit
Aaron Durbin (adurbin(a)chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10279
-gerrit
commit a5ad72d19942a9717253ae4815a54d897ab9b0e2
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Thu May 21 14:54:18 2015 -0500
consoles: remove unused infrastructure
The __console attribute as well as linker binding
was dropped at some point. Kill of the dead code and
infrastructure.
Change-Id: I15e1fb4468fffe2e148ec9ac8539dfd958551807
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
---
src/console/uart_wrapper.c | 28 ----------------------------
src/include/console/console.h | 6 ------
src/lib/ramstage.ld | 4 ----
3 files changed, 38 deletions(-)
diff --git a/src/console/uart_wrapper.c b/src/console/uart_wrapper.c
deleted file mode 100644
index 0454cfc..0000000
--- a/src/console/uart_wrapper.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * 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 <console/console.h>
-#include <console/uart.h>
-
-static const struct console_driver uart_console __console = {
- .init = uart_init,
- .tx_byte = uart_tx_byte,
- .tx_flush = uart_tx_flush,
- .rx_byte = uart_rx_byte,
- .tst_byte = uart_can_rx_byte,
-};
diff --git a/src/include/console/console.h b/src/include/console/console.h
index 65e65bb..d25c792 100644
--- a/src/include/console/console.h
+++ b/src/include/console/console.h
@@ -34,12 +34,6 @@ struct console_driver {
int (*tst_byte)(void);
};
-#define __console __attribute__((used, __section__ (".rodata.console_drivers")))
-
-/* Defined by the linker... */
-extern struct console_driver console_drivers[];
-extern struct console_driver econsole_drivers[];
-
void post_code(u8 value);
#if CONFIG_CMOS_POST_EXTRA
void post_log_extra(u32 value);
diff --git a/src/lib/ramstage.ld b/src/lib/ramstage.ld
index f12653e..744f277 100644
--- a/src/lib/ramstage.ld
+++ b/src/lib/ramstage.ld
@@ -53,10 +53,6 @@
/* If any changes are made to the driver start/symbols or the
* section names the equivalent changes need to made to
* rmodule.ld. */
- console_drivers = .;
- KEEP(*(.rodata.console_drivers));
- econsole_drivers = . ;
- . = ALIGN(8);
pci_drivers = . ;
KEEP(*(.rodata.pci_driver));
epci_drivers = . ;