Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48238 )
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
mb/amd/majolica: add skeleton of Cezanne reference board
This is an adapted copy of mainboard/example/min86 that is currently only used for Jenkins to test the SoC code in soc/amd/cezanne and isn't expected to reach boot block at the moment. It will be extended in future follow-up commits.
Change-Id: I6806955952fbfa3227294cfc44fdf9156140e933 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- A src/mainboard/amd/majolica/Kconfig A src/mainboard/amd/majolica/Kconfig.name A src/mainboard/amd/majolica/board_info.txt A src/mainboard/amd/majolica/devicetree.cb 4 files changed, 23 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/48238/1
diff --git a/src/mainboard/amd/majolica/Kconfig b/src/mainboard/amd/majolica/Kconfig new file mode 100644 index 0000000..b7f8763 --- /dev/null +++ b/src/mainboard/amd/majolica/Kconfig @@ -0,0 +1,14 @@ +if BOARD_AMD_MAJOLICA + +config BOARD_SPECIFIC_OPTIONS + def_bool y + select SOC_AMD_CEZANNE + select MISSING_BOARD_RESET + +config MAINBOARD_DIR + default "amd/majolica" + +config MAINBOARD_PART_NUMBER + default "MAJOLICA" + +endif # BOARD_AMD_MAJOLICA diff --git a/src/mainboard/amd/majolica/Kconfig.name b/src/mainboard/amd/majolica/Kconfig.name new file mode 100644 index 0000000..8c305cf7 --- /dev/null +++ b/src/mainboard/amd/majolica/Kconfig.name @@ -0,0 +1,2 @@ +config BOARD_AMD_MAJOLICA + bool "Majolica" diff --git a/src/mainboard/amd/majolica/board_info.txt b/src/mainboard/amd/majolica/board_info.txt new file mode 100644 index 0000000..b351b8e --- /dev/null +++ b/src/mainboard/amd/majolica/board_info.txt @@ -0,0 +1 @@ +Category: eval diff --git a/src/mainboard/amd/majolica/devicetree.cb b/src/mainboard/amd/majolica/devicetree.cb new file mode 100644 index 0000000..62d9edf --- /dev/null +++ b/src/mainboard/amd/majolica/devicetree.cb @@ -0,0 +1,6 @@ +chip soc/amd/cezanne + + device domain 0 on + end + +end
Marshall Dawson has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48238 )
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
Patch Set 3:
Add SPDX-License-Identifier at the tops of files?
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/48238
to look at the new patch set (#4).
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
mb/amd/majolica: add skeleton of Cezanne reference board
This is an adapted copy of mainboard/example/min86 that is currently only used for Jenkins to test the SoC code in soc/amd/cezanne and isn't expected to reach boot block at the moment. It will be extended in future follow-up commits.
Change-Id: I6806955952fbfa3227294cfc44fdf9156140e933 Signed-off-by: Felix Held felix-coreboot@felixheld.de --- A src/mainboard/amd/majolica/Kconfig A src/mainboard/amd/majolica/Kconfig.name A src/mainboard/amd/majolica/board_info.txt A src/mainboard/amd/majolica/devicetree.cb 4 files changed, 27 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/48238/4
Felix Held has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48238 )
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
Patch Set 4:
Patch Set 3:
Add SPDX-License-Identifier at the tops of files?
done. I skipped Kconfig.name intentionally, since there's nothing really copyrightable in it and Mandolin also doesn't have that
Marshall Dawson has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48238 )
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
Patch Set 4: Code-Review+2
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/48238 )
Change subject: mb/amd/majolica: add skeleton of Cezanne reference board ......................................................................
mb/amd/majolica: add skeleton of Cezanne reference board
This is an adapted copy of mainboard/example/min86 that is currently only used for Jenkins to test the SoC code in soc/amd/cezanne and isn't expected to reach boot block at the moment. It will be extended in future follow-up commits.
Change-Id: I6806955952fbfa3227294cfc44fdf9156140e933 Signed-off-by: Felix Held felix-coreboot@felixheld.de Reviewed-on: https://review.coreboot.org/c/coreboot/+/48238 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Marshall Dawson marshalldawson3rd@gmail.com --- A src/mainboard/amd/majolica/Kconfig A src/mainboard/amd/majolica/Kconfig.name A src/mainboard/amd/majolica/board_info.txt A src/mainboard/amd/majolica/devicetree.cb 4 files changed, 27 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Marshall Dawson: Looks good to me, approved
diff --git a/src/mainboard/amd/majolica/Kconfig b/src/mainboard/amd/majolica/Kconfig new file mode 100644 index 0000000..eeaf3b0 --- /dev/null +++ b/src/mainboard/amd/majolica/Kconfig @@ -0,0 +1,16 @@ +# SPDX-License-Identifier: GPL-2.0-only + +if BOARD_AMD_MAJOLICA + +config BOARD_SPECIFIC_OPTIONS + def_bool y + select SOC_AMD_CEZANNE + select MISSING_BOARD_RESET + +config MAINBOARD_DIR + default "amd/majolica" + +config MAINBOARD_PART_NUMBER + default "MAJOLICA" + +endif # BOARD_AMD_MAJOLICA diff --git a/src/mainboard/amd/majolica/Kconfig.name b/src/mainboard/amd/majolica/Kconfig.name new file mode 100644 index 0000000..8c305cf7 --- /dev/null +++ b/src/mainboard/amd/majolica/Kconfig.name @@ -0,0 +1,2 @@ +config BOARD_AMD_MAJOLICA + bool "Majolica" diff --git a/src/mainboard/amd/majolica/board_info.txt b/src/mainboard/amd/majolica/board_info.txt new file mode 100644 index 0000000..b351b8e --- /dev/null +++ b/src/mainboard/amd/majolica/board_info.txt @@ -0,0 +1 @@ +Category: eval diff --git a/src/mainboard/amd/majolica/devicetree.cb b/src/mainboard/amd/majolica/devicetree.cb new file mode 100644 index 0000000..a141552 --- /dev/null +++ b/src/mainboard/amd/majolica/devicetree.cb @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0-only + +chip soc/amd/cezanne + + device domain 0 on + end + +end