]>
Commit | Line | Data |
---|---|---|
94e1a912 GH |
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 | ||
e8d40465 | 38 | #include "qemu/osdep.h" |
0b8fa32f | 39 | #include "qemu/module.h" |
1de7afc9 | 40 | #include "qemu/timer.h" |
f5980f75 | 41 | #include "hw/sparc/sparc32_dma.h" |
d6454270 | 42 | #include "migration/vmstate.h" |
76d28ca7 | 43 | #include "hw/net/lance.h" |
a27bd6c7 | 44 | #include "hw/qdev-properties.h" |
97bf4851 | 45 | #include "trace.h" |
ea3b3511 | 46 | #include "sysemu/sysemu.h" |
94e1a912 | 47 | |
94e1a912 GH |
48 | |
49 | static void parent_lance_reset(void *opaque, int irq, int level) | |
50 | { | |
51 | SysBusPCNetState *d = opaque; | |
52 | if (level) | |
53 | pcnet_h_reset(&d->state); | |
54 | } | |
55 | ||
a8170e5e | 56 | static void lance_mem_write(void *opaque, hwaddr addr, |
bd8d6f7c | 57 | uint64_t val, unsigned size) |
94e1a912 GH |
58 | { |
59 | SysBusPCNetState *d = opaque; | |
97bf4851 BS |
60 | |
61 | trace_lance_mem_writew(addr, val & 0xffff); | |
94e1a912 GH |
62 | pcnet_ioport_writew(&d->state, addr, val & 0xffff); |
63 | } | |
64 | ||
a8170e5e | 65 | static uint64_t lance_mem_read(void *opaque, hwaddr addr, |
bd8d6f7c | 66 | unsigned size) |
94e1a912 GH |
67 | { |
68 | SysBusPCNetState *d = opaque; | |
69 | uint32_t val; | |
70 | ||
71 | val = pcnet_ioport_readw(&d->state, addr); | |
97bf4851 | 72 | trace_lance_mem_readw(addr, val & 0xffff); |
94e1a912 GH |
73 | return val & 0xffff; |
74 | } | |
75 | ||
bd8d6f7c AK |
76 | static const MemoryRegionOps lance_mem_ops = { |
77 | .read = lance_mem_read, | |
78 | .write = lance_mem_write, | |
79 | .endianness = DEVICE_NATIVE_ENDIAN, | |
80 | .valid = { | |
81 | .min_access_size = 2, | |
82 | .max_access_size = 2, | |
83 | }, | |
94e1a912 GH |
84 | }; |
85 | ||
1fa51482 | 86 | static NetClientInfo net_lance_info = { |
f394b2e2 | 87 | .type = NET_CLIENT_DRIVER_NIC, |
1fa51482 | 88 | .size = sizeof(NICState), |
1fa51482 | 89 | .receive = pcnet_receive, |
e1c2008a | 90 | .link_status_changed = pcnet_set_link_status, |
1fa51482 MM |
91 | }; |
92 | ||
be73cfe2 JQ |
93 | static const VMStateDescription vmstate_lance = { |
94 | .name = "pcnet", | |
95 | .version_id = 3, | |
96 | .minimum_version_id = 2, | |
35d08458 | 97 | .fields = (VMStateField[]) { |
be73cfe2 JQ |
98 | VMSTATE_STRUCT(state, SysBusPCNetState, 0, vmstate_pcnet, PCNetState), |
99 | VMSTATE_END_OF_LIST() | |
100 | } | |
101 | }; | |
102 | ||
45099c42 | 103 | static void lance_realize(DeviceState *dev, Error **errp) |
94e1a912 | 104 | { |
45099c42 | 105 | SysBusDevice *sbd = SYS_BUS_DEVICE(dev); |
b1a2aaf7 | 106 | SysBusPCNetState *d = SYSBUS_PCNET(dev); |
94e1a912 GH |
107 | PCNetState *s = &d->state; |
108 | ||
eedfac6f PB |
109 | memory_region_init_io(&s->mmio, OBJECT(d), &lance_mem_ops, d, |
110 | "lance-mmio", 4); | |
94e1a912 | 111 | |
b1a2aaf7 | 112 | qdev_init_gpio_in(dev, parent_lance_reset, 1); |
94e1a912 | 113 | |
b1a2aaf7 | 114 | sysbus_init_mmio(sbd, &s->mmio); |
94e1a912 | 115 | |
b1a2aaf7 | 116 | sysbus_init_irq(sbd, &s->irq); |
94e1a912 GH |
117 | |
118 | s->phys_mem_read = ledma_memory_read; | |
119 | s->phys_mem_write = ledma_memory_write; | |
4c3b2245 | 120 | pcnet_common_init(dev, s, &net_lance_info); |
94e1a912 GH |
121 | } |
122 | ||
123 | static void lance_reset(DeviceState *dev) | |
124 | { | |
b1a2aaf7 | 125 | SysBusPCNetState *d = SYSBUS_PCNET(dev); |
94e1a912 GH |
126 | |
127 | pcnet_h_reset(&d->state); | |
128 | } | |
129 | ||
ea3b3511 GA |
130 | static void lance_instance_init(Object *obj) |
131 | { | |
132 | SysBusPCNetState *d = SYSBUS_PCNET(obj); | |
133 | PCNetState *s = &d->state; | |
134 | ||
135 | device_add_bootindex_property(obj, &s->conf.bootindex, | |
136 | "bootindex", "/ethernet-phy@0", | |
40c2281c | 137 | DEVICE(obj)); |
ea3b3511 GA |
138 | } |
139 | ||
999e12bb | 140 | static Property lance_properties[] = { |
4cc76287 MAL |
141 | DEFINE_PROP_LINK("dma", SysBusPCNetState, state.dma_opaque, |
142 | TYPE_DEVICE, DeviceState *), | |
999e12bb AL |
143 | DEFINE_NIC_PROPERTIES(SysBusPCNetState, state.conf), |
144 | DEFINE_PROP_END_OF_LIST(), | |
145 | }; | |
146 | ||
147 | static void lance_class_init(ObjectClass *klass, void *data) | |
148 | { | |
39bffca2 | 149 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb | 150 | |
45099c42 | 151 | dc->realize = lance_realize; |
125ee0ed | 152 | set_bit(DEVICE_CATEGORY_NETWORK, dc->categories); |
39bffca2 AL |
153 | dc->fw_name = "ethernet"; |
154 | dc->reset = lance_reset; | |
155 | dc->vmsd = &vmstate_lance; | |
4f67d30b | 156 | device_class_set_props(dc, lance_properties); |
999e12bb AL |
157 | } |
158 | ||
8c43a6f0 | 159 | static const TypeInfo lance_info = { |
b1a2aaf7 | 160 | .name = TYPE_LANCE, |
39bffca2 AL |
161 | .parent = TYPE_SYS_BUS_DEVICE, |
162 | .instance_size = sizeof(SysBusPCNetState), | |
163 | .class_init = lance_class_init, | |
ea3b3511 | 164 | .instance_init = lance_instance_init, |
94e1a912 GH |
165 | }; |
166 | ||
83f7d43a | 167 | static void lance_register_types(void) |
94e1a912 | 168 | { |
39bffca2 | 169 | type_register_static(&lance_info); |
94e1a912 | 170 | } |
83f7d43a AF |
171 | |
172 | type_init(lance_register_types) |