2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms and conditions of the GNU General Public License,
4 * version 2 or later, as published by the Free Software Foundation.
6 * This program is distributed in the hope it will be useful, but WITHOUT
7 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * You should have received a copy of the GNU General Public License along with
12 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include "hw/qdev-properties.h"
19 #include "hw/sysbus.h"
20 #include "chardev/char-fe.h"
21 #include "qapi/error.h"
22 #include "qom/object.h"
24 #define TYPE_PL011 "pl011"
25 OBJECT_DECLARE_SIMPLE_TYPE(PL011State
, PL011
)
27 /* This shares the same struct (and cast macro) as the base pl011 device */
28 #define TYPE_PL011_LUMINARY "pl011_luminary"
31 SysBusDevice parent_obj
;
42 uint32_t read_fifo
[16];
54 const unsigned char *id
;
57 static inline DeviceState
*pl011_create(hwaddr addr
,
64 dev
= qdev_new("pl011");
65 s
= SYS_BUS_DEVICE(dev
);
66 qdev_prop_set_chr(dev
, "chardev", chr
);
67 sysbus_realize_and_unref(s
, &error_fatal
);
68 sysbus_mmio_map(s
, 0, addr
);
69 sysbus_connect_irq(s
, 0, irq
);
74 static inline DeviceState
*pl011_luminary_create(hwaddr addr
,
81 dev
= qdev_new("pl011_luminary");
82 s
= SYS_BUS_DEVICE(dev
);
83 qdev_prop_set_chr(dev
, "chardev", chr
);
84 sysbus_realize_and_unref(s
, &error_fatal
);
85 sysbus_mmio_map(s
, 0, addr
);
86 sysbus_connect_irq(s
, 0, irq
);