]> Git Repo - qemu.git/blame - hw/net/pcnet-pci.c
Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request'...
[qemu.git] / hw / net / pcnet-pci.c
CommitLineData
661a1799
PB
1/*
2 * QEMU AMD PC-Net II (Am79C970A) PCI 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
e8d40465 30#include "qemu/osdep.h"
83c9f4ca 31#include "hw/pci/pci.h"
1422e32d 32#include "net/net.h"
0b8fa32f 33#include "qemu/module.h"
1de7afc9 34#include "qemu/timer.h"
9c17d615 35#include "sysemu/dma.h"
ea3b3511 36#include "sysemu/sysemu.h"
32c95249 37#include "trace.h"
661a1799 38
47b43a1f 39#include "pcnet.h"
661a1799
PB
40
41//#define PCNET_DEBUG
42//#define PCNET_DEBUG_IO
43//#define PCNET_DEBUG_BCR
44//#define PCNET_DEBUG_CSR
45//#define PCNET_DEBUG_RMD
46//#define PCNET_DEBUG_TMD
47//#define PCNET_DEBUG_MATCH
48
1f8c7946
PC
49#define TYPE_PCI_PCNET "pcnet"
50
51#define PCI_PCNET(obj) \
52 OBJECT_CHECK(PCIPCNetState, (obj), TYPE_PCI_PCNET)
661a1799
PB
53
54typedef struct {
1f8c7946
PC
55 /*< private >*/
56 PCIDevice parent_obj;
57 /*< public >*/
58
661a1799 59 PCNetState state;
bd8d6f7c 60 MemoryRegion io_bar;
661a1799
PB
61} PCIPCNetState;
62
63static void pcnet_aprom_writeb(void *opaque, uint32_t addr, uint32_t val)
64{
65 PCNetState *s = opaque;
32c95249
DK
66
67 trace_pcnet_aprom_writeb(opaque, addr, val);
488a1a5d 68 if (BCR_APROMWE(s)) {
661a1799 69 s->prom[addr & 15] = val;
488a1a5d 70 }
661a1799
PB
71}
72
73static uint32_t pcnet_aprom_readb(void *opaque, uint32_t addr)
74{
75 PCNetState *s = opaque;
76 uint32_t val = s->prom[addr & 15];
32c95249
DK
77
78 trace_pcnet_aprom_readb(opaque, addr, val);
661a1799
PB
79 return val;
80}
81
a8170e5e 82static uint64_t pcnet_ioport_read(void *opaque, hwaddr addr,
bd8d6f7c 83 unsigned size)
661a1799 84{
bd8d6f7c 85 PCNetState *d = opaque;
661a1799 86
32c95249 87 trace_pcnet_ioport_read(opaque, addr, size);
7ba79741
JK
88 if (addr < 0x10) {
89 if (!BCR_DWIO(d) && size == 1) {
90 return pcnet_aprom_readb(d, addr);
91 } else if (!BCR_DWIO(d) && (addr & 1) == 0 && size == 2) {
92 return pcnet_aprom_readb(d, addr) |
93 (pcnet_aprom_readb(d, addr + 1) << 8);
94 } else if (BCR_DWIO(d) && (addr & 3) == 0 && size == 4) {
95 return pcnet_aprom_readb(d, addr) |
96 (pcnet_aprom_readb(d, addr + 1) << 8) |
97 (pcnet_aprom_readb(d, addr + 2) << 16) |
98 (pcnet_aprom_readb(d, addr + 3) << 24);
99 }
100 } else {
101 if (size == 2) {
102 return pcnet_ioport_readw(d, addr);
103 } else if (size == 4) {
104 return pcnet_ioport_readl(d, addr);
105 }
bd8d6f7c
AK
106 }
107 return ((uint64_t)1 << (size * 8)) - 1;
108}
661a1799 109
a8170e5e 110static void pcnet_ioport_write(void *opaque, hwaddr addr,
bd8d6f7c
AK
111 uint64_t data, unsigned size)
112{
113 PCNetState *d = opaque;
661a1799 114
32c95249 115 trace_pcnet_ioport_write(opaque, addr, data, size);
7ba79741
JK
116 if (addr < 0x10) {
117 if (!BCR_DWIO(d) && size == 1) {
118 pcnet_aprom_writeb(d, addr, data);
119 } else if (!BCR_DWIO(d) && (addr & 1) == 0 && size == 2) {
120 pcnet_aprom_writeb(d, addr, data & 0xff);
121 pcnet_aprom_writeb(d, addr + 1, data >> 8);
122 } else if (BCR_DWIO(d) && (addr & 3) == 0 && size == 4) {
123 pcnet_aprom_writeb(d, addr, data & 0xff);
124 pcnet_aprom_writeb(d, addr + 1, (data >> 8) & 0xff);
125 pcnet_aprom_writeb(d, addr + 2, (data >> 16) & 0xff);
126 pcnet_aprom_writeb(d, addr + 3, data >> 24);
127 }
128 } else {
129 if (size == 2) {
130 pcnet_ioport_writew(d, addr, data);
131 } else if (size == 4) {
132 pcnet_ioport_writel(d, addr, data);
133 }
bd8d6f7c 134 }
661a1799
PB
135}
136
bd8d6f7c
AK
137static const MemoryRegionOps pcnet_io_ops = {
138 .read = pcnet_ioport_read,
139 .write = pcnet_ioport_write,
a26405b3 140 .endianness = DEVICE_LITTLE_ENDIAN,
bd8d6f7c
AK
141};
142
661a1799
PB
143static const VMStateDescription vmstate_pci_pcnet = {
144 .name = "pcnet",
145 .version_id = 3,
146 .minimum_version_id = 2,
d49805ae 147 .fields = (VMStateField[]) {
1f8c7946 148 VMSTATE_PCI_DEVICE(parent_obj, PCIPCNetState),
661a1799
PB
149 VMSTATE_STRUCT(state, PCIPCNetState, 0, vmstate_pcnet, PCNetState),
150 VMSTATE_END_OF_LIST()
151 }
152};
153
154/* PCI interface */
155
bd8d6f7c 156static const MemoryRegionOps pcnet_mmio_ops = {
b187e20f
PM
157 .read = pcnet_ioport_read,
158 .write = pcnet_ioport_write,
5d026de8
PM
159 .valid.min_access_size = 1,
160 .valid.max_access_size = 4,
161 .impl.min_access_size = 1,
162 .impl.max_access_size = 4,
a26405b3 163 .endianness = DEVICE_LITTLE_ENDIAN,
661a1799
PB
164};
165
a8170e5e 166static void pci_physical_memory_write(void *dma_opaque, hwaddr addr,
661a1799
PB
167 uint8_t *buf, int len, int do_bswap)
168{
14fecf26 169 pci_dma_write(dma_opaque, addr, buf, len);
661a1799
PB
170}
171
a8170e5e 172static void pci_physical_memory_read(void *dma_opaque, hwaddr addr,
661a1799
PB
173 uint8_t *buf, int len, int do_bswap)
174{
14fecf26 175 pci_dma_read(dma_opaque, addr, buf, len);
661a1799
PB
176}
177
f90c2bcd 178static void pci_pcnet_uninit(PCIDevice *dev)
661a1799 179{
1f8c7946 180 PCIPCNetState *d = PCI_PCNET(dev);
661a1799 181
9e64f8a3 182 qemu_free_irq(d->state.irq);
bc72ad67
AB
183 timer_del(d->state.poll_timer);
184 timer_free(d->state.poll_timer);
948ecf21 185 qemu_del_nic(d->state.nic);
661a1799
PB
186}
187
188static NetClientInfo net_pci_pcnet_info = {
f394b2e2 189 .type = NET_CLIENT_DRIVER_NIC,
661a1799 190 .size = sizeof(NICState),
661a1799 191 .receive = pcnet_receive,
e1c2008a 192 .link_status_changed = pcnet_set_link_status,
661a1799
PB
193};
194
eb1bef94 195static void pci_pcnet_realize(PCIDevice *pci_dev, Error **errp)
661a1799 196{
1f8c7946 197 PCIPCNetState *d = PCI_PCNET(pci_dev);
661a1799
PB
198 PCNetState *s = &d->state;
199 uint8_t *pci_conf;
200
201#if 0
202 printf("sizeof(RMD)=%d, sizeof(TMD)=%d\n",
203 sizeof(struct pcnet_RMD), sizeof(struct pcnet_TMD));
204#endif
205
206 pci_conf = pci_dev->config;
207
661a1799
PB
208 pci_set_word(pci_conf + PCI_STATUS,
209 PCI_STATUS_FAST_BACK | PCI_STATUS_DEVSEL_MEDIUM);
661a1799
PB
210
211 pci_set_word(pci_conf + PCI_SUBSYSTEM_VENDOR_ID, 0x0);
212 pci_set_word(pci_conf + PCI_SUBSYSTEM_ID, 0x0);
213
817e0b6f 214 pci_conf[PCI_INTERRUPT_PIN] = 1; /* interrupt pin A */
661a1799
PB
215 pci_conf[PCI_MIN_GNT] = 0x06;
216 pci_conf[PCI_MAX_LAT] = 0xff;
217
218 /* Handler for memory-mapped I/O */
eedfac6f
PB
219 memory_region_init_io(&d->state.mmio, OBJECT(d), &pcnet_mmio_ops, s,
220 "pcnet-mmio", PCNET_PNPMMIO_SIZE);
661a1799 221
eedfac6f 222 memory_region_init_io(&d->io_bar, OBJECT(d), &pcnet_io_ops, s, "pcnet-io",
bd8d6f7c 223 PCNET_IOPORT_SIZE);
e824b2cc 224 pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &d->io_bar);
661a1799 225
e824b2cc 226 pci_register_bar(pci_dev, 1, 0, &s->mmio);
661a1799 227
9e64f8a3 228 s->irq = pci_allocate_irq(pci_dev);
661a1799
PB
229 s->phys_mem_read = pci_physical_memory_read;
230 s->phys_mem_write = pci_physical_memory_write;
14fecf26 231 s->dma_opaque = pci_dev;
661a1799 232
4c3b2245 233 pcnet_common_init(DEVICE(pci_dev), s, &net_pci_pcnet_info);
661a1799
PB
234}
235
236static void pci_reset(DeviceState *dev)
237{
1f8c7946 238 PCIPCNetState *d = PCI_PCNET(dev);
661a1799
PB
239
240 pcnet_h_reset(&d->state);
241}
242
ea3b3511
GA
243static void pcnet_instance_init(Object *obj)
244{
245 PCIPCNetState *d = PCI_PCNET(obj);
246 PCNetState *s = &d->state;
247
248 device_add_bootindex_property(obj, &s->conf.bootindex,
249 "bootindex", "/ethernet-phy@0",
250 DEVICE(obj), NULL);
251}
252
40021f08
AL
253static Property pcnet_properties[] = {
254 DEFINE_NIC_PROPERTIES(PCIPCNetState, state.conf),
255 DEFINE_PROP_END_OF_LIST(),
256};
257
258static void pcnet_class_init(ObjectClass *klass, void *data)
259{
39bffca2 260 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
261 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
262
eb1bef94 263 k->realize = pci_pcnet_realize;
40021f08 264 k->exit = pci_pcnet_uninit;
c45e5b5b 265 k->romfile = "efi-pcnet.rom",
40021f08
AL
266 k->vendor_id = PCI_VENDOR_ID_AMD;
267 k->device_id = PCI_DEVICE_ID_AMD_LANCE;
268 k->revision = 0x10;
269 k->class_id = PCI_CLASS_NETWORK_ETHERNET;
39bffca2
AL
270 dc->reset = pci_reset;
271 dc->vmsd = &vmstate_pci_pcnet;
272 dc->props = pcnet_properties;
125ee0ed 273 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
40021f08
AL
274}
275
8c43a6f0 276static const TypeInfo pcnet_info = {
1f8c7946 277 .name = TYPE_PCI_PCNET,
39bffca2
AL
278 .parent = TYPE_PCI_DEVICE,
279 .instance_size = sizeof(PCIPCNetState),
280 .class_init = pcnet_class_init,
ea3b3511 281 .instance_init = pcnet_instance_init,
fd3b02c8
EH
282 .interfaces = (InterfaceInfo[]) {
283 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
284 { },
285 },
661a1799
PB
286};
287
83f7d43a 288static void pci_pcnet_register_types(void)
661a1799 289{
39bffca2 290 type_register_static(&pcnet_info);
661a1799
PB
291}
292
83f7d43a 293type_init(pci_pcnet_register_types)
This page took 0.600394 seconds and 4 git commands to generate.