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 "qemu/osdep.h" 25 #include "hw/isa/isa.h" 26 #include "hw/net/ne2000-isa.h" 27 #include "hw/qdev.h" 28 #include "ne2000.h" 29 #include "sysemu/sysemu.h" 30 #include "exec/address-spaces.h" 31 #include "qapi/error.h" 32 #include "qapi/visitor.h" 33 34 #define ISA_NE2000(obj) OBJECT_CHECK(ISANE2000State, (obj), TYPE_ISA_NE2000) 35 36 typedef struct ISANE2000State { 37 ISADevice parent_obj; 38 39 uint32_t iobase; 40 uint32_t isairq; 41 NE2000State ne2000; 42 } ISANE2000State; 43 44 static NetClientInfo net_ne2000_isa_info = { 45 .type = NET_CLIENT_DRIVER_NIC, 46 .size = sizeof(NICState), 47 .receive = ne2000_receive, 48 }; 49 50 static const VMStateDescription vmstate_isa_ne2000 = { 51 .name = "ne2000", 52 .version_id = 2, 53 .minimum_version_id = 0, 54 .fields = (VMStateField[]) { 55 VMSTATE_STRUCT(ne2000, ISANE2000State, 0, vmstate_ne2000, NE2000State), 56 VMSTATE_END_OF_LIST() 57 } 58 }; 59 60 static void isa_ne2000_realizefn(DeviceState *dev, Error **errp) 61 { 62 ISADevice *isadev = ISA_DEVICE(dev); 63 ISANE2000State *isa = ISA_NE2000(dev); 64 NE2000State *s = &isa->ne2000; 65 66 ne2000_setup_io(s, DEVICE(isadev), 0x20); 67 isa_register_ioport(isadev, &s->io, isa->iobase); 68 69 isa_init_irq(isadev, &s->irq, isa->isairq); 70 71 qemu_macaddr_default_if_unset(&s->c.macaddr); 72 ne2000_reset(s); 73 74 s->nic = qemu_new_nic(&net_ne2000_isa_info, &s->c, 75 object_get_typename(OBJECT(dev)), dev->id, s); 76 qemu_format_nic_info_str(qemu_get_queue(s->nic), s->c.macaddr.a); 77 } 78 79 static Property ne2000_isa_properties[] = { 80 DEFINE_PROP_UINT32("iobase", ISANE2000State, iobase, 0x300), 81 DEFINE_PROP_UINT32("irq", ISANE2000State, isairq, 9), 82 DEFINE_NIC_PROPERTIES(ISANE2000State, ne2000.c), 83 DEFINE_PROP_END_OF_LIST(), 84 }; 85 86 static void isa_ne2000_class_initfn(ObjectClass *klass, void *data) 87 { 88 DeviceClass *dc = DEVICE_CLASS(klass); 89 90 dc->realize = isa_ne2000_realizefn; 91 dc->props = ne2000_isa_properties; 92 dc->vmsd = &vmstate_isa_ne2000; 93 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories); 94 } 95 96 static void isa_ne2000_get_bootindex(Object *obj, Visitor *v, 97 const char *name, void *opaque, 98 Error **errp) 99 { 100 ISANE2000State *isa = ISA_NE2000(obj); 101 NE2000State *s = &isa->ne2000; 102 103 visit_type_int32(v, name, &s->c.bootindex, errp); 104 } 105 106 static void isa_ne2000_set_bootindex(Object *obj, Visitor *v, 107 const char *name, void *opaque, 108 Error **errp) 109 { 110 ISANE2000State *isa = ISA_NE2000(obj); 111 NE2000State *s = &isa->ne2000; 112 int32_t boot_index; 113 Error *local_err = NULL; 114 115 visit_type_int32(v, name, &boot_index, &local_err); 116 if (local_err) { 117 goto out; 118 } 119 /* check whether bootindex is present in fw_boot_order list */ 120 check_boot_index(boot_index, &local_err); 121 if (local_err) { 122 goto out; 123 } 124 /* change bootindex to a new one */ 125 s->c.bootindex = boot_index; 126 127 out: 128 error_propagate(errp, local_err); 129 } 130 131 static void isa_ne2000_instance_init(Object *obj) 132 { 133 object_property_add(obj, "bootindex", "int32", 134 isa_ne2000_get_bootindex, 135 isa_ne2000_set_bootindex, NULL, NULL, NULL); 136 object_property_set_int(obj, -1, "bootindex", NULL); 137 } 138 static const TypeInfo ne2000_isa_info = { 139 .name = TYPE_ISA_NE2000, 140 .parent = TYPE_ISA_DEVICE, 141 .instance_size = sizeof(ISANE2000State), 142 .class_init = isa_ne2000_class_initfn, 143 .instance_init = isa_ne2000_instance_init, 144 }; 145 146 static void ne2000_isa_register_types(void) 147 { 148 type_register_static(&ne2000_isa_info); 149 } 150 151 type_init(ne2000_isa_register_types) 152