Hello Patrick Georgi,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/38931
to review the following change.
Change subject: Makefile: Explicitly silence sub-makes
......................................................................
Makefile: Explicitly silence sub-makes
GNU Make 4.3 doesn't propagate a global .SILENT to sub-processes
anymore. Let's make it explicit to maintain the behaviour we are
used to.
From the changelog:
[SV 54740] Ensure .SILENT settings do not leak into sub-makes
Change-Id: I3de51c245d3344b062dc0fe9c62b8d5c0ac5e67d
Signed-off-by: Nico Huber <nico.h(a)gmx.de>
---
M Makefile
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/38931/1
diff --git a/Makefile b/Makefile
index 41a9b3a..3f60493 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,7 @@
ifneq ($(V),1)
ifneq ($(Q),)
.SILENT:
+MAKEFLAGS += -s
endif
endif
--
To view, visit https://review.coreboot.org/c/coreboot/+/38931
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I3de51c245d3344b062dc0fe9c62b8d5c0ac5e67d
Gerrit-Change-Number: 38931
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-MessageType: newchange
HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38055 )
Change subject: include/cpu/amd: Drop unused file
......................................................................
include/cpu/amd: Drop unused file
Change-Id: Iff14250e52854d598967cfd3cbc98061be06e581
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
D src/include/cpu/amd/amdfam10_sysconf.h
1 file changed, 0 insertions(+), 75 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/38055/1
diff --git a/src/include/cpu/amd/amdfam10_sysconf.h b/src/include/cpu/amd/amdfam10_sysconf.h
deleted file mode 100644
index fc7b6bf..0000000
--- a/src/include/cpu/amd/amdfam10_sysconf.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2007 Advanced Micro Devices, 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.
- */
-
-#ifndef AMDFAM10_SYSCONF_H
-#define AMDFAM10_SYSCONF_H
-
-#include "northbridge/amd/amdfam10/nums.h"
-
-#include <cpu/x86/msr.h>
-
-struct p_state_t {
- unsigned int corefreq;
- unsigned int power;
- unsigned int transition_lat;
- unsigned int busmaster_lat;
- unsigned int control;
- unsigned int status;
-};
-
-struct amdfam10_sysconf_t {
- //ht
- unsigned int hc_possible_num;
- unsigned int pci1234[HC_POSSIBLE_NUM];
- unsigned int hcdn[HC_POSSIBLE_NUM];
- unsigned int hcid[HC_POSSIBLE_NUM]; //record ht chain type
- unsigned int sbdn;
- unsigned int sblk;
-
- unsigned int nodes;
- unsigned int ht_c_num; // we only can have 32 ht chain at most
- // 4-->32: 4:segn, 8:bus_max, 8:bus_min, 4:linkn, 6: nodeid, 2: enable
- unsigned int ht_c_conf_bus[HC_NUMS];
- unsigned int io_addr_num;
- unsigned int conf_io_addr[HC_NUMS];
- unsigned int conf_io_addrx[HC_NUMS];
- unsigned int mmio_addr_num;
- unsigned int conf_mmio_addr[HC_NUMS*2]; // mem and pref mem
- unsigned int conf_mmio_addrx[HC_NUMS*2];
- unsigned int segbit;
- unsigned int hcdn_reg[HC_NUMS]; // it will be used by get_pci1234
-
- // quad cores all cores in one node should be the same, and p0,..p5
- msr_t msr_pstate[NODE_NUMS * 5];
- unsigned int needs_update_pstate_msrs;
-
- unsigned int bsp_apicid;
- int enabled_apic_ext_id;
- unsigned int lift_bsp_apicid;
- int apicid_offset;
-
- void *mb; // pointer for mb related struct
-
-};
-
-extern struct amdfam10_sysconf_t sysconf;
-
-void get_bus_conf(void);
-void get_pci1234(void);
-void get_default_pci1234(int mb_hc_possible);
-
-extern u8 pirq_router_bus;
-
-#endif
--
To view, visit https://review.coreboot.org/c/coreboot/+/38055
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iff14250e52854d598967cfd3cbc98061be06e581
Gerrit-Change-Number: 38055
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: newchange
Meera Ravindranath has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36067 )
Change subject: mainboard/hatch/Kconfig: Add support for boot with tianocore payload
......................................................................
mainboard/hatch/Kconfig: Add support for boot with tianocore payload
Add new config and set the required GBB flags to support boot with
tianocore payload.
BUG=none
TEST=Allows boot to tianocore on pressing Ctrl+L in depthcharge.
Change-Id: I42fcf23523889d47f0490fbd662ca6b7587ab548
Signed-off-by: Meera Ravindranath <meera.ravindranath(a)intel.com>
---
M src/mainboard/google/hatch/Kconfig
1 file changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/36067/1
diff --git a/src/mainboard/google/hatch/Kconfig b/src/mainboard/google/hatch/Kconfig
index 004cc28..246e258 100644
--- a/src/mainboard/google/hatch/Kconfig
+++ b/src/mainboard/google/hatch/Kconfig
@@ -33,10 +33,18 @@
select GBB_FLAG_FORCE_DEV_BOOT_USB
select GBB_FLAG_FORCE_DEV_BOOT_LEGACY
select GBB_FLAG_FORCE_MANUAL_RECOVERY
+ select GBB_FLAG_DISABLE_EC_SOFTWARE_SYNC if BOARD_USES_TIANOCORE
+ select GBB_FLAG_ENABLE_ALTERNATE_OS if BOARD_USES_TIANOCORE
select HAS_RECOVERY_MRC_CACHE
select MRC_CLEAR_NORMAL_CACHE_ON_RECOVERY_RETRAIN
select VBOOT_LID_SWITCH
+config BOARD_USES_TIANOCORE
+ bool
+ default n
+ select USE_LEGACY_8254_TIMER
+ select USE_ACPI_PM_TIMER
+
config CHROMEOS_WIFI_SAR
bool "Enable SAR options for Chrome OS build"
depends on CHROMEOS
--
To view, visit https://review.coreboot.org/c/coreboot/+/36067
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I42fcf23523889d47f0490fbd662ca6b7587ab548
Gerrit-Change-Number: 36067
Gerrit-PatchSet: 1
Gerrit-Owner: Meera Ravindranath <meera.ravindranath(a)intel.com>
Gerrit-MessageType: newchange