soc/amd/stoneyridge: Add additional early LPC and SPI init

Additional LPC and SPI setup needed to move AGESA out of the bootblock.
Setup the prefetch, sio decode, and a bugfix for SPI.

BUG=b:70558952
TEST=Boots with AGESA moved out of bootblock.

Change-Id: I2c0d8632b25c036ff977c21477feb4778575189c
Signed-off-by: Marc Jones <marc.jones@scarletltd.com>
Signed-off-by: Marc Jones <marcj303@gmail.com>
Reviewed-on: https://review.coreboot.org/25755
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c
index 7465b64..a767e0c 100644
--- a/src/soc/amd/stoneyridge/southbridge.c
+++ b/src/soc/amd/stoneyridge/southbridge.c
@@ -543,12 +543,33 @@
 	pci_write_config16(SOC_LPC_DEV, ROM_ADDRESS_RANGE2_END, 0xffff);
 }
 
+static void sb_lpc_early_setup(void)
+{
+	uint32_t dword;
+
+	/* Enable SPI prefetch */
+	dword = pci_read_config32(SOC_LPC_DEV, LPC_ROM_DMA_EC_HOST_CONTROL);
+	dword |= SPI_FROM_HOST_PREFETCH_EN | SPI_FROM_USB_PREFETCH_EN;
+	pci_write_config32(SOC_LPC_DEV, LPC_ROM_DMA_EC_HOST_CONTROL, dword);
+
+	if (IS_ENABLED(CONFIG_STONEYRIDGE_LEGACY_FREE)) {
+		/* Decode SIOs at 2E/2F and 4E/4F */
+		dword = pci_read_config32(SOC_LPC_DEV,
+						LPC_IO_OR_MEM_DECODE_ENABLE);
+		dword |= DECODE_ALTERNATE_SIO_ENABLE | DECODE_SIO_ENABLE;
+		pci_write_config32(SOC_LPC_DEV,
+					LPC_IO_OR_MEM_DECODE_ENABLE, dword);
+	}
+}
+
 void bootblock_fch_early_init(void)
 {
 	sb_enable_rom();
 	sb_lpc_port80();
 	sb_lpc_decode();
+	sb_lpc_early_setup();
 	sb_spibase();
+	sb_disable_4dw_burst(); /* Must be disabled on CZ(ST) */
 	sb_acpi_mmio_decode();
 	enable_aoac_devices();
 }