diff options
author | Subrata Banik <subratabanik@google.com> | 2024-09-24 09:47:03 +0000 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2024-09-25 02:59:54 +0000 |
commit | e047687a56f556493adcef9b9a8d02ddd80cf9db (patch) | |
tree | 7766e921b71a40114f764a3d12d00b8bdc3ccecd /src/mainboard/google/fatcat/mainboard.c | |
parent | 35cb5d7e52c1d24a6af77ee74441384a7966dbed (diff) |
mainboard/google/fatcat: Update SoC to Panther Lake
This commit updates the fatcat mainboard to use the Panther Lake SoC
instead of Meteor Lake.
The changes include:
- Selecting the `SOC_INTEL_PANTHERLAKE_U_H` config option.
- Updating the `mainboard_update_soc_chip_config()` function to use the
`soc_intel_pantherlake_config` struct.
- Updating the devicetree to use the `soc/intel/pantherlake` chip.
- Updating variant header files to reflect the SoC change.
This update enables support for the Panther Lake SoC and its
features on the fatcat mainboard.
BUG=b:347669091
TEST=Able to build google/fatcat.
Change-Id: Ie0c6257dfb9dd1f627472ad220614f9b24c911ef
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84537
Reviewed-by: Pranava Y N <pranavayn@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/fatcat/mainboard.c')
-rw-r--r-- | src/mainboard/google/fatcat/mainboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/fatcat/mainboard.c b/src/mainboard/google/fatcat/mainboard.c index 107ee8d9b9..55b9e4c791 100644 --- a/src/mainboard/google/fatcat/mainboard.c +++ b/src/mainboard/google/fatcat/mainboard.c @@ -16,12 +16,12 @@ void __weak fw_config_gpio_padbased_override(struct pad_config *padbased_table) /* default implementation does nothing */ } -void mainboard_update_soc_chip_config(struct soc_intel_meteorlake_config *config) +void mainboard_update_soc_chip_config(struct soc_intel_pantherlake_config *config) { variant_update_soc_chip_config(config); } -__weak void variant_update_soc_chip_config(struct soc_intel_meteorlake_config *config) +__weak void variant_update_soc_chip_config(struct soc_intel_pantherlake_config *config) { /* default implementation does nothing */ } |