X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fne2k.c;h=bbe80c0d6ed0ca0345484462b1ee17cd95d5796a;hb=ed487950f94cc28008dcf38f68f3e2a1472f9d93;hp=e535a1c1b5f083f1b0517abcc87405df122bca2b;hpb=37c18b2c2335a41c68c2f0b779fd2b7d51ab216d;p=palacios.git diff --git a/palacios/src/devices/ne2k.c b/palacios/src/devices/ne2k.c index e535a1c..bbe80c0 100644 --- a/palacios/src/devices/ne2k.c +++ b/palacios/src/devices/ne2k.c @@ -22,14 +22,16 @@ */ #include -#include +#include #include #include #include #include #include +#include +#include -#ifndef DEBUG_NE2K +#ifndef CONFIG_DEBUG_NE2K #undef PrintDebug #define PrintDebug(fmts, args...) #endif @@ -333,7 +335,7 @@ struct ne2k_context { #define compare_mac(src, dst) !memcmp(src, dst, 6) -#ifdef DEBUG_NE2K +#ifdef CONFIG_DEBUG_NE2K static void dump_state(struct vm_device * dev) { struct ne2k_context *nic_state = (struct ne2k_context *)dev->private_data; int i; @@ -358,7 +360,7 @@ static void dump_state(struct vm_device * dev) { static int ne2k_update_irq(struct vm_device *dev) { - struct ne2k_context * nic_state = (struct ne2k_context *)dev->private_data; + struct ne2k_context * nic_state = (struct ne2k_context *)(dev->private_data); struct pci_device * pci_dev = nic_state->pci_dev; int irq_line = 0; @@ -366,7 +368,7 @@ static int ne2k_update_irq(struct vm_device *dev) { PrintDebug("Ne2k: Device %p is not attached to any PCI Bus\n", nic_state); irq_line = NE2K_DEFAULT_IRQ; } else { - irq_line = pdev->config_header.intr_line; + irq_line = pci_dev->config_header.intr_line; } if (irq_line == 0){ @@ -380,7 +382,7 @@ static int ne2k_update_irq(struct vm_device *dev) { // The top bit of the ISR/IMR is reserved and does not indicate and irq event // We mask the bit out of the irq pending check if ((nic_state->isr.val & nic_state->imr.val) & 0x7f) { - v3_raise_irq(nic_state->vm, irq_line); + v3_raise_virq(nic_state->vm, irq_line); PrintDebug("Ne2k: RaiseIrq: isr: 0x%02x imr: 0x%02x\n", nic_state->isr.val, nic_state->imr.val); } @@ -396,7 +398,7 @@ static void ne2k_init_state(struct vm_device * dev) { nic_state->vm = dev->vm; - nic_state->isr.reset = 1; + nic_state->isr.reset_status = 1; nic_state->imr.val = 0x00; nic_state->cmd.val = 0x22; @@ -413,7 +415,7 @@ static void ne2k_init_state(struct vm_device * dev) { nic_state->mem[14] = 0x57; nic_state->mem[15] = 0x57; -#ifdef DEBUG_NE2K +#ifdef CONFIG_DEBUG_NE2K dump_state(dev); #endif @@ -508,7 +510,7 @@ static void ne2k_receive(struct vm_device * dev, const uchar_t * pkt, int length p = nic_state->mem + index; nic_state->rsr.val = 0; - nic_state->rsr.rx_pkt_ok = 1; + nic_state->rsr.pkt_rx_ok = 1; if (pkt[0] & 0x01) { nic_state->rsr.phy = 1; @@ -558,7 +560,7 @@ static int netif_input(uchar_t *pkt, uint_t size) { static const uchar_t brocast_mac[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; int i; -#ifdef DEBUG_NE2K +#ifdef CONFIG_DEBUG_NE2K PrintDebug("\nNe2k: Packet Received:\nSource:"); for (i = 6; i < 12; i++) { PrintDebug("%x ", pkt[i]); @@ -782,7 +784,7 @@ static int ne2k_cmd_write(uint16_t port, void * src, uint_t length, struct vm_de nic_state->cmd.val = *(uint8_t *)src; if (!(nic_state->cmd.stop)) { - nic_state->isr.reset = 0; + nic_state->isr.reset_status = 0; // if ((send pkt) && (dma byte count == 0)) @@ -1146,7 +1148,7 @@ static int ne2k_init_device(struct vm_device * dev) { } -#ifdef DEBUG_NE2K +#ifdef CONFIG_DEBUG_NE2K dump_state(dev); #endif