]>
Commit | Line | Data |
---|---|---|
9453c5bc GH |
1 | /* |
2 | * QEMU NE2000 emulation -- isa bus windup | |
3 | * | |
4 | * Copyright (c) 2003-2004 Fabrice Bellard | |
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 | #include "hw.h" | |
25 | #include "pc.h" | |
26 | #include "isa.h" | |
27 | #include "qdev.h" | |
28 | #include "net.h" | |
29 | #include "ne2000.h" | |
30 | ||
31 | typedef struct ISANE2000State { | |
32 | ISADevice dev; | |
33 | uint32_t iobase; | |
34 | uint32_t isairq; | |
35 | NE2000State ne2000; | |
36 | } ISANE2000State; | |
37 | ||
38 | static void isa_ne2000_cleanup(VLANClientState *vc) | |
39 | { | |
40 | NE2000State *s = vc->opaque; | |
41 | ISANE2000State *isa = container_of(s, ISANE2000State, ne2000); | |
42 | ||
43 | unregister_savevm("ne2000", s); | |
44 | ||
45 | isa_unassign_ioport(isa->iobase, 16); | |
46 | isa_unassign_ioport(isa->iobase + 0x10, 2); | |
47 | isa_unassign_ioport(isa->iobase + 0x1f, 1); | |
9453c5bc GH |
48 | } |
49 | ||
50 | static int isa_ne2000_initfn(ISADevice *dev) | |
51 | { | |
52 | ISANE2000State *isa = DO_UPCAST(ISANE2000State, dev, dev); | |
53 | NE2000State *s = &isa->ne2000; | |
54 | ||
55 | register_ioport_write(isa->iobase, 16, 1, ne2000_ioport_write, s); | |
56 | register_ioport_read(isa->iobase, 16, 1, ne2000_ioport_read, s); | |
57 | ||
58 | register_ioport_write(isa->iobase + 0x10, 1, 1, ne2000_asic_ioport_write, s); | |
59 | register_ioport_read(isa->iobase + 0x10, 1, 1, ne2000_asic_ioport_read, s); | |
60 | register_ioport_write(isa->iobase + 0x10, 2, 2, ne2000_asic_ioport_write, s); | |
61 | register_ioport_read(isa->iobase + 0x10, 2, 2, ne2000_asic_ioport_read, s); | |
62 | ||
63 | register_ioport_write(isa->iobase + 0x1f, 1, 1, ne2000_reset_ioport_write, s); | |
64 | register_ioport_read(isa->iobase + 0x1f, 1, 1, ne2000_reset_ioport_read, s); | |
65 | ||
66 | isa_init_irq(dev, &s->irq, isa->isairq); | |
67 | ||
68 | qdev_get_macaddr(&dev->qdev, s->macaddr); | |
69 | ne2000_reset(s); | |
70 | ||
71 | s->vc = qdev_get_vlan_client(&dev->qdev, | |
72 | ne2000_can_receive, ne2000_receive, NULL, | |
73 | isa_ne2000_cleanup, s); | |
74 | qemu_format_nic_info_str(s->vc, s->macaddr); | |
75 | ||
76 | register_savevm("ne2000", -1, 2, ne2000_save, ne2000_load, s); | |
77 | return 0; | |
78 | } | |
79 | ||
80 | void isa_ne2000_init(int base, int irq, NICInfo *nd) | |
81 | { | |
82 | ISADevice *dev; | |
83 | ||
84 | qemu_check_nic_model(nd, "ne2k_isa"); | |
85 | ||
86 | dev = isa_create("ne2k_isa"); | |
87 | dev->qdev.nd = nd; /* hack alert */ | |
88 | qdev_prop_set_uint32(&dev->qdev, "iobase", base); | |
89 | qdev_prop_set_uint32(&dev->qdev, "irq", irq); | |
90 | qdev_init(&dev->qdev); | |
91 | } | |
92 | ||
93 | static ISADeviceInfo ne2000_isa_info = { | |
94 | .qdev.name = "ne2k_isa", | |
95 | .qdev.size = sizeof(ISANE2000State), | |
96 | .init = isa_ne2000_initfn, | |
97 | .qdev.props = (Property[]) { | |
98 | DEFINE_PROP_HEX32("iobase", ISANE2000State, iobase, 0x300), | |
99 | DEFINE_PROP_UINT32("irq", ISANE2000State, isairq, 9), | |
100 | DEFINE_PROP_END_OF_LIST(), | |
101 | }, | |
102 | }; | |
103 | ||
104 | static void ne2000_isa_register_devices(void) | |
105 | { | |
106 | isa_qdev_register(&ne2000_isa_info); | |
107 | } | |
108 | ||
109 | device_init(ne2000_isa_register_devices) |