soc/amd/cezanne: add skeleton for new SoC
commitdc2d3566ffa9bdf6edbb000c1d66c6bcd1939e9d
authorFelix Held <felix-coreboot@felixheld.de>
Wed, 2 Dec 2020 13:38:53 +0000 (2 14:38 +0100)
committerPatrick Georgi <pgeorgi@google.com>
Sat, 5 Dec 2020 09:43:00 +0000 (5 09:43 +0000)
tree187a50d6d09f901c8afd08c934bb3e4dfec42625
parentb7801d58d7943d723a1ee7ddb4e3c356d2099d07
soc/amd/cezanne: add skeleton for new SoC

This is based on the minimal example code in soc/example/min86 and was
adapted to use the AMD non-CAR boot block and the common AMD PCI MMCONF
support.

In its current state this won't even reach the boot block, but will pass
the build bot. The missing parts for that will be added in future
patches. This is an attempt to not go the usual route to create a copy
of a previous SoC generation and the make changes to the code to work
for the new SoC, but to start from a nearly empty directory and then add
the actual code stage by stage and component by component.

Change-Id: I70aeb9ae010e943abfa667a0ea95c6fa9f15b7f5
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48237
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
src/soc/amd/cezanne/Kconfig [new file with mode: 0644]
src/soc/amd/cezanne/Makefile.inc [new file with mode: 0644]
src/soc/amd/cezanne/bootblock.c [new file with mode: 0644]
src/soc/amd/cezanne/chip.c [new file with mode: 0644]
src/soc/amd/cezanne/include/soc/psp_transfer.h [new file with mode: 0644]
src/soc/amd/cezanne/romstage.c [new file with mode: 0644]
src/soc/amd/cezanne/timer.c [new file with mode: 0644]