northbridge/via/vx800: transition away from device_t
Replace the use of the old device_t definition inside northbridge/via/vx800. Change-Id: I14a2b4d847f8aeb327d90f385dea998779fae24f Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/17316 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
8e930c1036
commit
a2f1d18921
|
@ -128,7 +128,7 @@ static unsigned int get_spd_data(unsigned int dimm, unsigned int offset)
|
||||||
|
|
||||||
void enable_smbus(void)
|
void enable_smbus(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
|
|
||||||
dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855_LPC), 0);
|
dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855_LPC), 0);
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,8 @@ struct VIA_PCI_REG_INIT_TABLE {
|
||||||
u8 Value;
|
u8 Value;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void pci_modify_config8(device_t dev, unsigned where, u8 orval, u8 mask)
|
static void pci_modify_config8(pci_devfn_t dev, unsigned where, u8 orval,
|
||||||
|
u8 mask)
|
||||||
{
|
{
|
||||||
u8 data = pci_read_config8(dev, where);
|
u8 data = pci_read_config8(dev, where);
|
||||||
data &= (~mask);
|
data &= (~mask);
|
||||||
|
@ -43,7 +44,7 @@ static void via_pci_inittable(u8 chipversion,
|
||||||
const struct VIA_PCI_REG_INIT_TABLE *initdata)
|
const struct VIA_PCI_REG_INIT_TABLE *initdata)
|
||||||
{
|
{
|
||||||
u8 i = 0;
|
u8 i = 0;
|
||||||
device_t devbxdxfx;
|
pci_devfn_t devbxdxfx;
|
||||||
for (i = 0;; i++) {
|
for (i = 0;; i++) {
|
||||||
if ((initdata[i].Mask == 0) && (initdata[i].Value == 0)
|
if ((initdata[i].Mask == 0) && (initdata[i].Value == 0)
|
||||||
&& (initdata[i].Bus == 0)
|
&& (initdata[i].Bus == 0)
|
||||||
|
|
|
@ -65,7 +65,7 @@ void SetUMARam(void)
|
||||||
{
|
{
|
||||||
#if 1
|
#if 1
|
||||||
u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
|
u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
|
||||||
device_t vga_dev = PCI_DEV(0, 1, 0), d0f0_dev = PCI_DEV(0, 0, 0);
|
pci_devfn_t vga_dev = PCI_DEV(0, 1, 0), d0f0_dev = PCI_DEV(0, 0, 0);
|
||||||
u8 ByteVal, temp;
|
u8 ByteVal, temp;
|
||||||
const UMARAM *pUMARamTable;
|
const UMARAM *pUMARamTable;
|
||||||
u16 UmaSize;
|
u16 UmaSize;
|
||||||
|
|
Loading…
Reference in New Issue