Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31290
Change subject: Revert "cpu/x86/mtrr: Fix sign overflow"
......................................................................
Revert "cpu/x86/mtrr: Fix sign overflow"
This reverts commit 6bbc8d8050b1d51ec4bf15003a2da54e20d476c7.
The macro is used in assembly where integer suffixes are not portable.
Also, it is unclear how this can overflow as it's already the macros
purpose to avoid the overflow.
Change-Id: I12c9bfe40891ae3afbfda05f60a20b59e2954aed
Signed-off-by: Nico Huber <nico.huber(a)secunet.com>
---
M src/include/cpu/x86/mtrr.h
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/31290/1
diff --git a/src/include/cpu/x86/mtrr.h b/src/include/cpu/x86/mtrr.h
index 0398a2e..eb7d78d 100644
--- a/src/include/cpu/x86/mtrr.h
+++ b/src/include/cpu/x86/mtrr.h
@@ -150,7 +150,7 @@
#define _ALIGN_DOWN_POW2(x) ((x) & ~_POW2_MASK(x))
/* Calculate `4GiB - x` (e.g. absolute address for offset from 4GiB) */
-#define _FROM_4G_TOP(x) (((1UL << 20) - ((x) >> 12)) << 12)
+#define _FROM_4G_TOP(x) (((1 << 20) - ((x) >> 12)) << 12)
/* At the end of romstage, low RAM 0..CACHE_TM_RAMTOP may be set
* as write-back cacheable to speed up ramstage decompression.
--
To view, visit https://review.coreboot.org/c/coreboot/+/31290
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I12c9bfe40891ae3afbfda05f60a20b59e2954aed
Gerrit-Change-Number: 31290
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h(a)gmx.de>
Gerrit-MessageType: newchange
Michael Bacarella has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31279
Change subject: ec/lenovo/h8/Kconfig: increase ps2 timeout from 3000 to 5000ms
......................................................................
ec/lenovo/h8/Kconfig: increase ps2 timeout from 3000 to 5000ms
On my Thinkpad T420 the default 3000ms SeaBIOS timeout is too short,
it takes nearly 5000ms for my keyboard to become ready.
Timing out before it's ready leads to pretty bad behavior: I cannot use
my keyboard at all to control SeaBIOS, nor the subsequent GRUB instance.
(Linux is fine though, probably because it does its own keyboard init)
Signed-off-by: Michael Bacarella <michael.bacarella(a)gmail.com>
Change-Id: Id1681bf3921c8b5dc124d4c4e9072f146f84f3a2
---
M src/ec/lenovo/h8/Kconfig
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/79/31279/1
diff --git a/src/ec/lenovo/h8/Kconfig b/src/ec/lenovo/h8/Kconfig
index f9b0b14..9df60de 100644
--- a/src/ec/lenovo/h8/Kconfig
+++ b/src/ec/lenovo/h8/Kconfig
@@ -7,7 +7,7 @@
config SEABIOS_PS2_TIMEOUT
int
depends on PAYLOAD_SEABIOS
- default 3000
+ default 5000
config H8_BEEP_ON_DEATH
bool "Beep on fatal error"
--
To view, visit https://review.coreboot.org/c/coreboot/+/31279
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Id1681bf3921c8b5dc124d4c4e9072f146f84f3a2
Gerrit-Change-Number: 31279
Gerrit-PatchSet: 1
Gerrit-Owner: Michael Bacarella <michael.bacarella(a)gmail.com>
Gerrit-MessageType: newchange
Martin Kepplinger has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31266
Change subject: Documentation: remove the upcoming events chapter from the conferences page
......................................................................
Documentation: remove the upcoming events chapter from the conferences page
I think our docs inside of the codebase might not be the ideal place
to announce future events.
First, they might be scheduled so shortly before the conference that the
change, if at all done, would barely make it to the repo and the web. Also,
_if_ really maintained, it would churn the docs unnessesarily. But, I doubt
that anyone of us would want to maintain this here at all. Lastly, I think
that nobody out there would _look for_ upcoming events in coreboot's
documentation. We have bigger problems in the Documentation directory than
this :)
Change-Id: I918e17a427405a05722c6e0d61dc422f94cac809
Signed-off-by: Martin Kepplinger <martink(a)posteo.de>
---
M Documentation/community/conferences.md
1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/31266/1
diff --git a/Documentation/community/conferences.md b/Documentation/community/conferences.md
index 61a945a..e282aba 100644
--- a/Documentation/community/conferences.md
+++ b/Documentation/community/conferences.md
@@ -10,10 +10,6 @@
Depending on the nature of the conference, coreboot developers might bring
their development kit with them and conduct development sessions.
-## Upcoming events
-
-TODO: add them
-
## Talks
[Open Source Firmware at Facebook](https://fosdem.org/2019/schedule/event/open_source_firmware_at_fa… by [David Hendricks](https://github.com/dhendrix) and [Andrea Barberio](https://github.com/insomniacslk) at [FOSDEM 2019](https://fosdem.org/2019/) ([video](https://video.fosdem.org/2019/K.4.401/open_source_firmware_at_facebo…) ([slides](https://insomniac.slackware.it/static/2019_fosdem_linuxboot_at_facebook.pdf )) (2019-02-03)
--
To view, visit https://review.coreboot.org/c/coreboot/+/31266
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I918e17a427405a05722c6e0d61dc422f94cac809
Gerrit-Change-Number: 31266
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Kepplinger <martink(a)posteo.de>
Gerrit-MessageType: newchange