]>
Commit | Line | Data |
---|---|---|
419ad672 GH |
1 | /* |
2 | * QEMU 16550A UART emulation | |
3 | * | |
4 | * Copyright (c) 2003-2004 Fabrice Bellard | |
5 | * Copyright (c) 2008 Citrix Systems, Inc. | |
6 | * | |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
25 | ||
90734e02 GH |
26 | /* see docs/specs/pci-serial.txt */ |
27 | ||
b6a0aa05 | 28 | #include "qemu/osdep.h" |
da34e65c | 29 | #include "qapi/error.h" |
0b8fa32f | 30 | #include "qemu/module.h" |
0d09e41a | 31 | #include "hw/char/serial.h" |
64552b6b | 32 | #include "hw/irq.h" |
83c9f4ca | 33 | #include "hw/pci/pci.h" |
d6454270 | 34 | #include "migration/vmstate.h" |
419ad672 GH |
35 | |
36 | typedef struct PCISerialState { | |
37 | PCIDevice dev; | |
38 | SerialState state; | |
13cc2c3e | 39 | uint8_t prog_if; |
419ad672 GH |
40 | } PCISerialState; |
41 | ||
a48da7b5 | 42 | |
28d85904 | 43 | static void serial_pci_realize(PCIDevice *dev, Error **errp) |
419ad672 GH |
44 | { |
45 | PCISerialState *pci = DO_UPCAST(PCISerialState, dev, dev); | |
46 | SerialState *s = &pci->state; | |
db895a1e | 47 | Error *err = NULL; |
419ad672 GH |
48 | |
49 | s->baudbase = 115200; | |
db895a1e AF |
50 | serial_realize_core(s, &err); |
51 | if (err != NULL) { | |
28d85904 MA |
52 | error_propagate(errp, err); |
53 | return; | |
db895a1e | 54 | } |
419ad672 | 55 | |
13cc2c3e | 56 | pci->dev.config[PCI_CLASS_PROG] = pci->prog_if; |
419ad672 | 57 | pci->dev.config[PCI_INTERRUPT_PIN] = 0x01; |
9e64f8a3 | 58 | s->irq = pci_allocate_irq(&pci->dev); |
419ad672 | 59 | |
300b1fc6 | 60 | memory_region_init_io(&s->io, OBJECT(pci), &serial_io_ops, s, "serial", 8); |
419ad672 | 61 | pci_register_bar(&pci->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io); |
419ad672 GH |
62 | } |
63 | ||
64 | static void serial_pci_exit(PCIDevice *dev) | |
65 | { | |
66 | PCISerialState *pci = DO_UPCAST(PCISerialState, dev, dev); | |
67 | SerialState *s = &pci->state; | |
68 | ||
69 | serial_exit_core(s); | |
9e64f8a3 | 70 | qemu_free_irq(s->irq); |
419ad672 GH |
71 | } |
72 | ||
73 | static const VMStateDescription vmstate_pci_serial = { | |
74 | .name = "pci-serial", | |
75 | .version_id = 1, | |
76 | .minimum_version_id = 1, | |
d49805ae | 77 | .fields = (VMStateField[]) { |
419ad672 GH |
78 | VMSTATE_PCI_DEVICE(dev, PCISerialState), |
79 | VMSTATE_STRUCT(state, PCISerialState, 0, vmstate_serial, SerialState), | |
80 | VMSTATE_END_OF_LIST() | |
81 | } | |
82 | }; | |
83 | ||
84 | static Property serial_pci_properties[] = { | |
85 | DEFINE_PROP_CHR("chardev", PCISerialState, state.chr), | |
13cc2c3e | 86 | DEFINE_PROP_UINT8("prog_if", PCISerialState, prog_if, 0x02), |
419ad672 GH |
87 | DEFINE_PROP_END_OF_LIST(), |
88 | }; | |
89 | ||
90 | static void serial_pci_class_initfn(ObjectClass *klass, void *data) | |
91 | { | |
92 | DeviceClass *dc = DEVICE_CLASS(klass); | |
93 | PCIDeviceClass *pc = PCI_DEVICE_CLASS(klass); | |
28d85904 | 94 | pc->realize = serial_pci_realize; |
419ad672 | 95 | pc->exit = serial_pci_exit; |
5c03a254 PB |
96 | pc->vendor_id = PCI_VENDOR_ID_REDHAT; |
97 | pc->device_id = PCI_DEVICE_ID_REDHAT_SERIAL; | |
419ad672 GH |
98 | pc->revision = 1; |
99 | pc->class_id = PCI_CLASS_COMMUNICATION_SERIAL; | |
100 | dc->vmsd = &vmstate_pci_serial; | |
101 | dc->props = serial_pci_properties; | |
125ee0ed | 102 | set_bit(DEVICE_CATEGORY_INPUT, dc->categories); |
419ad672 GH |
103 | } |
104 | ||
8c43a6f0 | 105 | static const TypeInfo serial_pci_info = { |
419ad672 GH |
106 | .name = "pci-serial", |
107 | .parent = TYPE_PCI_DEVICE, | |
108 | .instance_size = sizeof(PCISerialState), | |
109 | .class_init = serial_pci_class_initfn, | |
fd3b02c8 EH |
110 | .interfaces = (InterfaceInfo[]) { |
111 | { INTERFACE_CONVENTIONAL_PCI_DEVICE }, | |
112 | { }, | |
113 | }, | |
419ad672 GH |
114 | }; |
115 | ||
116 | static void serial_pci_register_types(void) | |
117 | { | |
118 | type_register_static(&serial_pci_info); | |
119 | } | |
120 | ||
121 | type_init(serial_pci_register_types) |