nb/via/vx800: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: Ib432d3c3ce2788b0138a1b0e852385ab4f9b65ee Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26425 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
e58a782c11
commit
59b8e4f511
|
@ -94,7 +94,7 @@ static void pci_routing_fixup(struct device *dev)
|
||||||
printk(BIOS_SPEW, "%s: DONE\n", __FUNCTION__);
|
printk(BIOS_SPEW, "%s: DONE\n", __FUNCTION__);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setup_pm(device_t dev)
|
static void setup_pm(struct device *dev)
|
||||||
{
|
{
|
||||||
u16 tmp;
|
u16 tmp;
|
||||||
/* Debounce LID and PWRBTN# Inputs for 16ms. */
|
/* Debounce LID and PWRBTN# Inputs for 16ms. */
|
||||||
|
@ -274,7 +274,7 @@ static void vx800_sb_init(struct device *dev)
|
||||||
|
|
||||||
/* total kludge to get lxb to call our childrens set/enable functions - these are
|
/* total kludge to get lxb to call our childrens set/enable functions - these are
|
||||||
not called unless this device has a resource to set - so set a dummy one */
|
not called unless this device has a resource to set - so set a dummy one */
|
||||||
static void vx800_read_resources(device_t dev)
|
static void vx800_read_resources(struct device *dev)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct resource *resource;
|
struct resource *resource;
|
||||||
|
@ -287,7 +287,7 @@ static void vx800_read_resources(device_t dev)
|
||||||
resource->base = 0x2e;
|
resource->base = 0x2e;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void vx800_set_resources(device_t dev)
|
static void vx800_set_resources(struct device *dev)
|
||||||
{
|
{
|
||||||
struct resource *resource;
|
struct resource *resource;
|
||||||
resource = find_resource(dev, 1);
|
resource = find_resource(dev, 1);
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
/* !!FIXME!! I declared this to fix the build. */
|
/* !!FIXME!! I declared this to fix the build. */
|
||||||
u8 acpi_sleep_type = 0;
|
u8 acpi_sleep_type = 0;
|
||||||
|
|
||||||
static void memctrl_init(device_t dev)
|
static void memctrl_init(struct device *dev)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
set VGA in uma_ram_setting.c, not in this function.
|
set VGA in uma_ram_setting.c, not in this function.
|
||||||
|
@ -51,13 +51,13 @@ static const struct pci_driver memctrl_driver __pci_driver = {
|
||||||
.device = PCI_DEVICE_ID_VIA_VX855_MEMCTRL,
|
.device = PCI_DEVICE_ID_VIA_VX855_MEMCTRL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void pci_domain_set_resources(device_t dev)
|
static void pci_domain_set_resources(struct device *dev)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* the order is important to find the correct RAM size.
|
* the order is important to find the correct RAM size.
|
||||||
*/
|
*/
|
||||||
u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
|
u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
|
||||||
device_t mc_dev;
|
struct device *mc_dev;
|
||||||
u32 pci_tolm;
|
u32 pci_tolm;
|
||||||
u8 reg;
|
u8 reg;
|
||||||
|
|
||||||
|
@ -124,7 +124,7 @@ static struct device_operations pci_domain_ops = {
|
||||||
.scan_bus = pci_domain_scan_bus,
|
.scan_bus = pci_domain_scan_bus,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void cpu_bus_init(device_t dev)
|
static void cpu_bus_init(struct device *dev)
|
||||||
{
|
{
|
||||||
initialize_cpus(dev->link_list);
|
initialize_cpus(dev->link_list);
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,7 +72,7 @@ static int via_vx800_int15_handler(void)
|
||||||
* N: Frame Buffer Size 2^N MB
|
* N: Frame Buffer Size 2^N MB
|
||||||
*/
|
*/
|
||||||
u8 i;
|
u8 i;
|
||||||
device_t dev;
|
struct device *dev;
|
||||||
dev = dev_find_slot(0, PCI_DEVFN(0, 3));
|
dev = dev_find_slot(0, PCI_DEVFN(0, 3));
|
||||||
i = pci_read_config8(dev, 0xa1);
|
i = pci_read_config8(dev, 0xa1);
|
||||||
i = (i & 0x70);
|
i = (i & 0x70);
|
||||||
|
@ -124,7 +124,7 @@ static int via_vx800_int15_handler(void)
|
||||||
#ifdef UNUSED_CODE
|
#ifdef UNUSED_CODE
|
||||||
static void write_protect_vgabios(void)
|
static void write_protect_vgabios(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
struct device *dev;
|
||||||
|
|
||||||
printk(BIOS_INFO, "write_protect_vgabios\n");
|
printk(BIOS_INFO, "write_protect_vgabios\n");
|
||||||
/* there are two possible devices. Just do both. */
|
/* there are two possible devices. Just do both. */
|
||||||
|
@ -149,7 +149,7 @@ static void vga_enable_console(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
extern u8 acpi_sleep_type;
|
extern u8 acpi_sleep_type;
|
||||||
static void vga_init(device_t dev)
|
static void vga_init(struct device *dev)
|
||||||
{
|
{
|
||||||
uint8_t reg8;
|
uint8_t reg8;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue