aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/via/epia/mainboard.c
blob: 91a81b52e433a9cf90c4a0f6354fd1c64280c43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>

#include <arch/io.h>
#include "chip.h"

static int
mainboard_scan_bus(device_t root, int maxbus) 
{
	int retval;
	printk_spew("%s: root %p maxbus %d\n", __FUNCTION__, root, maxbus);
	retval = pci_scan_bus(root->bus, 0, 0xff, maxbus);
	printk_spew("DONE %s: return %d\n", __FUNCTION__, maxbus);
	return maxbus;
}

static struct device_operations mainboard_operations = {
	.read_resources   = root_dev_read_resources,
	.set_resources    = root_dev_set_resources,
	.enable_resources = root_dev_enable_resources,
	.init             = root_dev_init,
	.scan_bus         = mainboard_scan_bus,
	.enable           = 0,
};

static void enable_dev(device_t dev)
{
	dev->ops = &mainboard_operations;
}

struct chip_operations mainboard_via_epia_control = {
	.enable_dev = enable_dev,
	.name       = "VIA EPIA mainboard ",
};