ne2000-isa.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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/hw.h"
  25. #include "hw/i386/pc.h"
  26. #include "hw/isa/isa.h"
  27. #include "hw/qdev.h"
  28. #include "net/net.h"
  29. #include "ne2000.h"
  30. #include "exec/address-spaces.h"
  31. #define TYPE_ISA_NE2000 "ne2k_isa"
  32. #define ISA_NE2000(obj) OBJECT_CHECK(ISANE2000State, (obj), TYPE_ISA_NE2000)
  33. typedef struct ISANE2000State {
  34. ISADevice parent_obj;
  35. uint32_t iobase;
  36. uint32_t isairq;
  37. NE2000State ne2000;
  38. } ISANE2000State;
  39. static void isa_ne2000_cleanup(NetClientState *nc)
  40. {
  41. NE2000State *s = qemu_get_nic_opaque(nc);
  42. s->nic = NULL;
  43. }
  44. static NetClientInfo net_ne2000_isa_info = {
  45. .type = NET_CLIENT_OPTIONS_KIND_NIC,
  46. .size = sizeof(NICState),
  47. .can_receive = ne2000_can_receive,
  48. .receive = ne2000_receive,
  49. .cleanup = isa_ne2000_cleanup,
  50. };
  51. static const VMStateDescription vmstate_isa_ne2000 = {
  52. .name = "ne2000",
  53. .version_id = 2,
  54. .minimum_version_id = 0,
  55. .minimum_version_id_old = 0,
  56. .fields = (VMStateField []) {
  57. VMSTATE_STRUCT(ne2000, ISANE2000State, 0, vmstate_ne2000, NE2000State),
  58. VMSTATE_END_OF_LIST()
  59. }
  60. };
  61. static void isa_ne2000_realizefn(DeviceState *dev, Error **errp)
  62. {
  63. ISADevice *isadev = ISA_DEVICE(dev);
  64. ISANE2000State *isa = ISA_NE2000(dev);
  65. NE2000State *s = &isa->ne2000;
  66. ne2000_setup_io(s, DEVICE(isadev), 0x20);
  67. isa_register_ioport(isadev, &s->io, isa->iobase);
  68. isa_init_irq(isadev, &s->irq, isa->isairq);
  69. qemu_macaddr_default_if_unset(&s->c.macaddr);
  70. ne2000_reset(s);
  71. s->nic = qemu_new_nic(&net_ne2000_isa_info, &s->c,
  72. object_get_typename(OBJECT(dev)), dev->id, s);
  73. qemu_format_nic_info_str(qemu_get_queue(s->nic), s->c.macaddr.a);
  74. }
  75. static Property ne2000_isa_properties[] = {
  76. DEFINE_PROP_UINT32("iobase", ISANE2000State, iobase, 0x300),
  77. DEFINE_PROP_UINT32("irq", ISANE2000State, isairq, 9),
  78. DEFINE_NIC_PROPERTIES(ISANE2000State, ne2000.c),
  79. DEFINE_PROP_END_OF_LIST(),
  80. };
  81. static void isa_ne2000_class_initfn(ObjectClass *klass, void *data)
  82. {
  83. DeviceClass *dc = DEVICE_CLASS(klass);
  84. dc->realize = isa_ne2000_realizefn;
  85. dc->props = ne2000_isa_properties;
  86. set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
  87. }
  88. static const TypeInfo ne2000_isa_info = {
  89. .name = TYPE_ISA_NE2000,
  90. .parent = TYPE_ISA_DEVICE,
  91. .instance_size = sizeof(ISANE2000State),
  92. .class_init = isa_ne2000_class_initfn,
  93. };
  94. static void ne2000_isa_register_types(void)
  95. {
  96. type_register_static(&ne2000_isa_info);
  97. }
  98. type_init(ne2000_isa_register_types)