2 * QEMU model of the Xilinx usb subsystem
4 * Copyright (c) 2020 Xilinx Inc. Sai Pavan Boddu <sai.pava.boddu@xilinx.com>
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
26 #include "hw/sysbus.h"
28 #include "hw/register.h"
29 #include "qemu/bitops.h"
31 #include "qom/object.h"
32 #include "qapi/error.h"
33 #include "hw/qdev-properties.h"
34 #include "hw/usb/xlnx-usb-subsystem.h"
36 static void versal_usb2_realize(DeviceState
*dev
, Error
**errp
)
38 VersalUsb2
*s
= VERSAL_USB2(dev
);
39 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
42 sysbus_realize(SYS_BUS_DEVICE(&s
->dwc3
), &err
);
44 error_propagate(errp
, err
);
47 sysbus_realize(SYS_BUS_DEVICE(&s
->usb2Ctrl
), &err
);
49 error_propagate(errp
, err
);
52 sysbus_init_mmio(sbd
, &s
->dwc3_mr
);
53 sysbus_init_mmio(sbd
, &s
->usb2Ctrl_mr
);
54 qdev_pass_gpios(DEVICE(&s
->dwc3
.sysbus_xhci
), dev
, SYSBUS_DEVICE_GPIO_IRQ
);
57 static void versal_usb2_init(Object
*obj
)
59 VersalUsb2
*s
= VERSAL_USB2(obj
);
61 object_initialize_child(obj
, "versal.dwc3", &s
->dwc3
,
63 object_initialize_child(obj
, "versal.usb2-ctrl", &s
->usb2Ctrl
,
64 TYPE_XILINX_VERSAL_USB2_CTRL_REGS
);
65 memory_region_init_alias(&s
->dwc3_mr
, obj
, "versal.dwc3_alias",
66 &s
->dwc3
.iomem
, 0, DWC3_SIZE
);
67 memory_region_init_alias(&s
->usb2Ctrl_mr
, obj
, "versal.usb2Ctrl_alias",
68 &s
->usb2Ctrl
.iomem
, 0, USB2_REGS_R_MAX
* 4);
69 qdev_alias_all_properties(DEVICE(&s
->dwc3
), obj
);
70 qdev_alias_all_properties(DEVICE(&s
->dwc3
.sysbus_xhci
), obj
);
71 object_property_add_alias(obj
, "dma", OBJECT(&s
->dwc3
.sysbus_xhci
), "dma");
74 static void versal_usb2_class_init(ObjectClass
*klass
, void *data
)
76 DeviceClass
*dc
= DEVICE_CLASS(klass
);
78 dc
->realize
= versal_usb2_realize
;
81 static const TypeInfo versal_usb2_info
= {
82 .name
= TYPE_XILINX_VERSAL_USB2
,
83 .parent
= TYPE_SYS_BUS_DEVICE
,
84 .instance_size
= sizeof(VersalUsb2
),
85 .class_init
= versal_usb2_class_init
,
86 .instance_init
= versal_usb2_init
,
89 static void versal_usb_types(void)
91 type_register_static(&versal_usb2_info
);
94 type_init(versal_usb_types
)