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
39
40
41
42
43
44
45
46
47
48
49
|
#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 void init(struct device *dev)
{
unsigned bus = 0;
unsigned devNic = PCI_DEVFN(0xd, 0);
unsigned devUsb = PCI_DEVFN(0xf, 4);
device_t usb = NULL, nic = NULL;
unsigned char irqUsb = 0xa, irqNic = 0xb;
printk_debug("DIGITALLOGIC MSM800SSEV ENTER %s\n", __FUNCTION__);
// FIXME: do we need to initialize USB OHCI this way?
printk_debug("%s (%x,%x) set USB PCI interrupt line to %d\n",
__FUNCTION__, bus, devUsb, irqUsb);
// initialize the USB controller
usb = dev_find_slot(bus, devUsb);
if (!usb) printk_err("Could not find USB\n");
else pci_write_config8(usb, PCI_INTERRUPT_LINE, irqUsb);
printk_debug("%s (%x,%x) set NIC PCI interrupt line to %d\n",
__FUNCTION__, bus, devNic, irqNic);
// initialize theEEPRO 100
nic = dev_find_slot(bus, devNic);
if (!nic) printk_err("Could not find USB\n");
else pci_write_config8(nic, PCI_INTERRUPT_LINE, irqNic);
printk_debug("DIGITALLOGIC MSM800SSEV EXIT %s\n", __FUNCTION__);
}
static void enable_dev(struct device *dev)
{
dev->ops->init = init;
}
struct chip_operations mainboard_digitallogic_msm800sev_ops = {
CHIP_NAME("digitallogip msm800sev mainboard ")
.enable_dev = enable_dev,
};
|