aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/digitallogic/msm800sev/mainboard.c
blob: 8bc24a43a3ac6281716e4405be071ecb8073b186 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#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 <cpu/x86/msr.h>
#include <cpu/amd/lxdef.h>
#include "chip.h"

#define DIVIL_LBAR_GPIO		0x5140000c
static void init_gpio()
 {
	msr_t msr;
	printk_debug("Initializing GPIO module...\n");

	// initialize the GPIO LBAR
	msr.lo = GPIO_BASE;
	msr.hi = 0x0000f001;
	wrmsr(DIVIL_LBAR_GPIO, msr);
	msr = rdmsr(DIVIL_LBAR_GPIO);
	printk_debug("DIVIL_LBAR_GPIO set to 0x%08x 0x%08x\n", msr.hi, msr.lo);
}


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__);

#if 0
	// 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);
#endif
	init_gpio();

	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("DIGITAL-LOGIC MSM800SEV Mainboard")
        .enable_dev = enable_dev,
};