Philipp Deppenwiese has posted comments on this change. ( https://review.coreboot.org/25386 )
Change subject: arch/x86/smbios: Add support for table 38
......................................................................
Patch Set 10: Code-Review+2
--
To view, visit https://review.coreboot.org/25386
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I66b4c4658da9d44941430d8040384d022d76f51e
Gerrit-Change-Number: 25386
Gerrit-PatchSet: 10
Gerrit-Owner: Patrick Rudolph <patrick.rudolph(a)9elements.com>
Gerrit-Reviewer: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 19 Jul 2018 13:50:26 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Xiang Wang has uploaded a new patch set (#2). ( https://review.coreboot.org/27545 )
Change subject: riscv: update src/arch/riscv/bootblock.S
......................................................................
riscv: update src/arch/riscv/bootblock.S
Save the FDT pointer to memory. Make mscratch vacate for exception
context switching.
Change-Id: I24554528969e36c9e98c0ebd733e002e215a52e5
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/bootblock.S
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/27545/2
--
To view, visit https://review.coreboot.org/27545
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I24554528969e36c9e98c0ebd733e002e215a52e5
Gerrit-Change-Number: 27545
Gerrit-PatchSet: 2
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Xiang Wang has uploaded this change for review. ( https://review.coreboot.org/27545
Change subject: riscv: update src/arch/riscv/bootblock.S
......................................................................
riscv: update src/arch/riscv/bootblock.S
Save the FDT pointer to memory. Make mscratch vacate for exception context switching.
Change-Id: I24554528969e36c9e98c0ebd733e002e215a52e5
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/bootblock.S
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/27545/1
diff --git a/src/arch/riscv/bootblock.S b/src/arch/riscv/bootblock.S
index 81a4455..f92ed4b 100644
--- a/src/arch/riscv/bootblock.S
+++ b/src/arch/riscv/bootblock.S
@@ -37,6 +37,12 @@
# initialize cache as ram
call cache_as_ram
+ # Save the FDT pointer to memory.
+ # Make mscratch vacate for exception context switching.
+ csrrw a1, mscratch, zero
+ la t0, rom_fdt
+ sd a1, 0(t0)
+
# initialize stack point for each hart
# and the stack must be page-aligned.
# 0xDEADBEEF used to check stack overflow
--
To view, visit https://review.coreboot.org/27545
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I24554528969e36c9e98c0ebd733e002e215a52e5
Gerrit-Change-Number: 27545
Gerrit-PatchSet: 1
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Xiang Wang has uploaded a new patch set (#2). ( https://review.coreboot.org/27544 )
Change subject: riscv: delete src/arch/riscv/prologue.inc
......................................................................
riscv: delete src/arch/riscv/prologue.inc
This is x86 code. It's useless under RISC-V.
Change-Id: If6c3bfdc4090e45d171e68a28d27c38dabe91687
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
D src/arch/riscv/prologue.inc
1 file changed, 0 insertions(+), 17 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/27544/2
--
To view, visit https://review.coreboot.org/27544
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: If6c3bfdc4090e45d171e68a28d27c38dabe91687
Gerrit-Change-Number: 27544
Gerrit-PatchSet: 2
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Hello Shawn Chang, Jonathan Neuschäfer, build bot (Jenkins), Martin Roth, Philipp Hug,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27543
to look at the new patch set (#5).
Change subject: riscv: fix issus(202e7d4f3c)
......................................................................
riscv: fix issus(202e7d4f3c)
When I tried to compile the RISC-V code, I found some errors:
`PRIu64` is undefined
src/arch/riscv/timestamp.c does not exist
Currently RISC-V does not have the implementation and use of timestamp,
so I temporarily deleted the code related to timestamp in the Makefile.
And defined PRIu64.
Change-Id: I7f1a0793113bce7c1411e39f102cf20dbadda5d6
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/Makefile.inc
M src/arch/riscv/include/stdint.h
2 files changed, 7 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/27543/5
--
To view, visit https://review.coreboot.org/27543
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I7f1a0793113bce7c1411e39f102cf20dbadda5d6
Gerrit-Change-Number: 27543
Gerrit-PatchSet: 5
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Shawn Chang <citypw(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Xiang Wang has uploaded this change for review. ( https://review.coreboot.org/27544
Change subject: delete src/arch/riscv/prologue.inc
......................................................................
delete src/arch/riscv/prologue.inc
This is x86 code.It's useless under RISC-V.
Change-Id: If6c3bfdc4090e45d171e68a28d27c38dabe91687
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
D src/arch/riscv/prologue.inc
1 file changed, 0 insertions(+), 17 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/27544/1
diff --git a/src/arch/riscv/prologue.inc b/src/arch/riscv/prologue.inc
deleted file mode 100644
index a349cf9..0000000
--- a/src/arch/riscv/prologue.inc
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2002 Eric Biederman
- *
- * 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.
- */
-
-.section ".rom.data", "a", @progbits
-.section ".rom.text", "ax", @progbits
--
To view, visit https://review.coreboot.org/27544
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: If6c3bfdc4090e45d171e68a28d27c38dabe91687
Gerrit-Change-Number: 27544
Gerrit-PatchSet: 1
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Hello Shawn Chang, Jonathan Neuschäfer, build bot (Jenkins), Martin Roth, Philipp Hug,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/27543
to look at the new patch set (#4).
Change subject: This fix issus(202e7d4f3c)
......................................................................
This fix issus(202e7d4f3c)
When I tried to compile the RISC-V code, I found some errors:
`PRIu64` is undefined
src/arch/riscv/timestamp.c does not exist
Currently RISC-V does not have the implementation and use of timestamp,
so I temporarily deleted the code related to timestamp in the Makefile.
And defined PRIu64.
Change-Id: I7f1a0793113bce7c1411e39f102cf20dbadda5d6
Signed-off-by: Xiang Wang <wxjstz(a)126.com>
---
M src/arch/riscv/Makefile.inc
M src/arch/riscv/include/stdint.h
2 files changed, 7 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/27543/4
--
To view, visit https://review.coreboot.org/27543
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I7f1a0793113bce7c1411e39f102cf20dbadda5d6
Gerrit-Change-Number: 27543
Gerrit-PatchSet: 4
Gerrit-Owner: Xiang Wang <wxjstz(a)126.com>
Gerrit-Reviewer: Jonathan Neuschäfer <j.neuschaefer(a)gmx.net>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Philipp Hug <philipp(a)hug.cx>
Gerrit-Reviewer: Shawn Chang <citypw(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>