blob: 2509031f3e5f5854fa8c657519b94e109dfe61a9 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <stdint.h>
#include <amdblocks/acpimmio.h>
#include <amdblocks/gpio.h>
#include <amdblocks/gpio_defs.h>
#include <device/pci_def.h>
#include <device/pci_ops.h>
#include <gpio.h>
#include <northbridge/amd/agesa/state_machine.h>
#include "gpio_ftns.h"
static void early_lpc_init(void);
void board_BeforeAgesa(struct sysinfo *cb)
{
u32 val;
early_lpc_init();
/* Disable SVI2 controller to wait for command completion */
val = pci_read_config32(PCI_DEV(0, 0x18, 5), 0x12C);
if (!(val & (1 << 30))) {
val |= (1 << 30);
pci_write_config32(PCI_DEV(0, 0x18, 5), 0x12C, val);
}
/* Release GPIO32/33 for other uses. */
pm_write8(0xea, 1);
}
const struct soc_amd_gpio gpio_common[] = {
PAD_GPI(GPIO_49, PULL_NONE),
PAD_GPI(GPIO_50, PULL_NONE),
PAD_GPI(GPIO_71, PULL_NONE),
PAD_GPO(GPIO_57, LOW),
PAD_GPO(GPIO_58, LOW),
PAD_GPO(GPIO_59, LOW),
PAD_GPO(GPIO_51, HIGH),
PAD_GPO(GPIO_55, HIGH),
PAD_GPO(GPIO_64, HIGH),
PAD_GPO(GPIO_68, HIGH),
};
const struct soc_amd_gpio gpio_apu2[] = {
PAD_GPI(GPIO_32, PULL_NONE),
};
const struct soc_amd_gpio gpio_apu34[] = {
PAD_GPI(GPIO_32, PULL_NONE),
PAD_GPO(GPIO_33, LOW),
};
const struct soc_amd_gpio gpio_apu5[] = {
PAD_GPI(GPIO_22, PULL_NONE),
PAD_GPO(GPIO_32, HIGH),
PAD_GPO(GPIO_33, HIGH),
};
static void early_lpc_init(void)
{
gpio_configure_pads(gpio_common, ARRAY_SIZE(gpio_common));
if (CONFIG(BOARD_PCENGINES_APU2))
gpio_configure_pads(gpio_apu2, ARRAY_SIZE(gpio_apu2));
if (CONFIG(BOARD_PCENGINES_APU3) || CONFIG(BOARD_PCENGINES_APU4))
gpio_configure_pads(gpio_apu34, ARRAY_SIZE(gpio_apu34));
if (CONFIG(BOARD_PCENGINES_APU5))
gpio_configure_pads(gpio_apu5, ARRAY_SIZE(gpio_apu5));
}