coreboot: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX)
This patch is a raw application of find src/ -type f | xargs sed -i -e 's/IS_ENABLED\s*(CONFIG_/CONFIG(/g' Change-Id: I6262d6d5c23cabe23c242b4f38d446b74fe16b88 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31774 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
committed by
Patrick Georgi
parent
b3a8cc54db
commit
cd49cce7b7
@@ -58,7 +58,7 @@ Device(SDCN) {
|
||||
Name(_ADR, 0x00140007)
|
||||
} /* end SDCN */
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
|
||||
/* 0:14.4 - PCI slot 1, 2, 3 */
|
||||
Device(PIBR) {
|
||||
@@ -146,7 +146,7 @@ Method(_CRS, 0) {
|
||||
Return(CRES) /* note to change the Name buffer */
|
||||
} /* end of Method(_SB.PCI0._CRS) */
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_IMC_FWM)
|
||||
#if CONFIG(HUDSON_IMC_FWM)
|
||||
#include "acpi/AmdImc.asl" /* Hudson IMC function */
|
||||
#endif
|
||||
|
||||
@@ -175,8 +175,8 @@ Method(_INI, 0) {
|
||||
/* Determine the OS we're running on */
|
||||
OSFL()
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_IMC_FWM)
|
||||
#if IS_ENABLED(CONFIG_ACPI_ENABLE_THERMAL_ZONE)
|
||||
#if CONFIG(HUDSON_IMC_FWM)
|
||||
#if CONFIG(ACPI_ENABLE_THERMAL_ZONE)
|
||||
ITZE() /* enable IMC Fan Control*/
|
||||
#endif
|
||||
#endif
|
||||
|
@@ -50,7 +50,7 @@ Device(UOH6) {
|
||||
Name(_PRW, Package() {0x0B, 3})
|
||||
} /* end UOH5 */
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
/* 0:14.5 - OHCI */
|
||||
Device(UEH1) {
|
||||
Name(_ADR, 0x00140005)
|
||||
@@ -64,7 +64,7 @@ Device(XHC0) {
|
||||
Name(_PRW, Package() {0x0B, 4})
|
||||
} /* end XHC0 */
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
/* 0:10.1 - XHCI 1*/
|
||||
Device(XHC1) {
|
||||
Name(_ADR, 0x00100001)
|
||||
|
@@ -21,9 +21,9 @@
|
||||
* into the FCH PCI_INTR 0xC00/0xC01 interrupt
|
||||
* routing table
|
||||
*/
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#define FCH_INT_TABLE_SIZE 0x54
|
||||
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#elif CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#define FCH_INT_TABLE_SIZE 0x42
|
||||
#endif
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
#define PIRQ_FC 0x14 /* FC */
|
||||
#define PIRQ_GEC 0x15 /* GEC */
|
||||
#define PIRQ_PMON 0x16 /* Performance Monitor */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#define PIRQ_SD 0x17 /* SD */
|
||||
#endif
|
||||
#define PIRQ_IMC0 0x20 /* IMC INT0 */
|
||||
@@ -69,7 +69,7 @@
|
||||
#define PIRQ_OHCI4 0x36 /* USB OHCI 14h.5 */
|
||||
#define PIRQ_IDE 0x40 /* IDE 14h.1 */
|
||||
#define PIRQ_SATA 0x41 /* SATA 11h.0 */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#define PIRQ_SD 0x42 /* SD 14h.7 */
|
||||
#define PIRQ_GPP0 0x50 /* GPP INT 0 */
|
||||
#define PIRQ_GPP1 0x51 /* GPP INT 1 */
|
||||
|
@@ -16,7 +16,7 @@
|
||||
#ifndef AMD_PCI_INT_TYPES_H
|
||||
#define AMD_PCI_INT_TYPES_H
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
const char *intr_types[] = {
|
||||
[0x00] = "INTA#\t", "INTB#\t", "INTC#\t", "INTD#\t", "INTE#\t", "INTF#\t", "INTG#\t", "INTH#\t",
|
||||
[0x08] = "Misc\t", "Misc0\t", "Misc1\t", "Misc2\t", "Ser IRQ INTA", "Ser IRQ INTB", "Ser IRQ INTC", "Ser IRQ INTD",
|
||||
@@ -26,7 +26,7 @@ const char *intr_types[] = {
|
||||
[0x40] = "IDE\t", "SATA\t",
|
||||
[0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t"
|
||||
};
|
||||
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#elif CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
const char *intr_types[] = {
|
||||
[0x00] = "INTA#\t", "INTB#\t", "INTC#\t", "INTD#\t", "INTE#\t", "INTF#\t", "INTG#\t", "INTH#\t",
|
||||
[0x08] = "Misc\t", "Misc0\t", "Misc1\t", "Misc2\t", "Ser IRQ INTA", "Ser IRQ INTB", "Ser IRQ INTC", "Ser IRQ INTD",
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include "hudson.h"
|
||||
#include "smi.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_LEGACY_FREE)
|
||||
#if CONFIG(HUDSON_LEGACY_FREE)
|
||||
#define FADT_BOOT_ARCH ACPI_FADT_LEGACY_FREE
|
||||
#else
|
||||
#define FADT_BOOT_ARCH (ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042)
|
||||
@@ -71,7 +71,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
|
||||
fadt->preferred_pm_profile = FADT_PM_PROFILE;
|
||||
fadt->sci_int = 9; /* HUDSON - IRQ 09 - ACPI SCI */
|
||||
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
fadt->smi_cmd = ACPI_SMI_CTL_PORT;
|
||||
fadt->acpi_enable = ACPI_SMI_CMD_ENABLE;
|
||||
fadt->acpi_disable = ACPI_SMI_CMD_DISABLE;
|
||||
|
@@ -154,7 +154,7 @@ static void hudson_init_acpi_ports(void)
|
||||
/* CpuControl is in \_PR.CP00, 6 bytes */
|
||||
pm_write16(0x66, ACPI_CPU_CONTROL);
|
||||
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
pm_write16(0x6a, ACPI_SMI_CTL_PORT);
|
||||
hudson_enable_acpi_cmd_smi();
|
||||
} else {
|
||||
@@ -175,8 +175,8 @@ static void hudson_init(void *chip_info)
|
||||
static void hudson_final(void *chip_info)
|
||||
{
|
||||
/* AMD AGESA does not enable thermal zone, so we enable it here. */
|
||||
if (IS_ENABLED(CONFIG_HUDSON_IMC_FWM) &&
|
||||
!IS_ENABLED(CONFIG_ACPI_ENABLE_THERMAL_ZONE))
|
||||
if (CONFIG(HUDSON_IMC_FWM) &&
|
||||
!CONFIG(ACPI_ENABLE_THERMAL_ZONE))
|
||||
enable_imc_thermal_zone();
|
||||
}
|
||||
|
||||
|
@@ -35,7 +35,7 @@ void imc_reg_init(void)
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x03, 0xff);
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x04, 0xff);
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x10, 0x06);
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x11, 0x06);
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x12, 0xf7);
|
||||
@@ -43,7 +43,7 @@ void imc_reg_init(void)
|
||||
write8(VACPI_MMIO_VBASE + PMIO2_BASE + 0x14, 0xff);
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
UINT8 PciData;
|
||||
PCI_ADDR PciAddress;
|
||||
AMD_CONFIG_PARAMS StdHeader;
|
||||
|
@@ -343,7 +343,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = hudson_lpc_read_resources,
|
||||
.set_resources = hudson_lpc_set_resources,
|
||||
.enable_resources = hudson_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_init,
|
||||
|
@@ -68,7 +68,7 @@
|
||||
#define SMBUS_DEVFN PCI_DEVFN(SMBUS_DEV,SMBUS_FUNC)
|
||||
|
||||
/* IDE */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#define IDE_DEV 0x14
|
||||
#define IDE_FUNC 1
|
||||
# define IDE_DEVID 0x780C
|
||||
@@ -101,7 +101,7 @@
|
||||
#define SD_DEVFN PCI_DEVFN(SD_DEV,SD_FUNC)
|
||||
|
||||
/* PCIe Ports */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_HUDSON)
|
||||
#define SB_PCIE_DEV 0x15
|
||||
#define SB_PCIE_PORT1_FUNC 0
|
||||
#define SB_PCIE_PORT2_FUNC 1
|
||||
|
@@ -104,7 +104,7 @@ static void s3_resume_init_data(FCH_DATA_BLOCK *FchParams)
|
||||
FchParams->Usb.Ohci4Enable = FchInterfaceDefault.Ohci4Enable;
|
||||
FchParams->HwAcpi.PwrFailShadow = FchInterfaceDefault.FchPowerFail;
|
||||
|
||||
FchParams->Usb.Xhci0Enable = IS_ENABLED(CONFIG_HUDSON_XHCI_ENABLE);
|
||||
FchParams->Usb.Xhci0Enable = CONFIG(HUDSON_XHCI_ENABLE);
|
||||
FchParams->Usb.Xhci1Enable = FALSE;
|
||||
|
||||
#if DUMP_FCH_SETTING
|
||||
|
@@ -23,7 +23,7 @@
|
||||
|
||||
static void sata_init(struct device *dev)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
/**************************************
|
||||
* Configure the SATA port multiplier *
|
||||
**************************************/
|
||||
|
@@ -36,7 +36,7 @@
|
||||
#define SPI_REG_CNTRL11 0xd
|
||||
#define CNTRL11_FIFOPTR_MASK 0x07
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#define AMD_SB_SPI_TX_LEN 64
|
||||
#else
|
||||
#define AMD_SB_SPI_TX_LEN 8
|
||||
@@ -110,7 +110,7 @@ static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
|
||||
|
||||
readoffby1 = bytesout ? 0 : 1;
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_AGESA_YANGTZE)
|
||||
spi_write(0x1E, 5);
|
||||
spi_write(0x1F, bytesout); /* SpiExtRegIndx [5] - TxByteCount */
|
||||
spi_write(0x1E, 6);
|
||||
@@ -144,7 +144,7 @@ static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
|
||||
|
||||
int chipset_volatile_group_begin(const struct spi_flash *flash)
|
||||
{
|
||||
if (!IS_ENABLED (CONFIG_HUDSON_IMC_FWM))
|
||||
if (!CONFIG(HUDSON_IMC_FWM))
|
||||
return 0;
|
||||
|
||||
ImcSleep(NULL);
|
||||
@@ -153,7 +153,7 @@ int chipset_volatile_group_begin(const struct spi_flash *flash)
|
||||
|
||||
int chipset_volatile_group_end(const struct spi_flash *flash)
|
||||
{
|
||||
if (!IS_ENABLED (CONFIG_HUDSON_IMC_FWM))
|
||||
if (!CONFIG(HUDSON_IMC_FWM))
|
||||
return 0;
|
||||
|
||||
ImcWakeup(NULL);
|
||||
|
@@ -99,7 +99,7 @@ static int lsmbus_block_write(struct device *dev, uint8_t cmd, u8 bytes,
|
||||
}
|
||||
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
unsigned pm_base;
|
||||
#endif
|
||||
|
||||
@@ -171,7 +171,7 @@ static void acpi_init(struct device *dev)
|
||||
(on * 12) + (on >> 1), (on & 1) * 5);
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
pm_base = pci_read_config16(dev, 0x58) & 0xff00;
|
||||
printk(BIOS_DEBUG, "pm_base: 0x%04x\n", pm_base);
|
||||
#endif
|
||||
|
@@ -14,7 +14,7 @@
|
||||
*/
|
||||
|
||||
/* S1 support: bit 0, S2 Support: bit 1, etc. S0 & S5 assumed */
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
||||
#if CONFIG(HAVE_ACPI_RESUME)
|
||||
Name (SSFG, 0x05)
|
||||
#else
|
||||
Name (SSFG, 0x01)
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include <pc80/isa-dma.h>
|
||||
#include <cpu/x86/lapic.h>
|
||||
#include <arch/ioapic.h>
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <cpu/amd/powernow.h>
|
||||
@@ -131,7 +131,7 @@ static void lpci_set_subsystem(struct device *dev, unsigned int vendor,
|
||||
((device & 0xffff) << 16) | (vendor & 0xffff));
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
|
||||
extern u16 pm_base;
|
||||
|
||||
@@ -142,7 +142,7 @@ unsigned long acpi_fill_mcfg(unsigned long current)
|
||||
}
|
||||
|
||||
static void southbridge_acpi_fill_ssdt_generator(struct device *device) {
|
||||
#if IS_ENABLED(CONFIG_SET_FIDVID)
|
||||
#if CONFIG(SET_FIDVID)
|
||||
amd_generate_powernow(pm_base + 0x10, 6, 1);
|
||||
acpigen_write_mainboard_resources("\\_SB.PCI0.MBRS", "_CRS");
|
||||
#endif
|
||||
@@ -160,7 +160,7 @@ static struct device_operations lpc_ops = {
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
.init = lpc_init,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
.acpi_fill_ssdt_generator = southbridge_acpi_fill_ssdt_generator,
|
||||
#endif
|
||||
|
@@ -49,7 +49,7 @@ typedef union _PCI_ADDR {
|
||||
#endif
|
||||
#define FIXUP_PTR(ptr) ptr
|
||||
|
||||
#if IS_ENABLED(CONFIG_SB800_IMC_FWM)
|
||||
#if CONFIG(SB800_IMC_FWM)
|
||||
#define IMC_ENABLE_OVER_WRITE 0x01
|
||||
#endif
|
||||
|
||||
|
@@ -100,7 +100,7 @@ static void enable_clocks(void)
|
||||
// change twice.
|
||||
reg32 = *acpi_mmio;
|
||||
reg32 &= ~((1 << 2) | (3 << 0)); // enable, 14 MHz (power up default)
|
||||
#if !IS_ENABLED(CONFIG_SUPERIO_WANTS_14MHZ_CLOCK)
|
||||
#if !CONFIG(SUPERIO_WANTS_14MHZ_CLOCK)
|
||||
reg32 |= 2 << 0; // Device_CLK1_sel = 48 MHz
|
||||
#endif
|
||||
*acpi_mmio = reg32;
|
||||
|
@@ -163,7 +163,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = lpc_read_resources,
|
||||
.set_resources = lpc_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_init,
|
||||
@@ -386,9 +386,9 @@ static void sb800_enable(struct device *dev)
|
||||
|
||||
case PCI_DEVFN(0x14, 3): /* 0:14:3 LPC */
|
||||
/* Initialize the fans */
|
||||
#if IS_ENABLED(CONFIG_SB800_IMC_FAN_CONTROL)
|
||||
#if CONFIG(SB800_IMC_FAN_CONTROL)
|
||||
init_sb800_IMC_fans(dev);
|
||||
#elif IS_ENABLED(CONFIG_SB800_MANUAL_FAN_CONTROL)
|
||||
#elif CONFIG(SB800_MANUAL_FAN_CONTROL)
|
||||
init_sb800_MANUAL_fans(dev);
|
||||
#endif
|
||||
break;
|
||||
|
@@ -135,7 +135,7 @@ static void ImcWakeup(void)
|
||||
|
||||
int chipset_volatile_group_begin(const struct spi_flash *flash)
|
||||
{
|
||||
if (!IS_ENABLED(CONFIG_SB800_IMC_FWM))
|
||||
if (!CONFIG(SB800_IMC_FWM))
|
||||
return 0;
|
||||
|
||||
ImcSleep();
|
||||
@@ -144,7 +144,7 @@ int chipset_volatile_group_begin(const struct spi_flash *flash)
|
||||
|
||||
int chipset_volatile_group_end(const struct spi_flash *flash)
|
||||
{
|
||||
if (!IS_ENABLED(CONFIG_SB800_IMC_FWM))
|
||||
if (!CONFIG(SB800_IMC_FWM))
|
||||
return 0;
|
||||
|
||||
ImcWakeup();
|
||||
|
@@ -113,7 +113,7 @@ static struct device_operations lpc_ops = {
|
||||
.set_resources = lpc_set_resources,
|
||||
.enable_resources = lpc_enable_resources,
|
||||
.init = lpc_init,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.scan_bus = scan_lpc_bus,
|
||||
|
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
/* S1 support: bit 0, S2 Support: bit 1, etc. S0 & S5 assumed */
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
||||
#if CONFIG(HAVE_ACPI_RESUME)
|
||||
Name (SSFG, 0x0D)
|
||||
#else
|
||||
Name (SSFG, 0x09)
|
||||
|
@@ -47,7 +47,7 @@ Device(SBUS) {
|
||||
#include "usb.asl"
|
||||
|
||||
/* 0:14.2 - HD Audio */
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#include "audio.asl"
|
||||
#endif
|
||||
|
||||
@@ -129,7 +129,7 @@ Method(_CRS, 0) {
|
||||
Return(CRES) /* note to change the Name buffer */
|
||||
} /* end of Method(_SB.PCI0._CRS) */
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_IMC_FWM)
|
||||
#if CONFIG(HUDSON_IMC_FWM)
|
||||
/* TODO: It is unstable.
|
||||
* might be fixed by restructuring
|
||||
*/
|
||||
@@ -161,8 +161,8 @@ Method(_INI, 0) {
|
||||
/* Determine the OS we're running on */
|
||||
OSFL()
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_IMC_FWM)
|
||||
#if IS_ENABLED(CONFIG_ACPI_ENABLE_THERMAL_ZONE)
|
||||
#if CONFIG(HUDSON_IMC_FWM)
|
||||
#if CONFIG(ACPI_ENABLE_THERMAL_ZONE)
|
||||
ITZE() /* enable IMC Fan Control*/
|
||||
#endif
|
||||
#endif
|
||||
|
@@ -50,8 +50,8 @@ Device(UOH6) {
|
||||
Name(_PRW, Package() {0x0B, 3})
|
||||
} /* end UOH5 */
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON) && \
|
||||
!IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_PI_AVALON) && \
|
||||
!CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
/* 0:14.5 - OHCI */
|
||||
Device(UEH1) {
|
||||
Name(_ADR, 0x00140005)
|
||||
@@ -65,8 +65,8 @@ Device(XHC0) {
|
||||
Name(_PRW, Package() {0x0B, 4})
|
||||
} /* end XHC0 */
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON) && \
|
||||
!IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if !CONFIG(SOUTHBRIDGE_AMD_PI_AVALON) && \
|
||||
!CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
/* 0:10.1 - XHCI 1*/
|
||||
Device(XHC1) {
|
||||
Name(_ADR, 0x00100001)
|
||||
|
@@ -63,12 +63,12 @@
|
||||
#define PIRQ_IDE 0x40 /* IDE 14h.1 */
|
||||
#define PIRQ_SATA 0x41 /* SATA 11h.0 */
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_AVALON)
|
||||
#define FCH_INT_TABLE_SIZE 0x63
|
||||
#define PIRQ_GPIO 0x62 /* GPIO Controller Interrupt */
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#define FCH_INT_TABLE_SIZE 0x54
|
||||
#define PIRQ_GPP0 0x50 /* GPP INT 0 */
|
||||
#define PIRQ_GPP1 0x51 /* GPP INT 1 */
|
||||
@@ -76,7 +76,7 @@
|
||||
#define PIRQ_GPP3 0x53 /* GPP INT 3 */
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#define FCH_INT_TABLE_SIZE 0x76
|
||||
#define PIRQ_GPIO 0x62 /* GPIO Controller Interrupt */
|
||||
#define PIRQ_I2C0 0x70
|
||||
|
@@ -23,13 +23,13 @@ const char *intr_types[] = {
|
||||
[0x20] = "IMC INT0\t", "IMC INT1\t", "IMC INT2\t", "IMC INT3\t", "IMC INT4\t", "IMC INT5\t",
|
||||
[0x30] = "Dev18.0 INTA", "Dev18.2 INTB", "Dev19.0 INTA", "Dev19.2 INTB", "Dev22.0 INTA", "Dev22.2 INTB", "Dev20.5 INTC",
|
||||
[0x7F] = "RSVD\t",
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_AVALON)
|
||||
[0x40] = "RSVD\t", "SATA\t",
|
||||
[0x60] = "RSVD\t", "RSVD\t", "GPIO\t",
|
||||
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#elif CONFIG(SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
[0x40] = "IDE\t", "SATA\t",
|
||||
[0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t",
|
||||
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#elif CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
[0x40] = "IDE\t", "SATA\t",
|
||||
[0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t",
|
||||
[0x62] = "GPIO\t",
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include "pci_devs.h"
|
||||
#include <Fch/Fch.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_UART)
|
||||
#if CONFIG(HUDSON_UART)
|
||||
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <delay.h>
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include "hudson.h"
|
||||
#include "smi.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_HUDSON_LEGACY_FREE)
|
||||
#if CONFIG(HUDSON_LEGACY_FREE)
|
||||
#define FADT_BOOT_ARCH ACPI_FADT_LEGACY_FREE
|
||||
#else
|
||||
#define FADT_BOOT_ARCH (ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042)
|
||||
@@ -63,7 +63,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
|
||||
fadt->preferred_pm_profile = FADT_PM_PROFILE;
|
||||
fadt->sci_int = 9; /* HUDSON - IRQ 09 - ACPI SCI */
|
||||
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
fadt->smi_cmd = ACPI_SMI_CTL_PORT;
|
||||
fadt->acpi_enable = ACPI_SMI_CMD_ENABLE;
|
||||
fadt->acpi_disable = ACPI_SMI_CMD_DISABLE;
|
||||
|
@@ -25,7 +25,7 @@
|
||||
#define GPIO_OUTPUT_VALUE (1 << 22)
|
||||
#define GPIO_OUTPUT_ENABLE (1 << 23)
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
/* GPIO_0 - GPIO_62 */
|
||||
#define GPIO_BANK0_CONTROL (AMD_SB_ACPI_MMIO_ADDR + 0x1500)
|
||||
#define GPIO_0 (GPIO_BANK0_CONTROL + 0x00)
|
||||
@@ -124,7 +124,7 @@
|
||||
#define GPIO_146 (GPIO_BANK2_CONTROL + 0x48)
|
||||
#define GPIO_147 (GPIO_BANK2_CONTROL + 0x4C)
|
||||
#define GPIO_148 (GPIO_BANK2_CONTROL + 0x50)
|
||||
#endif /* IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN) */
|
||||
#endif /* CONFIG(SOUTHBRIDGE_AMD_PI_KERN) */
|
||||
|
||||
typedef uint32_t gpio_t;
|
||||
|
||||
|
@@ -99,7 +99,7 @@ static void hudson_init_acpi_ports(void)
|
||||
/* CpuControl is in \_PR.CP00, 6 bytes */
|
||||
pm_write16(PM_CPU_CTRL, ACPI_CPU_CONTROL);
|
||||
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
pm_write16(PM_ACPI_SMI_CMD, ACPI_SMI_CTL_PORT);
|
||||
hudson_enable_acpi_cmd_smi();
|
||||
} else {
|
||||
@@ -119,9 +119,9 @@ static void hudson_init(void *chip_info)
|
||||
|
||||
static void hudson_final(void *chip_info)
|
||||
{
|
||||
if (IS_ENABLED(CONFIG_HUDSON_IMC_FWM)) {
|
||||
if (CONFIG(HUDSON_IMC_FWM)) {
|
||||
agesawrapper_fchecfancontrolservice();
|
||||
if (!IS_ENABLED(CONFIG_ACPI_ENABLE_THERMAL_ZONE))
|
||||
if (!CONFIG(ACPI_ENABLE_THERMAL_ZONE))
|
||||
enable_imc_thermal_zone();
|
||||
}
|
||||
}
|
||||
|
@@ -191,7 +191,7 @@ void lpc_wideio_16_window(uint16_t base);
|
||||
void hudson_tpm_decode_spi(void);
|
||||
int s3_save_nvram_early(u32 dword, int size, int nvram_pos);
|
||||
int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos);
|
||||
#if IS_ENABLED(CONFIG_HUDSON_UART)
|
||||
#if CONFIG(HUDSON_UART)
|
||||
void configure_hudson_uart(void);
|
||||
#endif
|
||||
|
||||
|
@@ -86,7 +86,7 @@ static void lpc_init(struct device *dev)
|
||||
|
||||
/* Set up SERIRQ, enable continuous mode */
|
||||
byte = (BIT(4) | BIT(7));
|
||||
if (!IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE))
|
||||
if (!CONFIG(SERIRQ_CONTINUOUS_MODE))
|
||||
byte |= BIT(6);
|
||||
|
||||
pm_write8(PM_SERIRQ_CONF, byte);
|
||||
@@ -353,7 +353,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = hudson_lpc_read_resources,
|
||||
.set_resources = hudson_lpc_set_resources,
|
||||
.enable_resources = hudson_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_init,
|
||||
|
@@ -71,7 +71,7 @@
|
||||
#define SMBUS_DEVFN PCI_DEVFN(SMBUS_DEV,SMBUS_FUNC)
|
||||
|
||||
/* IDE */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#define IDE_DEV 0x14
|
||||
#define IDE_FUNC 1
|
||||
#define IDE_DEVID 0x780C
|
||||
@@ -104,7 +104,7 @@
|
||||
#define SD_DEVFN PCI_DEVFN(SD_DEV,SD_FUNC)
|
||||
|
||||
/* PCIe Ports */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_BOLTON)
|
||||
#define SB_PCIE_DEV 0x15
|
||||
#define SB_PCIE_PORT1_FUNC 0
|
||||
#define SB_PCIE_PORT2_FUNC 1
|
||||
|
@@ -23,7 +23,7 @@
|
||||
|
||||
static void sata_init(struct device *dev)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON) || IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_PI_AVALON) || CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
|
||||
/**************************************
|
||||
* Configure the SATA port multiplier *
|
||||
**************************************/
|
||||
|
@@ -342,7 +342,7 @@ u8 PcieTrainPort(struct device *nb_dev, struct device *dev, u32 port)
|
||||
void rs780_set_tom(struct device *nb_dev)
|
||||
{
|
||||
/* set TOM */
|
||||
#if IS_ENABLED(CONFIG_GFXUMA)
|
||||
#if CONFIG(GFXUMA)
|
||||
pci_write_config32(nb_dev, 0x90, uma_memory_base);
|
||||
//nbmc_write_index(nb_dev, 0x1e, uma_memory_base);
|
||||
#else
|
||||
|
@@ -105,7 +105,7 @@ static void set_nbcfg_enable_bits(pci_devfn_t nb_dev, u32 reg_pos, u32 mask,
|
||||
}
|
||||
}
|
||||
/* family 10 only, for reg > 0xFF */
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
static void set_fam10_ext_cfg_enable_bits(pci_devfn_t fam10_dev, u32 reg_pos,
|
||||
u32 mask, u32 val)
|
||||
{
|
||||
@@ -151,7 +151,7 @@ static u8 is_famly10(void)
|
||||
return (cpuid_eax(1) & 0xff00000) != 0;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
static u8 l3_cache(void)
|
||||
{
|
||||
return (cpuid_edx(0x80000006) & (0x3FFF << 18)) != 0;
|
||||
@@ -231,7 +231,7 @@ void rs780_htinit(void)
|
||||
} else if ((cpu_ht_freq > 0x6) && (cpu_ht_freq < 0xf)) {
|
||||
printk(BIOS_INFO, "rs780_htinit: HT3 mode\n");
|
||||
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
/* HT3 mode, RPR 8.4.3 */
|
||||
set_nbcfg_enable_bits(rs780_f0, 0x9c, 0x3 << 16, 0);
|
||||
|
||||
@@ -271,7 +271,7 @@ void rs780_htinit(void)
|
||||
}
|
||||
}
|
||||
|
||||
#if !IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if !CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
/*******************************************************
|
||||
* Optimize k8 with UMA.
|
||||
* See BKDG_NPT_0F guide for details.
|
||||
@@ -327,7 +327,7 @@ static void k8_optimization(void)
|
||||
#define k8_optimization() do {} while (0)
|
||||
#endif /* !CONFIG_NORTHBRIDGE_AMD_AMDFAM10 */
|
||||
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
static void fam10_optimization(void)
|
||||
{
|
||||
pci_devfn_t cpu_f0, cpu_f2, cpu_f3;
|
||||
|
@@ -380,7 +380,7 @@ static void internal_gfx_pci_dev_init(struct device *dev)
|
||||
|
||||
/* GFX_InitFBAccess finished. */
|
||||
|
||||
#if IS_ENABLED(CONFIG_GFXUMA) /* for UMA mode. */
|
||||
#if CONFIG(GFXUMA) /* for UMA mode. */
|
||||
/* GFX_StartMC. */
|
||||
set_nbmc_enable_bits(nb_dev, 0x02, 0x00000000, 0x80000000);
|
||||
set_nbmc_enable_bits(nb_dev, 0x01, 0x00000000, 0x00000001);
|
||||
@@ -442,7 +442,7 @@ static void internal_gfx_pci_dev_init(struct device *dev)
|
||||
vgainfo.sHeader.ucTableFormatRevision = 1;
|
||||
vgainfo.sHeader.ucTableContentRevision = 2;
|
||||
|
||||
#if !IS_ENABLED(CONFIG_GFXUMA) /* SP mode. */
|
||||
#if !CONFIG(GFXUMA) /* SP mode. */
|
||||
// Side port support is incomplete, do not use it
|
||||
// These parameters must match the motherboard
|
||||
vgainfo.ulBootUpSidePortClock = 667*100;
|
||||
@@ -627,7 +627,7 @@ static void internal_gfx_pci_dev_init(struct device *dev)
|
||||
/* Transfer the Table to VBIOS. */
|
||||
pointer = (u32 *)&vgainfo;
|
||||
for (i = 0; i < sizeof(ATOM_INTEGRATED_SYSTEM_INFO_V2); i+=4) {
|
||||
#if IS_ENABLED(CONFIG_GFXUMA)
|
||||
#if CONFIG(GFXUMA)
|
||||
*GpuF0MMReg = 0x80000000 + uma_memory_size - 512 + i;
|
||||
#else
|
||||
*GpuF0MMReg = 0x80000000 + 0x8000000 - 512 + i;
|
||||
@@ -756,7 +756,7 @@ static void rs780_internal_gfx_enable(struct device *dev)
|
||||
struct device *nb_dev = pcidev_on_root(0x0, 0);
|
||||
msr_t sysmem;
|
||||
|
||||
#if !IS_ENABLED(CONFIG_GFXUMA)
|
||||
#if !CONFIG(GFXUMA)
|
||||
u32 FB_Start, FB_End;
|
||||
#endif
|
||||
|
||||
@@ -799,7 +799,7 @@ static void rs780_internal_gfx_enable(struct device *dev)
|
||||
set_nbmc_enable_bits(nb_dev, 0x25, 0xffffffff, 0x111f111f);
|
||||
set_htiu_enable_bits(nb_dev, 0x37, 1<<24, 1<<24);
|
||||
|
||||
#if IS_ENABLED(CONFIG_GFXUMA)
|
||||
#if CONFIG(GFXUMA)
|
||||
/* GFX_InitUMA. */
|
||||
/* Copy CPU DDR Controller to NB MC. */
|
||||
struct device *k8_f1 = pcidev_on_root(0x18, 1);
|
||||
|
@@ -204,7 +204,7 @@ static void rs780_nb_gfx_dev_table(struct device *nb_dev, struct device *dev)
|
||||
|
||||
/* Program Straps. */
|
||||
romstrap2 = 1 << 26; // enables audio function
|
||||
#if IS_ENABLED(CONFIG_GFXUMA)
|
||||
#if CONFIG(GFXUMA)
|
||||
// bits 7-9: aperture size
|
||||
// 0-7: 128mb, 256mb, 64mb, 32mb, 512mb, 1g, 2g, 4g
|
||||
if (uma_memory_size == 0x02000000) romstrap2 |= 3 << 7;
|
||||
|
@@ -44,7 +44,7 @@ static void sb700_enable_rom(void)
|
||||
dev = PCI_DEV(0, 0x14, 3);
|
||||
|
||||
reg8 = pci_io_read_config8(dev, IO_MEM_PORT_DECODE_ENABLE_5);
|
||||
if (IS_ENABLED(CONFIG_SPI_FLASH))
|
||||
if (CONFIG(SPI_FLASH))
|
||||
/* Disable decode of variable LPC ROM address ranges 1 and 2. */
|
||||
reg8 &= ~((1 << 3) | (1 << 4));
|
||||
else
|
||||
@@ -100,7 +100,7 @@ static void sb700_configure_rom(void)
|
||||
|
||||
dev = PCI_DEV(0, 0x14, 3);
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_33MHZ_SPI)) {
|
||||
if (CONFIG(SOUTHBRIDGE_AMD_SB700_33MHZ_SPI)) {
|
||||
uint32_t prev_spi_cfg;
|
||||
volatile uint32_t *spi_mmio;
|
||||
|
||||
|
@@ -151,7 +151,7 @@ void sb7xx_51xx_lpc_init(void)
|
||||
reg32 |= 1 << 20;
|
||||
pci_write_config32(dev, 0x64, reg32);
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
post_code(0x66);
|
||||
dev = pci_locate_device(PCI_ID(0x1002, 0x439d), 0); /* LPC Controller */
|
||||
reg8 = pci_read_config8(dev, 0xBB);
|
||||
@@ -165,7 +165,7 @@ void sb7xx_51xx_lpc_init(void)
|
||||
// XXX Serial port decode on LPC is hardcoded to 0x3f8
|
||||
reg8 = pci_read_config8(dev, 0x44);
|
||||
reg8 |= 1 << 6;
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG_TTYS0_BASE == 0x2f8
|
||||
reg8 |= 1 << 7;
|
||||
#endif
|
||||
@@ -404,7 +404,7 @@ static void sb700_devices_por_init(void)
|
||||
printk(BIOS_INFO, "%s: Secondary SMBUS controller I/O not found\n", __func__);
|
||||
}
|
||||
else {
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)) {
|
||||
if (CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)) {
|
||||
/* Disable legacy sensor support / reset ASF Slave state machine per RPR 2.27 step 3 */
|
||||
outb(0x40, SMBUS_AUX_IO_BASE + SMBSLVMISC);
|
||||
}
|
||||
@@ -459,7 +459,7 @@ static void sb700_devices_por_init(void)
|
||||
/*pci_write_config8(dev, 0x79, 0x4F); */
|
||||
pci_write_config8(dev, 0x78, 0xFF);
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
if (CONFIG(SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
printk(BIOS_DEBUG, "%s: Disabling ISA DMA support\n", __func__);
|
||||
/* Disable LPC ISA DMA Capability */
|
||||
byte = pci_read_config8(dev, 0x78);
|
||||
@@ -484,7 +484,7 @@ static void sb700_devices_por_init(void)
|
||||
/* LPC Device, BDF:0-20-3 */
|
||||
printk(BIOS_INFO, "sb700_devices_por_init(): LPC Device, BDF:0-20-3\n");
|
||||
dev = pci_locate_device(PCI_ID(0x1002, 0x439D), 0);
|
||||
if (!IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
if (!CONFIG(SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
/* DMA enable */
|
||||
pci_write_config8(dev, 0x40, 0x04);
|
||||
}
|
||||
@@ -531,7 +531,7 @@ static void sb700_devices_por_init(void)
|
||||
pci_write_config8(dev, 0x50, 0x01);
|
||||
|
||||
if (!sata_ahci_mode){
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
/* SP5100 default SATA mode is RAID5 MODE */
|
||||
dev = pci_locate_device(PCI_ID(0x1002, 0x4392), 0);
|
||||
|
||||
@@ -597,7 +597,7 @@ static void sb700_pmio_por_init(void)
|
||||
uint8_t enable_c_states;
|
||||
|
||||
enable_c_states = 0;
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
if (get_option(&byte, "cpu_c_states") == CB_SUCCESS)
|
||||
enable_c_states = !!byte;
|
||||
#endif
|
||||
@@ -608,7 +608,7 @@ static void sb700_pmio_por_init(void)
|
||||
byte |= 0x20;
|
||||
pmio_write(0x66, byte);
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)) {
|
||||
if (CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)) {
|
||||
/* RPR 2.11 Sx State Settings */
|
||||
byte = pmio_read(0x65);
|
||||
byte &= ~(1 << 7); /* SpecialFunc = 0 */
|
||||
@@ -687,7 +687,7 @@ static void sb700_pmio_por_init(void)
|
||||
byte |= 0xc0;
|
||||
pmio_write(0xbb, byte);
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
/* RPR 2.26 Alter CPU reset timing */
|
||||
byte = pmio_read(0xb2);
|
||||
byte |= 0x1 << 2; /* Enable CPU reset timing option */
|
||||
@@ -736,7 +736,7 @@ static void sb700_pci_cfg(void)
|
||||
* mentioned in RPR. But I keep them. The registers and the
|
||||
* comments are compatible. */
|
||||
dev = pci_locate_device(PCI_ID(0x1002, 0x439D), 0);
|
||||
if (!IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
if (!CONFIG(SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
/* Enabling LPC DMA function. */
|
||||
byte = pci_read_config8(dev, 0x40);
|
||||
byte |= (1 << 2);
|
||||
|
@@ -155,7 +155,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
|
||||
fadt->x_gpe1_blk.addrl = 0;
|
||||
fadt->x_gpe1_blk.addrh = 0x0;
|
||||
|
||||
if (IS_ENABLED(CONFIG_CPU_AMD_MODEL_10XXX))
|
||||
if (CONFIG(CPU_AMD_MODEL_10XXX))
|
||||
amd_powernow_update_fadt(fadt);
|
||||
|
||||
header->checksum = acpi_checksum((void *)fadt, sizeof(acpi_fadt_t));
|
||||
|
@@ -45,13 +45,13 @@ static void lpc_init(struct device *dev)
|
||||
pci_write_config32(sm_dev, 0x64, dword);
|
||||
|
||||
/* Initialize isa dma */
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_SKIP_ISA_DMA_INIT)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SB700_SKIP_ISA_DMA_INIT)
|
||||
printk(BIOS_DEBUG, "Skipping isa_dma_init() to avoid getting stuck.\n");
|
||||
#else
|
||||
isa_dma_init();
|
||||
#endif
|
||||
|
||||
if (!IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
if (!CONFIG(SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA)) {
|
||||
/* Enable DMA transaction on the LPC bus */
|
||||
byte = pci_read_config8(dev, 0x40);
|
||||
byte |= (1 << 2);
|
||||
@@ -66,7 +66,7 @@ static void lpc_init(struct device *dev)
|
||||
/* Disable LPC MSI Capability */
|
||||
byte = pci_read_config8(dev, 0x78);
|
||||
byte &= ~(1 << 1);
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
/* Disable FlowContrl, Always service the request from Host
|
||||
* whenever there is a request from Host pending
|
||||
*/
|
||||
@@ -246,7 +246,7 @@ static void sb700_lpc_enable_resources(struct device *dev)
|
||||
sb700_lpc_enable_childrens_resources(dev);
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
|
||||
static void southbridge_acpi_fill_ssdt_generator(struct device *device) {
|
||||
amd_generate_powernow(ACPI_CPU_CONTROL, 6, 1);
|
||||
@@ -275,7 +275,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = sb700_lpc_read_resources,
|
||||
.set_resources = sb700_lpc_set_resources,
|
||||
.enable_resources = sb700_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.acpi_name = lpc_acpi_name,
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
.acpi_fill_ssdt_generator = southbridge_acpi_fill_ssdt_generator,
|
||||
|
@@ -351,7 +351,7 @@ static void sata_init(struct device *dev)
|
||||
byte |= 7 << 0;
|
||||
pci_write_config8(dev, 0x4, byte);
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
/* Master Latency Timer */
|
||||
pci_write_config32(dev, 0xC, 0x00004000);
|
||||
#endif
|
||||
|
@@ -222,7 +222,7 @@ void sb7xx_51xx_enable(struct device *dev)
|
||||
}
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
struct chip_operations southbridge_amd_sb700_ops = {
|
||||
CHIP_NAME("ATI SP5100")
|
||||
.enable_dev = sb7xx_51xx_enable,
|
||||
|
@@ -136,7 +136,7 @@ static void sm_init(struct device *dev)
|
||||
pci_write_config8(dev, 0x41, byte);
|
||||
|
||||
byte = pm_ioread(0x61);
|
||||
if (IS_ENABLED(CONFIG_CPU_AMD_MODEL_10XXX))
|
||||
if (CONFIG(CPU_AMD_MODEL_10XXX))
|
||||
byte &= ~(1 << 1); /* Clear for non-K8 CPUs */
|
||||
else
|
||||
byte |= 1 << 1; /* Set to enable NB/SB handshake during IOAPIC interrupt for AMD K8/K7 */
|
||||
@@ -305,7 +305,7 @@ static void sm_init(struct device *dev)
|
||||
pci_write_config32(dev, SB_MMIO_CFG_REG, dword);
|
||||
}
|
||||
byte = pci_read_config8(dev, 0xAE);
|
||||
if (IS_ENABLED(CONFIG_ENABLE_APIC_EXT_ID))
|
||||
if (CONFIG(ENABLE_APIC_EXT_ID))
|
||||
byte |= 1 << 4;
|
||||
byte |= 1 << 5; /* ACPI_DISABLE_TIMER_IRQ_ENHANCEMENT_FOR_8254_TIMER */
|
||||
byte |= 1 << 6; /* Enable arbiter between APIC and PIC interrupts */
|
||||
|
@@ -181,7 +181,7 @@ static void usb_init2(struct device *dev)
|
||||
dword |= 1 << 8;
|
||||
dword &= ~(1 << 27); /* 6.23 */
|
||||
}
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
#if CONFIG(SOUTHBRIDGE_AMD_SUBTYPE_SP5100)
|
||||
/* SP5100 Erratum 36 */
|
||||
dword &= ~(1 << 26);
|
||||
if (!ehci_async_data_cache)
|
||||
|
@@ -155,7 +155,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
|
||||
fadt->x_gpe1_blk.addrl = 0;
|
||||
fadt->x_gpe1_blk.addrh = 0x0;
|
||||
|
||||
if (IS_ENABLED(CONFIG_CPU_AMD_MODEL_10XXX))
|
||||
if (CONFIG(CPU_AMD_MODEL_10XXX))
|
||||
amd_powernow_update_fadt(fadt);
|
||||
|
||||
header->checksum = acpi_checksum((void *)fadt, sizeof(acpi_fadt_t));
|
||||
|
@@ -245,7 +245,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = sb800_lpc_read_resources,
|
||||
.set_resources = sb800_lpc_set_resources,
|
||||
.enable_resources = sb800_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_init,
|
||||
|
@@ -57,7 +57,7 @@ static void set_fam10_ext_cfg_enable_bits(pci_devfn_t fam10_dev,
|
||||
u32 reg_old, reg;
|
||||
|
||||
/* family 10 only, for reg > 0xFF */
|
||||
if (!IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10))
|
||||
if (!CONFIG(NORTHBRIDGE_AMD_AMDFAM10))
|
||||
return;
|
||||
|
||||
reg = reg_old = pci_read_config32(fam10_dev, reg_pos);
|
||||
@@ -222,7 +222,7 @@ void sr5650_htinit(void)
|
||||
/* Enable Protocol checker */
|
||||
set_htiu_enable_bits(sr5650_f0, 0x1E, 0xFFFFFFFF, 0x7FFFFFFC);
|
||||
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
/* HT3 mode, RPR 5.4.3 */
|
||||
set_nbcfg_enable_bits(sr5650_f0, 0x9c, 0x3 << 16, 0);
|
||||
|
||||
@@ -307,7 +307,7 @@ void fam10_optimization(void)
|
||||
msr_t msr;
|
||||
u32 val;
|
||||
|
||||
if (!IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10))
|
||||
if (!CONFIG(NORTHBRIDGE_AMD_AMDFAM10))
|
||||
return;
|
||||
|
||||
printk(BIOS_INFO, "fam10_optimization()\n");
|
||||
|
@@ -155,7 +155,7 @@ static void pcie_init(struct device *dev)
|
||||
|
||||
static void sr5690_read_resource(struct device *dev)
|
||||
{
|
||||
if (IS_ENABLED(CONFIG_EXT_CONF_SUPPORT)) {
|
||||
if (CONFIG(EXT_CONF_SUPPORT)) {
|
||||
printk(BIOS_DEBUG,"%s: %s\n", __func__, dev_path(dev));
|
||||
set_nbmisc_enable_bits(dev, 0x0, 1 << 3, 1 << 3); /* Hide BAR3 */
|
||||
}
|
||||
@@ -174,7 +174,7 @@ static void sr5690_set_resources(struct device *dev)
|
||||
{
|
||||
pci_write_config32(dev, 0xf8, 0x1); /* Set IOAPIC's index to 1 and make sure no one changes it */
|
||||
|
||||
if (IS_ENABLED(CONFIG_EXT_CONF_SUPPORT)) {
|
||||
if (CONFIG(EXT_CONF_SUPPORT)) {
|
||||
uint32_t reg;
|
||||
struct device *amd_ht_cfg_dev;
|
||||
struct device *amd_addr_map_dev;
|
||||
|
@@ -808,7 +808,7 @@ unsigned long acpi_fill_mcfg(unsigned long current)
|
||||
struct resource *res;
|
||||
resource_t mmconf_base = EXT_CONF_BASE_ADDRESS;
|
||||
|
||||
if (IS_ENABLED(CONFIG_EXT_CONF_SUPPORT)) {
|
||||
if (CONFIG(EXT_CONF_SUPPORT)) {
|
||||
res = sr5650_retrieve_cpu_mmio_resource();
|
||||
if (res)
|
||||
mmconf_base = res->base;
|
||||
|
@@ -79,7 +79,7 @@ static void pch_enable_serial_irqs(struct device *dev)
|
||||
/* Set packet length and toggle silent mode bit for one frame. */
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#if !IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE)
|
||||
#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#endif
|
||||
@@ -724,7 +724,7 @@ static void southbridge_inject_dsdt(struct device *dev)
|
||||
memcpy(gnvs->did, gfx->did, sizeof(gnvs->did));
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
chromeos_init_chromeos_acpi(&(gnvs->chromeos));
|
||||
#endif
|
||||
|
||||
@@ -915,8 +915,8 @@ static void lpc_final(struct device *dev)
|
||||
RCBA32(0x389c) = spi_opmenu[1];
|
||||
|
||||
/* Call SMM finalize() handlers before resume */
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (IS_ENABLED(CONFIG_INTEL_CHIPSET_LOCKDOWN) ||
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(INTEL_CHIPSET_LOCKDOWN) ||
|
||||
acpi_is_wakeup_s3()) {
|
||||
outb(APM_CNT_FINALIZE, APM_CNT);
|
||||
}
|
||||
|
@@ -41,7 +41,7 @@
|
||||
#include "me.h"
|
||||
#include "pch.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#endif
|
||||
|
||||
@@ -60,7 +60,7 @@ static const char *me_bios_path_values[] = {
|
||||
/* MMIO base address for MEI interface */
|
||||
static u32 *mei_base_address;
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
static void mei_dump(void *ptr, int dword, int offset, const char *type)
|
||||
{
|
||||
struct mei_csr *csr;
|
||||
@@ -456,7 +456,7 @@ static int mkhi_get_fwcaps(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS) && 0 /* DISABLED */
|
||||
#if CONFIG(CHROMEOS) && 0 /* DISABLED */
|
||||
/* Tell ME to issue a global reset */
|
||||
int mkhi_global_reset(void)
|
||||
{
|
||||
@@ -588,7 +588,7 @@ static me_bios_path intel_me_path(struct device *dev)
|
||||
if (hfs.error_code || hfs.fpt_bad)
|
||||
path = ME_ERROR_BIOS_PATH;
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
if (path != ME_NORMAL_BIOS_PATH) {
|
||||
struct elog_event_data_me_extended data = {
|
||||
.current_working_state = hfs.working_state,
|
||||
@@ -677,7 +677,7 @@ static int intel_me_extend_valid(struct device *dev)
|
||||
}
|
||||
printk(BIOS_DEBUG, "\n");
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
/* Save hash in NVS for the OS to verify */
|
||||
chromeos_set_me_hash(extend, count);
|
||||
#endif
|
||||
|
@@ -41,7 +41,7 @@
|
||||
#include "me.h"
|
||||
#include "pch.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#endif
|
||||
@@ -62,7 +62,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data);
|
||||
/* MMIO base address for MEI interface */
|
||||
static u32 *mei_base_address;
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
static void mei_dump(void *ptr, int dword, int offset, const char *type)
|
||||
{
|
||||
struct mei_csr *csr;
|
||||
@@ -423,7 +423,7 @@ static void me_print_fwcaps(mbp_fw_caps *caps_section)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS) && 0 /* DISABLED */
|
||||
#if CONFIG(CHROMEOS) && 0 /* DISABLED */
|
||||
/* Tell ME to issue a global reset */
|
||||
static int mkhi_global_reset(void)
|
||||
{
|
||||
@@ -575,7 +575,7 @@ static me_bios_path intel_me_path(struct device *dev)
|
||||
path = ME_ERROR_BIOS_PATH;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
if (path != ME_NORMAL_BIOS_PATH) {
|
||||
struct elog_event_data_me_extended data = {
|
||||
.current_working_state = hfs.working_state,
|
||||
@@ -664,7 +664,7 @@ static int intel_me_extend_valid(struct device *dev)
|
||||
}
|
||||
printk(BIOS_DEBUG, "\n");
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
/* Save hash in NVS for the OS to verify */
|
||||
chromeos_set_me_hash(extend, count);
|
||||
#endif
|
||||
@@ -705,7 +705,7 @@ static void intel_me_init(struct device *dev)
|
||||
if (intel_me_read_mbp(&mbp_data))
|
||||
break;
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS) && 0 /* DISABLED */
|
||||
#if CONFIG(CHROMEOS) && 0 /* DISABLED */
|
||||
/*
|
||||
* Unlock ME in recovery mode.
|
||||
*/
|
||||
|
@@ -47,9 +47,9 @@
|
||||
|
||||
#include <southbridge/intel/common/rcba.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_BD82X6X)
|
||||
#if CONFIG(SOUTHBRIDGE_INTEL_BD82X6X)
|
||||
#define CROS_GPIO_DEVICE_NAME "CougarPoint"
|
||||
#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_C216)
|
||||
#elif CONFIG(SOUTHBRIDGE_INTEL_C216)
|
||||
#define CROS_GPIO_DEVICE_NAME "PantherPoint"
|
||||
#endif
|
||||
|
||||
|
@@ -35,7 +35,7 @@ static void usb_ehci_init(struct device *dev)
|
||||
printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
|
||||
|
||||
/* For others, done in MRC. */
|
||||
#if IS_ENABLED(CONFIG_USE_NATIVE_RAMINIT)
|
||||
#if CONFIG(USE_NATIVE_RAMINIT)
|
||||
pci_write_config32(dev, 0x84, 0x930c8811);
|
||||
pci_write_config32(dev, 0x88, 0x24000d30);
|
||||
pci_write_config32(dev, 0xf4, 0x80408588);
|
||||
@@ -50,7 +50,7 @@ static void usb_ehci_init(struct device *dev)
|
||||
pci_write_config32(dev, PCI_COMMAND, reg32);
|
||||
|
||||
/* For others, done in MRC. */
|
||||
#if IS_ENABLED(CONFIG_USE_NATIVE_RAMINIT)
|
||||
#if CONFIG(USE_NATIVE_RAMINIT)
|
||||
struct resource *res;
|
||||
u8 access_cntl;
|
||||
|
||||
|
@@ -28,11 +28,11 @@ void intel_pch_finalize_smm(void)
|
||||
{
|
||||
const pci_devfn_t lpc_dev = PCI_DEV(0, 0x1f, 0);
|
||||
|
||||
if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_RO) ||
|
||||
IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS)) {
|
||||
if (CONFIG(LOCK_SPI_FLASH_RO) ||
|
||||
CONFIG(LOCK_SPI_FLASH_NO_ACCESS)) {
|
||||
int i;
|
||||
u32 lockmask = 1UL << 31;
|
||||
if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS))
|
||||
if (CONFIG(LOCK_SPI_FLASH_NO_ACCESS))
|
||||
lockmask |= 1 << 15;
|
||||
for (i = 0; i < 20; i += 4)
|
||||
RCBA32(0x3874 + i) = RCBA32(0x3854 + i) | lockmask;
|
||||
@@ -41,7 +41,7 @@ void intel_pch_finalize_smm(void)
|
||||
/* Lock SPIBAR */
|
||||
RCBA32_OR(0x3804, (1 << 15));
|
||||
|
||||
if (IS_ENABLED(CONFIG_SPI_FLASH_SMM))
|
||||
if (CONFIG(SPI_FLASH_SMM))
|
||||
/* Re-init SPI driver to handle locked BAR */
|
||||
spi_init();
|
||||
|
||||
@@ -61,7 +61,7 @@ void intel_pch_finalize_smm(void)
|
||||
|
||||
pci_update_config32(lpc_dev, D31F0_ETR3, ~ETR3_CF9GR, ETR3_CF9LOCK);
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT))
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_LYNXPOINT))
|
||||
/* PMSYNC */
|
||||
RCBA32_OR(0x33c4, (1UL << 31));
|
||||
|
||||
|
@@ -69,13 +69,13 @@
|
||||
#define LV2 0x14
|
||||
#define LV3 0x15
|
||||
#define LV4 0x16
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)
|
||||
#if CONFIG(SOUTHBRIDGE_INTEL_I82801GX)
|
||||
#define PM2_CNT 0x20 // mobile only
|
||||
#define GPE0_STS 0x28
|
||||
#else
|
||||
#define PM2_CNT 0x50 // mobile only
|
||||
#define GPE0_STS 0x20
|
||||
#endif /* IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX) */
|
||||
#endif /* CONFIG(SOUTHBRIDGE_INTEL_I82801GX) */
|
||||
#define USB4_STS (1 << 14) /* i82801gx only */
|
||||
#define PME_B0_STS (1 << 13)
|
||||
#define PME_STS (1 << 11)
|
||||
@@ -86,11 +86,11 @@
|
||||
#define TCOSCI_STS (1 << 6)
|
||||
#define SWGPE_STS (1 << 2)
|
||||
#define HOT_PLUG_STS (1 << 1)
|
||||
#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)
|
||||
#if CONFIG(SOUTHBRIDGE_INTEL_I82801GX)
|
||||
#define GPE0_EN 0x2c
|
||||
#else
|
||||
#define GPE0_EN 0x28
|
||||
#endif /* IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX) */
|
||||
#endif /* CONFIG(SOUTHBRIDGE_INTEL_I82801GX) */
|
||||
#define PME_B0_EN (1 << 13)
|
||||
#define PME_EN (1 << 11)
|
||||
#define TCOSCI_EN (1 << 6)
|
||||
|
@@ -41,7 +41,7 @@ void sb_rtc_init(void)
|
||||
int rtc_failed = rtc_failure();
|
||||
|
||||
if (rtc_failed) {
|
||||
if (IS_ENABLED(CONFIG_ELOG))
|
||||
if (CONFIG(ELOG))
|
||||
elog_add_event(ELOG_TYPE_RTC_RESET);
|
||||
pci_update_config8(PCH_LPC_DEV, D31F0_GEN_PMCON_3,
|
||||
~RTC_BATTERY_DEAD, 0);
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#include "smbus.h"
|
||||
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_SMBUS)
|
||||
#if CONFIG(DEBUG_SMBUS)
|
||||
#define dprintk(args...) printk(BIOS_DEBUG, ##args)
|
||||
#else
|
||||
#define dprintk(args...) do {} while (0)
|
||||
@@ -369,8 +369,8 @@ int do_smbus_block_write(unsigned int smbus_base, u8 device, u8 cmd,
|
||||
/* Only since ICH5 */
|
||||
static int has_i2c_read_command(void)
|
||||
{
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82371EB) ||
|
||||
IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801DX))
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82371EB) ||
|
||||
CONFIG(SOUTHBRIDGE_INTEL_I82801DX))
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
@@ -40,7 +40,7 @@ void southbridge_smm_init(void)
|
||||
u16 pm1_en;
|
||||
u32 gpe0_en;
|
||||
|
||||
if (IS_ENABLED(CONFIG_ELOG))
|
||||
if (CONFIG(ELOG))
|
||||
/* Log events from chipset before clearing */
|
||||
pch_log_state();
|
||||
|
||||
@@ -159,7 +159,7 @@ void southbridge_smm_clear_state(void)
|
||||
{
|
||||
u32 smi_en;
|
||||
|
||||
if (IS_ENABLED(CONFIG_ELOG))
|
||||
if (CONFIG(ELOG))
|
||||
/* Log events from chipset before clearing */
|
||||
pch_log_state();
|
||||
|
||||
|
@@ -136,7 +136,7 @@ static void southbridge_smi_sleep(void)
|
||||
/* Do any mainboard sleep handling */
|
||||
mainboard_smi_sleep(slp_typ);
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
/* Log S3, S4, and S5 entry */
|
||||
if (slp_typ >= ACPI_S3)
|
||||
elog_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
|
||||
@@ -244,7 +244,7 @@ em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
static void southbridge_smi_gsmi(void)
|
||||
{
|
||||
u32 *ret, *param;
|
||||
@@ -316,7 +316,7 @@ static void southbridge_smi_apmc(void)
|
||||
southbridge_finalize_all();
|
||||
mainboard_finalized = 1;
|
||||
break;
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
case APM_CNT_ELOG_GSMI:
|
||||
southbridge_smi_gsmi();
|
||||
break;
|
||||
@@ -340,7 +340,7 @@ static void southbridge_smi_pm1(void)
|
||||
// power button pressed
|
||||
u32 reg32;
|
||||
reg32 = (7 << 10) | (1 << 13);
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
elog_add_event(ELOG_TYPE_POWER_BUTTON);
|
||||
#endif
|
||||
write_pmbase32(PM1_CNT, reg32);
|
||||
@@ -478,7 +478,7 @@ static smi_handler_t southbridge_smi[32] = {
|
||||
* @param node
|
||||
* @param state_save
|
||||
*/
|
||||
#if IS_ENABLED(CONFIG_SMM_TSEG)
|
||||
#if CONFIG(SMM_TSEG)
|
||||
void southbridge_smi_handler(void)
|
||||
#else
|
||||
void cpu_smi_handler(unsigned int node, smm_state_save_area_t *state_save)
|
||||
|
@@ -161,7 +161,7 @@ enum {
|
||||
SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS = 3
|
||||
};
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_SPI_FLASH)
|
||||
#if CONFIG(DEBUG_SPI_FLASH)
|
||||
|
||||
static u8 readb_(const void *addr)
|
||||
{
|
||||
@@ -283,7 +283,7 @@ void spi_init(void)
|
||||
rcba = pci_read_config32(dev, 0xf0);
|
||||
/* Bits 31-14 are the base address, 13-1 are reserved, 0 is enable. */
|
||||
rcrb = (uint8_t *)(rcba & 0xffffc000);
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)) {
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
|
||||
ich7_spi = (ich7_spi_regs *)(rcrb + 0x3020);
|
||||
cntlr->opmenu = ich7_spi->opmenu;
|
||||
cntlr->menubytes = sizeof(ich7_spi->opmenu);
|
||||
@@ -906,7 +906,7 @@ static int spi_flash_programmer_probe(const struct spi_slave *spi,
|
||||
{
|
||||
ich_spi_controller *cntlr = &g_cntlr;
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX))
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
|
||||
return spi_flash_generic_probe(spi, flash);
|
||||
|
||||
/* Try generic probing first if spi_is_multichip returns 0. */
|
||||
@@ -963,7 +963,7 @@ static u32 spi_fpr(u32 base, u32 limit)
|
||||
u32 ret;
|
||||
u32 mask, limit_shift;
|
||||
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)) {
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
|
||||
mask = ICH7_SPI_FPR_MASK;
|
||||
limit_shift = ICH7_SPI_FPR_LIMIT_SHIFT;
|
||||
} else {
|
||||
@@ -1011,12 +1011,12 @@ static int spi_flash_protect(const struct spi_flash *flash,
|
||||
protect_mask |= SPI_FPR_WPE;
|
||||
break;
|
||||
case READ_PROTECT:
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX))
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
|
||||
return -1;
|
||||
protect_mask |= ICH9_SPI_FPR_RPE;
|
||||
break;
|
||||
case READ_WRITE_PROTECT:
|
||||
if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX))
|
||||
if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
|
||||
return -1;
|
||||
protect_mask |= (ICH9_SPI_FPR_RPE | SPI_FPR_WPE);
|
||||
break;
|
||||
|
@@ -26,7 +26,7 @@ pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
|
||||
u32 class;
|
||||
pci_devfn_t dev;
|
||||
|
||||
if (!IS_ENABLED(CONFIG_HAVE_USBDEBUG_OPTIONS))
|
||||
if (!CONFIG(HAVE_USBDEBUG_OPTIONS))
|
||||
return PCI_DEV(0, 0x1d, 7);
|
||||
|
||||
if (hcd_idx == 2)
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include <device/pci_ops.h>
|
||||
#include <version.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
#include <cpu/x86/smm.h>
|
||||
#endif
|
||||
|
||||
|
@@ -95,7 +95,7 @@ static void soc_enable_serial_irqs(struct device *dev)
|
||||
/* Set packet length and toggle silent mode bit for one frame. */
|
||||
write8(ibase + ILB_SERIRQ_CNTL, (1 << 7));
|
||||
|
||||
#if !IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE)
|
||||
#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
|
||||
write8(ibase + ILB_SERIRQ_CNTL, 0);
|
||||
#endif
|
||||
}
|
||||
@@ -435,7 +435,7 @@ static void southbridge_inject_dsdt(struct device *dev)
|
||||
if (gnvs) {
|
||||
memset(gnvs, 0, sizeof(*gnvs));
|
||||
acpi_create_gnvs(gnvs);
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
/* And tell SMI about it */
|
||||
smm_setup_structures(gnvs, NULL, NULL);
|
||||
#endif
|
||||
|
@@ -102,7 +102,7 @@ void romstage_main_continue(EFI_STATUS status, void *hob_list_ptr) {
|
||||
__func__, (u32) status, (u32) hob_list_ptr);
|
||||
|
||||
/* FSP reconfigures USB, so reinit it to have debug */
|
||||
if (IS_ENABLED(CONFIG_USBDEBUG_IN_PRE_RAM))
|
||||
if (CONFIG(USBDEBUG_IN_PRE_RAM))
|
||||
usbdebug_hw_init(true);
|
||||
|
||||
printk(BIOS_DEBUG, "FSP Status: 0x%0x\n", (u32)status);
|
||||
|
@@ -61,7 +61,7 @@ void soc_enable(struct device *dev);
|
||||
|
||||
void acpi_fill_in_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt);
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
void soc_log_state(void);
|
||||
#endif
|
||||
#else
|
||||
|
@@ -193,7 +193,7 @@ enum {
|
||||
SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS = 3,
|
||||
};
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_SPI_FLASH)
|
||||
#if CONFIG(DEBUG_SPI_FLASH)
|
||||
|
||||
static u8 readb_(const void *addr)
|
||||
{
|
||||
|
@@ -23,13 +23,13 @@
|
||||
#include <pc80/isa-dma.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <arch/ioapic.h>
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#endif
|
||||
#include "i82371eb.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_IOAPIC)
|
||||
#if CONFIG(IOAPIC)
|
||||
static void enable_intel_82093aa_ioapic(void)
|
||||
{
|
||||
u16 reg16;
|
||||
@@ -85,7 +85,7 @@ static void isa_init(struct device *dev)
|
||||
/* Initialize ISA DMA. */
|
||||
isa_dma_init();
|
||||
|
||||
#if IS_ENABLED(CONFIG_IOAPIC)
|
||||
#if CONFIG(IOAPIC)
|
||||
/*
|
||||
* Unlike most other southbridges the 82371EB doesn't have a built-in
|
||||
* IOAPIC. Instead, 82371EB-based boards that support multiple CPUs
|
||||
@@ -116,7 +116,7 @@ static void sb_read_resources(struct device *dev)
|
||||
res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
|
||||
IORESOURCE_RESERVE;
|
||||
|
||||
#if IS_ENABLED(CONFIG_IOAPIC)
|
||||
#if CONFIG(IOAPIC)
|
||||
res = new_resource(dev, 3); /* IOAPIC */
|
||||
res->base = IO_APIC_ADDR;
|
||||
res->size = 0x00001000;
|
||||
@@ -125,7 +125,7 @@ static void sb_read_resources(struct device *dev)
|
||||
#endif
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
static void southbridge_acpi_fill_ssdt_generator(struct device *device)
|
||||
{
|
||||
acpigen_write_mainboard_resources("\\_SB.PCI0.MBRS", "_CRS");
|
||||
@@ -137,7 +137,7 @@ static const struct device_operations isa_ops = {
|
||||
.read_resources = sb_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
.acpi_fill_ssdt_generator = southbridge_acpi_fill_ssdt_generator,
|
||||
#endif
|
||||
|
@@ -330,7 +330,7 @@ static void enable_clock_gating(void)
|
||||
RCBA32(CG) = reg32;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
static void i82801gx_lock_smm(struct device *dev)
|
||||
{
|
||||
#if TEST_SMM_FLASH_LOCKDOWN
|
||||
@@ -445,7 +445,7 @@ static void lpc_init(struct device *dev)
|
||||
/* Interrupt 9 should be level triggered (SCI) */
|
||||
i8259_configure_irq_trigger(9, 1);
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
i82801gx_lock_smm(dev);
|
||||
#endif
|
||||
|
||||
@@ -649,7 +649,7 @@ static void lpc_final(struct device *dev)
|
||||
{
|
||||
u16 tco1_cnt;
|
||||
|
||||
if (!IS_ENABLED(CONFIG_INTEL_CHIPSET_LOCKDOWN))
|
||||
if (!CONFIG(INTEL_CHIPSET_LOCKDOWN))
|
||||
return;
|
||||
|
||||
SPIBAR16(PREOP) = SPI_OPPREFIX;
|
||||
|
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
Name(\_S0, Package(){0x0,0x0,0x0,0x0})
|
||||
#if !IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
||||
#if !CONFIG(HAVE_ACPI_RESUME)
|
||||
Name(\_S1, Package(){0x1,0x0,0x0,0x0})
|
||||
#else
|
||||
Name(\_S3, Package(){0x5,0x0,0x0,0x0})
|
||||
|
@@ -224,7 +224,7 @@ static void i82801ix_init(void *chip_info)
|
||||
i82801ix_hide_functions();
|
||||
|
||||
/* Reset watchdog timer. */
|
||||
#if !IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if !CONFIG(HAVE_SMI_HANDLER)
|
||||
outw(0x0008, DEFAULT_TCOBASE + 0x12); /* Set higher timer value. */
|
||||
#endif
|
||||
outw(0x0000, DEFAULT_TCOBASE + 0x00); /* Update timer. */
|
||||
|
@@ -28,7 +28,7 @@
|
||||
|
||||
#include <southbridge/intel/common/rcba.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_BOARD_EMULATION_QEMU_X86_Q35)
|
||||
#if CONFIG(BOARD_EMULATION_QEMU_X86_Q35)
|
||||
/*
|
||||
* Qemu has the fw_cfg interface at 0x510. Move the pmbase to a
|
||||
* non-conflicting address. No need to worry about speedstep, it
|
||||
|
@@ -370,7 +370,7 @@ static void enable_clock_gating(void)
|
||||
RCBA32(0x38c0) |= 7;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
static void i82801ix_lock_smm(struct device *dev)
|
||||
{
|
||||
#if TEST_SMM_FLASH_LOCKDOWN
|
||||
@@ -394,7 +394,7 @@ static void i82801ix_lock_smm(struct device *dev)
|
||||
/* Don't allow evil boot loaders, kernels, or
|
||||
* userspace applications to deceive us:
|
||||
*/
|
||||
if (!IS_ENABLED(CONFIG_PARALLEL_MP))
|
||||
if (!CONFIG(PARALLEL_MP))
|
||||
smm_lock();
|
||||
|
||||
#if TEST_SMM_FLASH_LOCKDOWN
|
||||
@@ -466,7 +466,7 @@ static void lpc_init(struct device *dev)
|
||||
/* Interrupt 9 should be level triggered (SCI) */
|
||||
i8259_configure_irq_trigger(9, 1);
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
i82801ix_lock_smm(dev);
|
||||
#endif
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
Name(\_S0, Package(){0x0,0x0,0x0,0x0})
|
||||
#if !IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
|
||||
#if !CONFIG(HAVE_ACPI_RESUME)
|
||||
Name(\_S1, Package(){0x1,0x0,0x0,0x0})
|
||||
#else
|
||||
Name(\_S3, Package(){0x5,0x0,0x0,0x0})
|
||||
|
@@ -223,7 +223,7 @@ static void i82801jx_init(void *chip_info)
|
||||
i82801jx_hide_functions();
|
||||
|
||||
/* Reset watchdog timer. */
|
||||
#if !IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if !CONFIG(HAVE_SMI_HANDLER)
|
||||
outw(0x0008, DEFAULT_TCOBASE + 0x12); /* Set higher timer value. */
|
||||
#endif
|
||||
outw(0x0000, DEFAULT_TCOBASE + 0x00); /* Update timer. */
|
||||
|
@@ -372,7 +372,7 @@ static void enable_clock_gating(void)
|
||||
RCBA32(0x38c0) |= 7;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
static void i82801jx_lock_smm(struct device *dev)
|
||||
{
|
||||
#if TEST_SMM_FLASH_LOCKDOWN
|
||||
@@ -463,7 +463,7 @@ static void lpc_init(struct device *dev)
|
||||
/* Interrupt 9 should be level triggered (SCI) */
|
||||
i8259_configure_irq_trigger(9, 1);
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
i82801jx_lock_smm(dev);
|
||||
#endif
|
||||
}
|
||||
|
@@ -74,7 +74,7 @@ static void pch_enable_serial_irqs(struct device *dev)
|
||||
/* Set packet length and toggle silent mode bit for one frame. */
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#if !IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE)
|
||||
#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#endif
|
||||
@@ -283,7 +283,7 @@ static void pch_rtc_init(struct device *dev)
|
||||
if (rtc_failed) {
|
||||
reg8 &= ~RTC_BATTERY_DEAD;
|
||||
pci_write_config8(dev, GEN_PMCON_3, reg8);
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
elog_add_event(ELOG_TYPE_RTC_RESET);
|
||||
#endif
|
||||
}
|
||||
@@ -798,8 +798,8 @@ static void southbridge_fill_ssdt(struct device *device)
|
||||
static void lpc_final(struct device *dev)
|
||||
{
|
||||
/* Call SMM finalize() handlers before resume */
|
||||
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
|
||||
if (IS_ENABLED(CONFIG_INTEL_CHIPSET_LOCKDOWN) ||
|
||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
||||
if (CONFIG(INTEL_CHIPSET_LOCKDOWN) ||
|
||||
acpi_is_wakeup_s3()) {
|
||||
outb(APM_CNT_FINALIZE, APM_CNT);
|
||||
}
|
||||
|
@@ -40,7 +40,7 @@
|
||||
#include "me.h"
|
||||
#include "pch.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#endif
|
||||
|
||||
@@ -59,7 +59,7 @@ static const char *me_bios_path_values[] = {
|
||||
/* MMIO base address for MEI interface */
|
||||
static u32 *mei_base_address;
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
static void mei_dump(void *ptr, int dword, int offset, const char *type)
|
||||
{
|
||||
struct mei_csr *csr;
|
||||
@@ -470,7 +470,7 @@ static me_bios_path intel_me_path(struct device *dev)
|
||||
if (hfs.error_code || hfs.fpt_bad)
|
||||
path = ME_ERROR_BIOS_PATH;
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
if (path != ME_NORMAL_BIOS_PATH) {
|
||||
struct elog_event_data_me_extended data = {
|
||||
.current_working_state = hfs.working_state,
|
||||
@@ -559,7 +559,7 @@ static int intel_me_extend_valid(struct device *dev)
|
||||
}
|
||||
printk(BIOS_DEBUG, "\n");
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
/* Save hash in NVS for the OS to verify */
|
||||
chromeos_set_me_hash(extend, count);
|
||||
#endif
|
||||
|
@@ -62,7 +62,7 @@ int pch_silicon_type(void);
|
||||
int pch_silicon_supported(int type, int rev);
|
||||
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
|
||||
void gpi_route_interrupt(u8 gpi, u8 mode);
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
void pch_log_state(void);
|
||||
#endif
|
||||
#else /* __PRE_RAM__ */
|
||||
|
@@ -228,7 +228,7 @@ void southbridge_smm_init(void)
|
||||
u16 pm1_en;
|
||||
u32 gpe0_en;
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
/* Log events from chipset before clearing */
|
||||
pch_log_state();
|
||||
#endif
|
||||
|
@@ -430,7 +430,7 @@ static void southbridge_smi_sleep(void)
|
||||
/* Do any mainboard sleep handling */
|
||||
mainboard_smi_sleep(slp_typ);
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
/* Log S3, S4, and S5 entry */
|
||||
if (slp_typ >= ACPI_S3)
|
||||
elog_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
|
||||
@@ -532,7 +532,7 @@ static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
static void southbridge_smi_gsmi(void)
|
||||
{
|
||||
u32 *ret, *param;
|
||||
@@ -604,7 +604,7 @@ static void southbridge_smi_apmc(void)
|
||||
printk(BIOS_DEBUG, "SMI#: Setting GNVS to %p\n", gnvs);
|
||||
}
|
||||
break;
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
case APM_CNT_ELOG_GSMI:
|
||||
southbridge_smi_gsmi();
|
||||
break;
|
||||
@@ -628,7 +628,7 @@ static void southbridge_smi_pm1(void)
|
||||
// power button pressed
|
||||
u32 reg32;
|
||||
reg32 = (7 << 10) | (1 << 13);
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
elog_add_event(ELOG_TYPE_POWER_BUTTON);
|
||||
#endif
|
||||
outl(reg32, pmbase + PM1_CNT);
|
||||
|
@@ -96,7 +96,7 @@ Scope(\)
|
||||
#include "smbus.asl"
|
||||
|
||||
// Serial IO
|
||||
#if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP)
|
||||
#if CONFIG(INTEL_LYNXPOINT_LP)
|
||||
#include "serialio.asl"
|
||||
#include "lpt_lp.asl"
|
||||
#endif
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#include "pch.h"
|
||||
#include "chip.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP)
|
||||
#if CONFIG(INTEL_LYNXPOINT_LP)
|
||||
#include "lp_gpio.h"
|
||||
#else
|
||||
#include <southbridge/intel/common/gpio.h>
|
||||
@@ -127,7 +127,7 @@ int early_pch_init(const void *gpio_map,
|
||||
|
||||
pch_enable_bars();
|
||||
|
||||
#if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP)
|
||||
#if CONFIG(INTEL_LYNXPOINT_LP)
|
||||
setup_pch_lp_gpios(gpio_map);
|
||||
#else
|
||||
setup_pch_gpios(gpio_map);
|
||||
@@ -150,7 +150,7 @@ int early_pch_init(const void *gpio_map,
|
||||
|
||||
wake_from_s3 = sleep_type_s3();
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_BOOT_COUNT)
|
||||
#if CONFIG(ELOG_BOOT_COUNT)
|
||||
if (!wake_from_s3)
|
||||
boot_count_increment();
|
||||
#endif
|
||||
|
@@ -82,7 +82,7 @@ static void pch_enable_serial_irqs(struct device *dev)
|
||||
/* Set packet length and toggle silent mode bit for one frame. */
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#if !IS_ENABLED(CONFIG_SERIRQ_CONTINUOUS_MODE)
|
||||
#if !CONFIG(SERIRQ_CONTINUOUS_MODE)
|
||||
pci_write_config8(dev, SERIRQ_CNTL,
|
||||
(1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
|
||||
#endif
|
||||
@@ -490,7 +490,7 @@ static void enable_lp_clock_gating(struct device *dev)
|
||||
|
||||
static void pch_set_acpi_mode(void)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
if (!acpi_is_wakeup_s3()) {
|
||||
#if ENABLE_ACPI_MODE_IN_COREBOOT
|
||||
printk(BIOS_DEBUG, "Enabling ACPI via APMC:\n");
|
||||
@@ -754,7 +754,7 @@ static void southbridge_inject_dsdt(struct device *dev)
|
||||
gnvs->mpen = 1; /* Enable Multi Processing */
|
||||
gnvs->pcnt = dev_count_cpu();
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
chromeos_init_chromeos_acpi(&(gnvs->chromeos));
|
||||
#endif
|
||||
|
||||
@@ -976,7 +976,7 @@ static void lpc_final(struct device *dev)
|
||||
RCBA32(0x3898) = SPI_OPMENU_LOWER;
|
||||
RCBA32(0x389c) = SPI_OPMENU_UPPER;
|
||||
|
||||
if (acpi_is_wakeup_s3() || IS_ENABLED(CONFIG_INTEL_CHIPSET_LOCKDOWN))
|
||||
if (acpi_is_wakeup_s3() || CONFIG(INTEL_CHIPSET_LOCKDOWN))
|
||||
outb(APM_CNT_FINALIZE, APM_CNT);
|
||||
}
|
||||
|
||||
|
@@ -38,7 +38,7 @@
|
||||
#include "me.h"
|
||||
#include "pch.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
#include <vendorcode/google/chromeos/gnvs.h>
|
||||
#endif
|
||||
@@ -64,7 +64,7 @@ void intel_me_mbp_clear(pci_devfn_t dev);
|
||||
void intel_me_mbp_clear(struct device *dev);
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
static void mei_dump(void *ptr, int dword, int offset, const char *type)
|
||||
{
|
||||
struct mei_csr *csr;
|
||||
@@ -378,7 +378,7 @@ static int mei_recv_msg(void *header, int header_bytes,
|
||||
return mei_wait_for_me_ready();
|
||||
}
|
||||
|
||||
#if IS_ENABLED (CONFIG_DEBUG_INTEL_ME) || defined(__SMM__)
|
||||
#if CONFIG(DEBUG_INTEL_ME) || defined(__SMM__)
|
||||
static inline int mei_sendrecv_mkhi(struct mkhi_header *mkhi,
|
||||
void *req_data, int req_bytes,
|
||||
void *rsp_data, int rsp_bytes)
|
||||
@@ -480,7 +480,7 @@ static void me_print_fw_version(mbp_fw_version_name *vers_name)
|
||||
vers_name->hotfix_version, vers_name->build_version);
|
||||
}
|
||||
|
||||
#if IS_ENABLED (CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
static inline void print_cap(const char *name, int state)
|
||||
{
|
||||
printk(BIOS_DEBUG, "ME Capability: %-41s : %sabled\n",
|
||||
@@ -536,7 +536,7 @@ static void me_print_fwcaps(mbp_mefwcaps *cap)
|
||||
#endif /* CONFIG_DEBUG_INTEL_ME */
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS) && 0 /* DISABLED */
|
||||
#if CONFIG(CHROMEOS) && 0 /* DISABLED */
|
||||
/* Tell ME to issue a global reset */
|
||||
static int mkhi_global_reset(void)
|
||||
{
|
||||
@@ -596,7 +596,7 @@ void intel_me_finalize_smm(void)
|
||||
if (!mei_base_address || mei_base_address == (u32 *)0xfffffff0)
|
||||
return;
|
||||
|
||||
#if IS_ENABLED(CONFIG_ME_MBP_CLEAR_LATE)
|
||||
#if CONFIG(ME_MBP_CLEAR_LATE)
|
||||
/* Wait for ME MBP Cleared indicator */
|
||||
intel_me_mbp_clear(PCH_ME_DEV);
|
||||
#endif
|
||||
@@ -723,7 +723,7 @@ static me_bios_path intel_me_path(struct device *dev)
|
||||
path = ME_ERROR_BIOS_PATH;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
if (path != ME_NORMAL_BIOS_PATH) {
|
||||
struct elog_event_data_me_extended data = {
|
||||
.current_working_state = hfs.working_state,
|
||||
@@ -812,7 +812,7 @@ static int intel_me_extend_valid(struct device *dev)
|
||||
}
|
||||
printk(BIOS_DEBUG, "\n");
|
||||
|
||||
#if IS_ENABLED(CONFIG_CHROMEOS)
|
||||
#if CONFIG(CHROMEOS)
|
||||
/* Save hash in NVS for the OS to verify */
|
||||
chromeos_set_me_hash(extend, count);
|
||||
#endif
|
||||
@@ -851,7 +851,7 @@ static void intel_me_init(struct device *dev)
|
||||
|
||||
#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
|
||||
me_print_fw_version(mbp_data.fw_version_name);
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
me_print_fwcaps(mbp_data.fw_capabilities);
|
||||
#endif
|
||||
|
||||
@@ -1008,7 +1008,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data, struct device *dev)
|
||||
host.interrupt_generate = 1;
|
||||
write_host_csr(&host);
|
||||
|
||||
#if !IS_ENABLED(CONFIG_ME_MBP_CLEAR_LATE)
|
||||
#if !CONFIG(ME_MBP_CLEAR_LATE)
|
||||
/* Wait for the mbp_cleared indicator. */
|
||||
intel_me_mbp_clear(dev);
|
||||
#endif
|
||||
@@ -1017,7 +1017,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data, struct device *dev)
|
||||
#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
|
||||
printk(BIOS_INFO, "ME MBP: Header: items: %d, size dw: %d\n",
|
||||
mbp->header.num_entries, mbp->header.mbp_size);
|
||||
#if IS_ENABLED(CONFIG_DEBUG_INTEL_ME)
|
||||
#if CONFIG(DEBUG_INTEL_ME)
|
||||
for (i = 0; i < mbp->header.mbp_size - 1; i++) {
|
||||
printk(BIOS_INFO, "ME MBP: %04x: 0x%08x\n", i, mbp->data[i]);
|
||||
}
|
||||
|
@@ -72,7 +72,7 @@
|
||||
#define SMBUS_IO_BASE 0x0400
|
||||
#define SMBUS_SLAVE_ADDR 0x24
|
||||
|
||||
#if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP)
|
||||
#if CONFIG(INTEL_LYNXPOINT_LP)
|
||||
#define DEFAULT_PMBASE 0x1000
|
||||
#define DEFAULT_GPIOBASE 0x1400
|
||||
#define DEFAULT_GPIOSIZE 0x400
|
||||
@@ -177,7 +177,7 @@ void pch_disable_devfn(struct device *dev);
|
||||
u32 pch_iobp_read(u32 address);
|
||||
void pch_iobp_write(u32 address, u32 data);
|
||||
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
void pch_log_state(void);
|
||||
#endif
|
||||
void acpi_create_intel_hpet(acpi_hpet_t * hpet);
|
||||
|
@@ -26,7 +26,7 @@
|
||||
#include <console/console.h>
|
||||
#include "pch.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_INTEL_LYNXPOINT_LP)
|
||||
#if CONFIG(INTEL_LYNXPOINT_LP)
|
||||
#include "lp_gpio.h"
|
||||
#endif
|
||||
|
||||
|
@@ -28,7 +28,7 @@ void southbridge_smm_clear_state(void)
|
||||
{
|
||||
u32 smi_en;
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG)
|
||||
#if CONFIG(ELOG)
|
||||
/* Log events from chipset before clearing */
|
||||
pch_log_state();
|
||||
#endif
|
||||
|
@@ -135,13 +135,13 @@ static void southbridge_smi_sleep(void)
|
||||
mainboard_smi_sleep(slp_typ);
|
||||
|
||||
/* USB sleep preparations */
|
||||
#if !IS_ENABLED(CONFIG_FINALIZE_USB_ROUTE_XHCI)
|
||||
#if !CONFIG(FINALIZE_USB_ROUTE_XHCI)
|
||||
usb_ehci_sleep_prepare(PCH_EHCI1_DEV, slp_typ);
|
||||
usb_ehci_sleep_prepare(PCH_EHCI2_DEV, slp_typ);
|
||||
#endif
|
||||
usb_xhci_sleep_prepare(PCH_XHCI_DEV, slp_typ);
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
/* Log S3, S4, and S5 entry */
|
||||
if (slp_typ >= ACPI_S3)
|
||||
elog_add_event_byte(ELOG_TYPE_ACPI_ENTER, slp_typ);
|
||||
@@ -248,7 +248,7 @@ static em64t101_smm_state_save_area_t *smi_apmc_find_state_save(u8 cmd)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
static void southbridge_smi_gsmi(void)
|
||||
{
|
||||
u32 *ret, *param;
|
||||
@@ -333,7 +333,7 @@ static void southbridge_smi_apmc(void)
|
||||
case 0xca:
|
||||
usb_xhci_route_all();
|
||||
break;
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
case APM_CNT_ELOG_GSMI:
|
||||
southbridge_smi_gsmi();
|
||||
break;
|
||||
@@ -352,7 +352,7 @@ static void southbridge_smi_pm1(void)
|
||||
*/
|
||||
if (pm1_sts & PWRBTN_STS) {
|
||||
// power button pressed
|
||||
#if IS_ENABLED(CONFIG_ELOG_GSMI)
|
||||
#if CONFIG(ELOG_GSMI)
|
||||
elog_add_event(ELOG_TYPE_POWER_BUTTON);
|
||||
#endif
|
||||
disable_pm1_control(-1UL);
|
||||
|
@@ -143,7 +143,7 @@ static void ck804_early_setup(unsigned ck804_num, unsigned *busn,
|
||||
CK804_MB_SETUP
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
/*
|
||||
* Avoid crash (complete with severe memory corruption!) during initial CAR boot
|
||||
* in ck804_early_setup_x() on Fam10h systems by not touching 0x78.
|
||||
@@ -203,7 +203,7 @@ static void ck804_early_setup(unsigned ck804_num, unsigned *busn,
|
||||
/* SYSCTRL */
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 8, ~(0xff), ((0 << 4) | (0 << 2) | (0 << 0)),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 9, ~(0xff), ((0 << 4) | (1 << 2) | (1 << 0)),
|
||||
#if IS_ENABLED(CONFIG_CK804_USE_NIC)
|
||||
#if CONFIG(CK804_USE_NIC)
|
||||
RES_PCI_IO, CK804_DEV(0xa, 0, 0xf8), 0xffffffbf, 0x00000040,
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 19, ~(0xff), ((0 << 4) | (1 << 2) | (0 << 0)),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 3, ~(0xff), ((0 << 4) | (1 << 2) | (0 << 0)),
|
||||
@@ -211,12 +211,12 @@ static void ck804_early_setup(unsigned ck804_num, unsigned *busn,
|
||||
RES_PCI_IO, CK804_DEV(1, 0, 0xe4), ~(1 << 23), (1 << 23),
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_CK804_USE_ACI)
|
||||
#if CONFIG(CK804_USE_ACI)
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 0x0d, ~(0xff), ((0 << 4) | (2 << 2) | (0 << 0)),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 0x1a, ~(0xff), ((0 << 4) | (2 << 2) | (0 << 0)),
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_CK804_PCIE_PME_WAKE)
|
||||
#if CONFIG(CK804_PCIE_PME_WAKE)
|
||||
RES_PCI_IO, CK804_DEV(1, 0, 0xe4), 0xffffffff, 0x00400000,
|
||||
#else
|
||||
RES_PCI_IO, CK804_DEV(1, 0, 0xe4), 0xffbfffff, 0x00000000,
|
||||
@@ -285,7 +285,7 @@ static void ck804_early_setup(unsigned ck804_num, unsigned *busn,
|
||||
|
||||
RES_PORT_IO_32, ANACTRL_IO_BASE + 0xcc, ~((7 << 4) | (1 << 8)), (CONFIG_CK804B_PCI_E_X << 4) | (1 << 8),
|
||||
|
||||
#if IS_ENABLED(CONFIG_CK804_USE_NIC)
|
||||
#if CONFIG(CK804_USE_NIC)
|
||||
RES_PCI_IO, CK804_DEV(0xa, 0, 0xf8), 0xffffffbf, 0x00000040,
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 19, ~(0xff), ((0 << 4) | (1 << 2) | (0 << 0)),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0 + 3, ~(0xff), ((0 << 4) | (1 << 2) | (0 << 0)),
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#include <arch/acpi.h>
|
||||
#include "chip.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
|
||||
unsigned long acpi_fill_mcfg(unsigned long current)
|
||||
{
|
||||
|
@@ -297,7 +297,7 @@ static void ck804_lpc_enable_resources(struct device *dev)
|
||||
ck804_lpc_enable_childrens_resources(dev);
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
|
||||
static void southbridge_acpi_fill_ssdt_generator(struct device *device)
|
||||
{
|
||||
@@ -310,7 +310,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = ck804_lpc_read_resources,
|
||||
.set_resources = ck804_lpc_set_resources,
|
||||
.enable_resources = ck804_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.acpi_fill_ssdt_generator = southbridge_acpi_fill_ssdt_generator,
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
@@ -335,7 +335,7 @@ static struct device_operations lpc_slave_ops = {
|
||||
.read_resources = ck804_lpc_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_slave_init,
|
||||
|
@@ -24,7 +24,7 @@
|
||||
#include <delay.h>
|
||||
#include "mcp55.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_MCP55_USE_AZA)
|
||||
#if CONFIG(MCP55_USE_AZA)
|
||||
#define HDA_ICII_REG 0x68
|
||||
#define HDA_ICII_BUSY (1 << 0)
|
||||
#define HDA_ICII_VALID (1 << 1)
|
||||
@@ -203,7 +203,7 @@ static void codecs_init(struct device *dev, u8 *base, u32 codec_mask)
|
||||
|
||||
static void azalia_init(struct device *dev)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_MCP55_USE_AZA)
|
||||
#if CONFIG(MCP55_USE_AZA)
|
||||
u8 *base;
|
||||
u32 codec_mask, reg32;
|
||||
struct resource *res;
|
||||
|
@@ -245,7 +245,7 @@ static void mcp55_early_setup(unsigned mcp55_num, unsigned *busn,
|
||||
RES_PCI_IO, MCP55_DEV(6, 0, 0x74), 0xFFFFFFC0, 0x00000000,
|
||||
RES_PCI_IO, MCP55_DEV(6, 0, 0xC0), 0x00000000, 0xCB8410DE,
|
||||
RES_PCI_IO, MCP55_DEV(6, 0, 0xC4), 0xFFFFFFF8, 0x00000007,
|
||||
#if IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AMDFAM10)
|
||||
#if CONFIG(NORTHBRIDGE_AMD_AMDFAM10)
|
||||
/*
|
||||
* Avoid crash (complete with severe memory corruption!) during initial CAR boot
|
||||
* in mcp55_early_setup_x() on Fam10h systems by not touching 0x78.
|
||||
@@ -257,7 +257,7 @@ static void mcp55_early_setup(unsigned mcp55_num, unsigned *busn,
|
||||
RES_PCI_IO, MCP55_DEV(1, 0, 0x78), 0xC0FFFFFF, 0x19000000,
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_MCP55_USE_AZA)
|
||||
#if CONFIG(MCP55_USE_AZA)
|
||||
RES_PCI_IO, MCP55_DEV(6, 1, 0x40), 0x00000000, 0xCB8410DE,
|
||||
|
||||
#endif
|
||||
@@ -267,7 +267,7 @@ static void mcp55_early_setup(unsigned mcp55_num, unsigned *busn,
|
||||
MCP55_MB_SETUP
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_MCP55_USE_AZA)
|
||||
#if CONFIG(MCP55_USE_AZA)
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+ 21, ~(3 << 2), (2 << 2),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+ 22, ~(3 << 2), (2 << 2),
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+ 46, ~(3 << 2), (2 << 2),
|
||||
@@ -291,7 +291,7 @@ static void mcp55_early_setup(unsigned mcp55_num, unsigned *busn,
|
||||
|
||||
RES_PORT_IO_32, ANACTRL_IO_BASE + 0x60, 0xFFFFFF00, 0x00000012,
|
||||
|
||||
#if IS_ENABLED(CONFIG_MCP55_USE_NIC)
|
||||
#if CONFIG(MCP55_USE_NIC)
|
||||
RES_PCI_IO, MCP55_DEV(1, 1, 0xe4), ~((1 << 22) | (1 << 20)), (1 << 22) | (1 << 20),
|
||||
|
||||
RES_PORT_IO_8, SYSCTRL_IO_BASE + 0xc0+ 4, ~(0xff), ((0 << 4) | (1 << 2) | (0 << 0)),
|
||||
|
@@ -24,7 +24,7 @@
|
||||
#include <arch/acpi.h>
|
||||
#include "mcp55.h"
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
unsigned long acpi_fill_mcfg(unsigned long current)
|
||||
{
|
||||
/* Not implemented */
|
||||
|
@@ -32,7 +32,7 @@
|
||||
#include <cpu/x86/lapic.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <stdlib.h>
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
#include <arch/acpigen.h>
|
||||
#endif
|
||||
#include <cpu/amd/powernow.h>
|
||||
@@ -235,7 +235,7 @@ static void mcp55_lpc_enable_resources(struct device *dev)
|
||||
mcp55_lpc_enable_childrens_resources(dev);
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
static void southbridge_acpi_fill_ssdt_generator(struct device *device)
|
||||
{
|
||||
amd_generate_powernow(0, 0, 0);
|
||||
@@ -246,7 +246,7 @@ static struct device_operations lpc_ops = {
|
||||
.read_resources = mcp55_lpc_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = mcp55_lpc_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.acpi_fill_ssdt_generator = southbridge_acpi_fill_ssdt_generator,
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
@@ -274,7 +274,7 @@ static struct device_operations lpc_slave_ops = {
|
||||
.read_resources = mcp55_lpc_read_resources,
|
||||
.set_resources = pci_dev_set_resources,
|
||||
.enable_resources = pci_dev_enable_resources,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
.write_acpi_tables = acpi_write_hpet,
|
||||
#endif
|
||||
.init = lpc_slave_init,
|
||||
|
@@ -87,7 +87,7 @@ static struct smbus_bus_operations lops_smbus_bus = {
|
||||
.write_byte = lsmbus_write_byte,
|
||||
};
|
||||
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
unsigned pm_base;
|
||||
#endif
|
||||
|
||||
@@ -106,7 +106,7 @@ static void mcp55_sm_read_resources(struct device *dev)
|
||||
|
||||
static void mcp55_sm_init(struct device *dev)
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
struct resource *res;
|
||||
|
||||
res = find_resource(dev, 0x60);
|
||||
|
Reference in New Issue
Block a user