sb/intel/i82801ax: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I5c18fdc24bd0432f6b7a1131af68c792d377c3ac Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26252 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
97e8b754bf
commit
152f1c918f
|
@ -21,10 +21,10 @@
|
||||||
#include <device/pci.h>
|
#include <device/pci.h>
|
||||||
#include "i82801ax.h"
|
#include "i82801ax.h"
|
||||||
|
|
||||||
void i82801ax_enable(device_t dev)
|
void i82801ax_enable(struct device *dev)
|
||||||
{
|
{
|
||||||
u16 reg16, index;
|
u16 reg16, index;
|
||||||
device_t lpc_dev;
|
struct device *lpc_dev;
|
||||||
|
|
||||||
/* Search for the 82801AA/AB LPC device (D31:F0) on PCI bus 0. */
|
/* Search for the 82801AA/AB LPC device (D31:F0) on PCI bus 0. */
|
||||||
lpc_dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
|
lpc_dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
#if !defined(__PRE_RAM__)
|
#if !defined(__PRE_RAM__)
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
void i82801ax_enable(device_t dev);
|
void i82801ax_enable(struct device *dev);
|
||||||
#else
|
#else
|
||||||
void enable_smbus(void);
|
void enable_smbus(void);
|
||||||
int smbus_read_byte(u8 device, u8 address);
|
int smbus_read_byte(u8 device, u8 address);
|
||||||
|
|
|
@ -118,7 +118,7 @@ static void i82801ax_enable_serial_irqs(struct device *dev)
|
||||||
/* TODO: Explain/#define the real meaning of these magic numbers. */
|
/* TODO: Explain/#define the real meaning of these magic numbers. */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void i82801ax_pirq_init(device_t dev)
|
static void i82801ax_pirq_init(struct device *dev)
|
||||||
{
|
{
|
||||||
u8 reg8;
|
u8 reg8;
|
||||||
config_t *config = dev->chip_info;
|
config_t *config = dev->chip_info;
|
||||||
|
@ -136,7 +136,7 @@ static void i82801ax_pirq_init(device_t dev)
|
||||||
pci_write_config8(dev, PIRQD_ROUT, reg8);
|
pci_write_config8(dev, PIRQD_ROUT, reg8);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void i82801ax_power_options(device_t dev)
|
static void i82801ax_power_options(struct device *dev)
|
||||||
{
|
{
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
int pwr_on = -1;
|
int pwr_on = -1;
|
||||||
|
@ -166,7 +166,7 @@ static void i82801ax_power_options(device_t dev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gpio_init(device_t dev)
|
static void gpio_init(struct device *dev)
|
||||||
{
|
{
|
||||||
pci_write_config32(dev, GPIO_BASE, (GPIO_BASE_ADDR | 1));
|
pci_write_config32(dev, GPIO_BASE, (GPIO_BASE_ADDR | 1));
|
||||||
pci_write_config8(dev, GPIO_CNTL, GPIO_EN);
|
pci_write_config8(dev, GPIO_CNTL, GPIO_EN);
|
||||||
|
@ -207,7 +207,7 @@ static void i82801ax_lpc_route_dma(struct device *dev, uint8_t mask)
|
||||||
pci_write_config16(dev, PCI_DMA_CFG, reg16);
|
pci_write_config16(dev, PCI_DMA_CFG, reg16);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void i82801ax_lpc_decode_en(device_t dev)
|
static void i82801ax_lpc_decode_en(struct device *dev)
|
||||||
{
|
{
|
||||||
/* Decode 0x3F8-0x3FF (COM1) for COMA port, 0x2F8-0x2FF (COM2) for COMB.
|
/* Decode 0x3F8-0x3FF (COM1) for COMA port, 0x2F8-0x2FF (COM2) for COMB.
|
||||||
* LPT decode defaults to 0x378-0x37F and 0x778-0x77F.
|
* LPT decode defaults to 0x378-0x37F and 0x778-0x77F.
|
||||||
|
@ -251,7 +251,7 @@ static void lpc_init(struct device *dev)
|
||||||
i82801ax_lpc_decode_en(dev);
|
i82801ax_lpc_decode_en(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void i82801ax_lpc_read_resources(device_t dev)
|
static void i82801ax_lpc_read_resources(struct device *dev)
|
||||||
{
|
{
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include <southbridge/intel/common/smbus.h>
|
#include <southbridge/intel/common/smbus.h>
|
||||||
#include "i82801ax.h"
|
#include "i82801ax.h"
|
||||||
|
|
||||||
static int lsmbus_read_byte(device_t dev, u8 address)
|
static int lsmbus_read_byte(struct device *dev, u8 address)
|
||||||
{
|
{
|
||||||
u16 device;
|
u16 device;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
void watchdog_off(void)
|
void watchdog_off(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
struct device *dev;
|
||||||
unsigned long value, base;
|
unsigned long value, base;
|
||||||
|
|
||||||
/* Turn off the ICH5 watchdog. */
|
/* Turn off the ICH5 watchdog. */
|
||||||
|
|
Loading…
Reference in New Issue