sb/intel/i82801gx: Move SPIBASE and SPIBARxx to i82801gx.h
Also remove unused DEBUG_PERIODIC_SMIS macro. Change-Id: Ieb8487c7757b89a09c1cee4a83f94b9077dac87e Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69899 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
This commit is contained in:
parent
9f0e21a4da
commit
36d81dfbdb
|
@ -9,10 +9,13 @@
|
|||
|
||||
#include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
|
||||
|
||||
#ifndef __ACPI__
|
||||
#define DEBUG_PERIODIC_SMIS 0
|
||||
#define SPIBASE 0x3020
|
||||
#define SPIBAR16(x) RCBA16(SPIBASE + x)
|
||||
#define SPIBAR32(x) RCBA32(SPIBASE + x)
|
||||
|
||||
#ifndef __ACPI__
|
||||
#include <device/device.h>
|
||||
|
||||
void i82801gx_enable(struct device *dev);
|
||||
|
||||
void i82801gx_lpc_setup(void);
|
||||
|
|
|
@ -285,7 +285,6 @@ static void i82801gx_set_acpi_mode(struct device *dev)
|
|||
}
|
||||
}
|
||||
|
||||
#define SPIBASE 0x3020
|
||||
static void i82801gx_spi_init(void)
|
||||
{
|
||||
u16 spicontrol;
|
||||
|
@ -418,9 +417,6 @@ static void i82801gx_lpc_read_resources(struct device *dev)
|
|||
}
|
||||
}
|
||||
|
||||
#define SPIBAR16(x) RCBA16(0x3020 + x)
|
||||
#define SPIBAR32(x) RCBA32(0x3020 + x)
|
||||
|
||||
static void lpc_final(struct device *dev)
|
||||
{
|
||||
u16 tco1_cnt;
|
||||
|
|
Loading…
Reference in New Issue