Statistics
| Branch: | Revision:

root / hw / lance.c @ 94e1a912

History | View | Annotate | Download (4.1 kB)

1
/*
2
 * QEMU AMD PC-Net II (Am79C970A) emulation
3
 *
4
 * Copyright (c) 2004 Antony T Curtis
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 * of this software and associated documentation files (the "Software"), to deal
8
 * in the Software without restriction, including without limitation the rights
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 * copies of the Software, and to permit persons to whom the Software is
11
 * furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 * THE SOFTWARE.
23
 */
24

    
25
/* This software was written to be compatible with the specification:
26
 * AMD Am79C970A PCnet-PCI II Ethernet Controller Data-Sheet
27
 * AMD Publication# 19436  Rev:E  Amendment/0  Issue Date: June 2000
28
 */
29

    
30
/*
31
 * On Sparc32, this is the Lance (Am7990) part of chip STP2000 (Master I/O), also
32
 * produced as NCR89C100. See
33
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C100.txt
34
 * and
35
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR92C990.txt
36
 */
37

    
38
#include "sysbus.h"
39
#include "net.h"
40
#include "qemu-timer.h"
41
#include "qemu_socket.h"
42
#include "sun4m.h"
43

    
44
#include "pcnet.h"
45

    
46
typedef struct {
47
    SysBusDevice busdev;
48
    PCNetState state;
49
} SysBusPCNetState;
50

    
51
static void parent_lance_reset(void *opaque, int irq, int level)
52
{
53
    SysBusPCNetState *d = opaque;
54
    if (level)
55
        pcnet_h_reset(&d->state);
56
}
57

    
58
static void lance_mem_writew(void *opaque, target_phys_addr_t addr,
59
                             uint32_t val)
60
{
61
    SysBusPCNetState *d = opaque;
62
#ifdef PCNET_DEBUG_IO
63
    printf("lance_mem_writew addr=" TARGET_FMT_plx " val=0x%04x\n", addr,
64
           val & 0xffff);
65
#endif
66
    pcnet_ioport_writew(&d->state, addr, val & 0xffff);
67
}
68

    
69
static uint32_t lance_mem_readw(void *opaque, target_phys_addr_t addr)
70
{
71
    SysBusPCNetState *d = opaque;
72
    uint32_t val;
73

    
74
    val = pcnet_ioport_readw(&d->state, addr);
75
#ifdef PCNET_DEBUG_IO
76
    printf("lance_mem_readw addr=" TARGET_FMT_plx " val = 0x%04x\n", addr,
77
           val & 0xffff);
78
#endif
79

    
80
    return val & 0xffff;
81
}
82

    
83
static CPUReadMemoryFunc * const lance_mem_read[3] = {
84
    NULL,
85
    lance_mem_readw,
86
    NULL,
87
};
88

    
89
static CPUWriteMemoryFunc * const lance_mem_write[3] = {
90
    NULL,
91
    lance_mem_writew,
92
    NULL,
93
};
94

    
95
static void lance_cleanup(VLANClientState *vc)
96
{
97
    PCNetState *d = vc->opaque;
98

    
99
    pcnet_common_cleanup(d);
100
}
101

    
102
static int lance_init(SysBusDevice *dev)
103
{
104
    SysBusPCNetState *d = FROM_SYSBUS(SysBusPCNetState, dev);
105
    PCNetState *s = &d->state;
106

    
107
    s->mmio_index =
108
        cpu_register_io_memory(lance_mem_read, lance_mem_write, d);
109

    
110
    qdev_init_gpio_in(&dev->qdev, parent_lance_reset, 1);
111

    
112
    sysbus_init_mmio(dev, 4, s->mmio_index);
113

    
114
    sysbus_init_irq(dev, &s->irq);
115

    
116
    s->phys_mem_read = ledma_memory_read;
117
    s->phys_mem_write = ledma_memory_write;
118

    
119
    register_savevm("pcnet", -1, 3, pcnet_save, pcnet_load, s);
120
    return pcnet_common_init(&dev->qdev, s, lance_cleanup);
121
}
122

    
123
static void lance_reset(DeviceState *dev)
124
{
125
    SysBusPCNetState *d = DO_UPCAST(SysBusPCNetState, busdev.qdev, dev);
126

    
127
    pcnet_h_reset(&d->state);
128
}
129

    
130
static SysBusDeviceInfo lance_info = {
131
    .init       = lance_init,
132
    .qdev.name  = "lance",
133
    .qdev.size  = sizeof(SysBusPCNetState),
134
    .qdev.reset = lance_reset,
135
    .qdev.props = (Property[]) {
136
        DEFINE_PROP_PTR("dma", SysBusPCNetState, state.dma_opaque),
137
        DEFINE_NIC_PROPERTIES(SysBusPCNetState, state.conf),
138
        DEFINE_PROP_END_OF_LIST(),
139
    }
140
};
141

    
142
static void lance_register_devices(void)
143
{
144
    sysbus_register_withprop(&lance_info);
145
}
146
device_init(lance_register_devices)