ffc87e9cbe
Cezanne doesn't have ACPI support yet, but in this case the function always returns 0, so it can already be used. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I1f5e1f31bf1e52988fcef90daf7b93169e21cbb1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50126 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
31 lines
550 B
C
31 lines
550 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpi.h>
|
|
#include <device/device.h>
|
|
#include <fsp/api.h>
|
|
#include <soc/southbridge.h>
|
|
#include <types.h>
|
|
#include "chip.h"
|
|
|
|
static void enable_dev(struct device *dev)
|
|
{
|
|
}
|
|
|
|
static void soc_init(void *chip_info)
|
|
{
|
|
fsp_silicon_init(acpi_is_wakeup_s3());
|
|
|
|
fch_init(chip_info);
|
|
}
|
|
|
|
static void soc_final(void *chip_info)
|
|
{
|
|
fch_final(chip_info);
|
|
}
|
|
|
|
struct chip_operations soc_amd_cezanne_ops = {
|
|
CHIP_NAME("AMD Cezanne SoC")
|
|
.enable_dev = enable_dev,
|
|
.init = soc_init,
|
|
.final = soc_final
|
|
};
|