blob: f3455339eed84ce02884468be904140822c1888e [file] [log] [blame]
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +02001/*
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 */
Peter Maydelle8d40462016-01-26 18:17:11 +000024#include "qemu/osdep.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010025#include "hw/hw.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010026#include "hw/i386/pc.h"
27#include "hw/isa/isa.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010028#include "hw/qdev.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020029#include "net/net.h"
Paolo Bonzini47b43a12013-03-18 17:36:02 +010030#include "ne2000.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010031#include "exec/address-spaces.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010032#include "qapi/error.h"
Gonglei6cb08512014-10-07 16:00:15 +080033#include "qapi/visitor.h"
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020034
Andreas Färberfe6f5de2013-04-27 22:18:44 +020035#define TYPE_ISA_NE2000 "ne2k_isa"
36#define ISA_NE2000(obj) OBJECT_CHECK(ISANE2000State, (obj), TYPE_ISA_NE2000)
37
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020038typedef struct ISANE2000State {
Andreas Färberfe6f5de2013-04-27 22:18:44 +020039 ISADevice parent_obj;
40
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020041 uint32_t iobase;
42 uint32_t isairq;
43 NE2000State ne2000;
44} ISANE2000State;
45
Mark McLoughlin1c2045b2009-11-25 18:49:14 +000046static NetClientInfo net_ne2000_isa_info = {
Eric Blakef394b2e2016-07-13 21:50:23 -060047 .type = NET_CLIENT_DRIVER_NIC,
Mark McLoughlin1c2045b2009-11-25 18:49:14 +000048 .size = sizeof(NICState),
Mark McLoughlin1c2045b2009-11-25 18:49:14 +000049 .receive = ne2000_receive,
Mark McLoughlin1c2045b2009-11-25 18:49:14 +000050};
51
Blue Swirld05ac8f2009-12-04 20:44:44 +000052static const VMStateDescription vmstate_isa_ne2000 = {
Juan Quintelabe73cfe2009-12-02 12:36:46 +010053 .name = "ne2000",
54 .version_id = 2,
55 .minimum_version_id = 0,
Juan Quintelad49805a2014-04-16 15:32:32 +020056 .fields = (VMStateField[]) {
Juan Quintelabe73cfe2009-12-02 12:36:46 +010057 VMSTATE_STRUCT(ne2000, ISANE2000State, 0, vmstate_ne2000, NE2000State),
58 VMSTATE_END_OF_LIST()
59 }
60};
61
Andreas Färberdb895a12012-11-25 02:37:14 +010062static void isa_ne2000_realizefn(DeviceState *dev, Error **errp)
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020063{
Andreas Färberdb895a12012-11-25 02:37:14 +010064 ISADevice *isadev = ISA_DEVICE(dev);
Andreas Färberfe6f5de2013-04-27 22:18:44 +020065 ISANE2000State *isa = ISA_NE2000(dev);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020066 NE2000State *s = &isa->ne2000;
67
Paolo Bonzinidcb117b2013-06-25 15:04:35 +020068 ne2000_setup_io(s, DEVICE(isadev), 0x20);
Andreas Färberdb895a12012-11-25 02:37:14 +010069 isa_register_ioport(isadev, &s->io, isa->iobase);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020070
Andreas Färberdb895a12012-11-25 02:37:14 +010071 isa_init_irq(isadev, &s->irq, isa->isairq);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020072
Gerd Hoffmann93db6682009-10-21 15:25:27 +020073 qemu_macaddr_default_if_unset(&s->c.macaddr);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020074 ne2000_reset(s);
75
Mark McLoughlin1c2045b2009-11-25 18:49:14 +000076 s->nic = qemu_new_nic(&net_ne2000_isa_info, &s->c,
Andreas Färberdb895a12012-11-25 02:37:14 +010077 object_get_typename(OBJECT(dev)), dev->id, s);
Jason Wangb356f762013-01-30 19:12:22 +080078 qemu_format_nic_info_str(qemu_get_queue(s->nic), s->c.macaddr.a);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +020079}
80
Anthony Liguori39bffca2011-12-07 21:34:16 -060081static Property ne2000_isa_properties[] = {
Paolo Bonzinic7bcc852014-02-08 11:01:53 +010082 DEFINE_PROP_UINT32("iobase", ISANE2000State, iobase, 0x300),
Anthony Liguori39bffca2011-12-07 21:34:16 -060083 DEFINE_PROP_UINT32("irq", ISANE2000State, isairq, 9),
84 DEFINE_NIC_PROPERTIES(ISANE2000State, ne2000.c),
85 DEFINE_PROP_END_OF_LIST(),
86};
87
Anthony Liguori8f04ee02011-12-04 11:52:49 -060088static void isa_ne2000_class_initfn(ObjectClass *klass, void *data)
89{
Anthony Liguori39bffca2011-12-07 21:34:16 -060090 DeviceClass *dc = DEVICE_CLASS(klass);
Andreas Färberdb895a12012-11-25 02:37:14 +010091
92 dc->realize = isa_ne2000_realizefn;
Anthony Liguori39bffca2011-12-07 21:34:16 -060093 dc->props = ne2000_isa_properties;
Peter Maydell89218c22014-06-07 17:53:11 +010094 dc->vmsd = &vmstate_isa_ne2000;
Marcel Apfelbaum125ee0e2013-07-29 17:17:45 +030095 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
Anthony Liguori8f04ee02011-12-04 11:52:49 -060096}
97
Eric Blaked7bce992016-01-29 06:48:55 -070098static void isa_ne2000_get_bootindex(Object *obj, Visitor *v,
99 const char *name, void *opaque,
100 Error **errp)
Gonglei6cb08512014-10-07 16:00:15 +0800101{
102 ISANE2000State *isa = ISA_NE2000(obj);
103 NE2000State *s = &isa->ne2000;
104
Eric Blake51e72bc2016-01-29 06:48:54 -0700105 visit_type_int32(v, name, &s->c.bootindex, errp);
Gonglei6cb08512014-10-07 16:00:15 +0800106}
107
Eric Blaked7bce992016-01-29 06:48:55 -0700108static void isa_ne2000_set_bootindex(Object *obj, Visitor *v,
109 const char *name, void *opaque,
110 Error **errp)
Gonglei6cb08512014-10-07 16:00:15 +0800111{
112 ISANE2000State *isa = ISA_NE2000(obj);
113 NE2000State *s = &isa->ne2000;
114 int32_t boot_index;
115 Error *local_err = NULL;
116
Eric Blake51e72bc2016-01-29 06:48:54 -0700117 visit_type_int32(v, name, &boot_index, &local_err);
Gonglei6cb08512014-10-07 16:00:15 +0800118 if (local_err) {
119 goto out;
120 }
121 /* check whether bootindex is present in fw_boot_order list */
122 check_boot_index(boot_index, &local_err);
123 if (local_err) {
124 goto out;
125 }
126 /* change bootindex to a new one */
127 s->c.bootindex = boot_index;
128
129out:
Eduardo Habkost621ff942016-06-13 18:57:56 -0300130 error_propagate(errp, local_err);
Gonglei6cb08512014-10-07 16:00:15 +0800131}
132
133static void isa_ne2000_instance_init(Object *obj)
134{
135 object_property_add(obj, "bootindex", "int32",
136 isa_ne2000_get_bootindex,
137 isa_ne2000_set_bootindex, NULL, NULL, NULL);
138 object_property_set_int(obj, -1, "bootindex", NULL);
139}
Andreas Färber8c43a6f2013-01-10 16:19:07 +0100140static const TypeInfo ne2000_isa_info = {
Andreas Färberfe6f5de2013-04-27 22:18:44 +0200141 .name = TYPE_ISA_NE2000,
Anthony Liguori39bffca2011-12-07 21:34:16 -0600142 .parent = TYPE_ISA_DEVICE,
143 .instance_size = sizeof(ISANE2000State),
144 .class_init = isa_ne2000_class_initfn,
Gonglei6cb08512014-10-07 16:00:15 +0800145 .instance_init = isa_ne2000_instance_init,
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200146};
147
Andreas Färber83f7d432012-02-09 15:20:55 +0100148static void ne2000_isa_register_types(void)
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200149{
Anthony Liguori39bffca2011-12-07 21:34:16 -0600150 type_register_static(&ne2000_isa_info);
Gerd Hoffmann9453c5b2009-09-10 11:43:33 +0200151}
152
Andreas Färber83f7d432012-02-09 15:20:55 +0100153type_init(ne2000_isa_register_types)