aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/artecgroup/dbe61/rtl8139/rtl8139.c
blob: d3f0c5f776e33d08003fb4c5b223cbd48a10c626 (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
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
#undef __KERNEL__
#include <arch/io.h>
#include <string.h>
#include "chip.h"

void pci_level_irq(unsigned char intNum);

// initialize Realtek NIC

static void nic_initialize(device_t dev)
{
	struct drivers_pci_rtl8139_config *cfg = (struct drivers_pci_rtl8139_config*)dev->chip_info;
	uint16_t pciCmd = 0;

	printk_debug("RTL8139 initialize\n");

	dev->on_mainboard=1;
	pci_dev_init(dev);

	//  Set PCI IRQ descriptors. 
	//  This configures nothing (no magic done in VSA, too), only descriptors are set, 
	//  that are later read by operating system to find out which irq is used by dev.
	//  The real GPIO to IRQ mapping configuration takes place in cs5536.c
	//  and is configurable in Config.lb. 

	printk_debug("Setting NIC IRQ to %d\n", cfg->nic_irq);
	pci_write_config8(dev, PCI_INTERRUPT_LINE, cfg->nic_irq);
	pci_level_irq(cfg->nic_irq);
		
	// RTL8139 must have bus mastering for some data transfers
	pciCmd = pci_read_config16(dev, PCI_COMMAND);
	pciCmd |= (PCI_COMMAND_MASTER | PCI_COMMAND_IO);
	pci_write_config16(dev, PCI_COMMAND, pciCmd);
}

// device operations : on PCI device init, call nic_initialize

static struct device_operations drivers_pci_rtl8139_dev_ops = 
{
        .init             = nic_initialize,
        .read_resources   = pci_dev_read_resources,
        .set_resources    = pci_dev_set_resources,
		.enable_resources = pci_dev_enable_resources,        
		.scan_bus         = 0,
};


/* FIRST LOOP : traversing static.c list and enabling all chips found in there
 * set given device operations descriptor to call nic_initialize 
 * */

void nic_configure_pci(device_t dev)
{
	dev->ops = &drivers_pci_rtl8139_dev_ops;
}

// PCI NIC operations
struct chip_operations drivers_pci_rtl8139_ops = {
	.enable_dev	= nic_configure_pci,
};