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