| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU IDE Emulation: mmio support (for embedded). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2003 Fabrice Bellard | 
					
						
							|  |  |  |  * Copyright (c) 2006 Openedhand Ltd. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:09 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/dma.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-09 23:24:42 +01:00
										 |  |  | #include "hw/ide/mmio.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2024-02-25 18:08:39 +01:00
										 |  |  | #include "ide-internal.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /***********************************************************/ | 
					
						
							|  |  |  | /* MMIO based ide port
 | 
					
						
							|  |  |  |  * This emulates IDE device connected directly to the CPU bus without | 
					
						
							|  |  |  |  * dedicated ide controller, which is often seen on embedded boards. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | struct MMIOIDEState { | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     /*< private >*/ | 
					
						
							|  |  |  |     SysBusDevice parent_obj; | 
					
						
							|  |  |  |     /*< public >*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |     IDEBus bus; | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     uint32_t shift; | 
					
						
							|  |  |  |     qemu_irq irq; | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  |     MemoryRegion iomem1, iomem2; | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | static void mmio_ide_reset(DeviceState *dev) | 
					
						
							| 
									
										
										
										
											2009-11-07 14:13:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = MMIO_IDE(dev); | 
					
						
							| 
									
										
										
										
											2009-11-07 14:13:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ide_bus_reset(&s->bus); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t mmio_ide_read(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  |                               unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = opaque; | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  |     addr >>= s->shift; | 
					
						
							|  |  |  |     if (addr & 7) | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |         return ide_ioport_read(&s->bus, addr); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |         return ide_data_readw(&s->bus, 0); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static void mmio_ide_write(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  |                            uint64_t val, unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = opaque; | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  |     addr >>= s->shift; | 
					
						
							|  |  |  |     if (addr & 7) | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |         ide_ioport_write(&s->bus, addr, val); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |         ide_data_writew(&s->bus, 0, val); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  | static const MemoryRegionOps mmio_ide_ops = { | 
					
						
							|  |  |  |     .read = mmio_ide_read, | 
					
						
							|  |  |  |     .write = mmio_ide_write, | 
					
						
							| 
									
										
										
										
											2014-08-31 11:32:08 +03:00
										 |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static uint64_t mmio_ide_status_read(void *opaque, hwaddr addr, | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  |                                      unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = opaque; | 
					
						
							| 
									
										
										
										
											2009-10-07 18:55:36 +02:00
										 |  |  |     return ide_status_read(&s->bus, 0); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-24 01:22:54 -04:00
										 |  |  | static void mmio_ide_ctrl_write(void *opaque, hwaddr addr, | 
					
						
							|  |  |  |                                 uint64_t val, unsigned size) | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = opaque; | 
					
						
							| 
									
										
										
										
											2020-07-24 01:22:54 -04:00
										 |  |  |     ide_ctrl_write(&s->bus, 0, val); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-09 16:10:07 +02:00
										 |  |  | static const MemoryRegionOps mmio_ide_cs_ops = { | 
					
						
							|  |  |  |     .read = mmio_ide_status_read, | 
					
						
							| 
									
										
										
										
											2020-07-24 01:22:54 -04:00
										 |  |  |     .write = mmio_ide_ctrl_write, | 
					
						
							| 
									
										
										
										
											2014-08-31 11:32:08 +03:00
										 |  |  |     .endianness = DEVICE_LITTLE_ENDIAN, | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 18:58:25 +02:00
										 |  |  | static const VMStateDescription vmstate_ide_mmio = { | 
					
						
							|  |  |  |     .name = "mmio-ide", | 
					
						
							|  |  |  |     .version_id = 3, | 
					
						
							|  |  |  |     .minimum_version_id = 0, | 
					
						
							| 
									
										
										
										
											2023-12-21 14:16:13 +11:00
										 |  |  |     .fields = (const VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |         VMSTATE_IDE_BUS(bus, MMIOIDEState), | 
					
						
							|  |  |  |         VMSTATE_IDE_DRIVES(bus.ifs, MMIOIDEState), | 
					
						
							| 
									
										
										
										
											2009-10-07 18:58:25 +02:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | static void mmio_ide_realizefn(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     SysBusDevice *d = SYS_BUS_DEVICE(dev); | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = MMIO_IDE(dev); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-09 11:27:23 +01:00
										 |  |  |     ide_bus_init_output_irq(&s->bus, s->irq); | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 21:25:08 -04:00
										 |  |  |     memory_region_init_io(&s->iomem1, OBJECT(s), &mmio_ide_ops, s, | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |                           "ide-mmio.1", 16 << s->shift); | 
					
						
							| 
									
										
										
										
											2013-06-06 21:25:08 -04:00
										 |  |  |     memory_region_init_io(&s->iomem2, OBJECT(s), &mmio_ide_cs_ops, s, | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |                           "ide-mmio.2", 2 << s->shift); | 
					
						
							|  |  |  |     sysbus_init_mmio(d, &s->iomem1); | 
					
						
							|  |  |  |     sysbus_init_mmio(d, &s->iomem2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mmio_ide_initfn(Object *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SysBusDevice *d = SYS_BUS_DEVICE(obj); | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = MMIO_IDE(obj); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-23 13:11:53 +01:00
										 |  |  |     ide_bus_init(&s->bus, sizeof(s->bus), DEVICE(obj), 0, 2); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     sysbus_init_irq(d, &s->irq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static Property mmio_ide_properties[] = { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     DEFINE_PROP_UINT32("shift", MMIOIDEState, shift, 0), | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     DEFINE_PROP_END_OF_LIST() | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mmio_ide_class_init(ObjectClass *oc, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass *dc = DEVICE_CLASS(oc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dc->realize = mmio_ide_realizefn; | 
					
						
							| 
									
										
										
										
											2024-09-13 15:31:44 +01:00
										 |  |  |     device_class_set_legacy_reset(dc, mmio_ide_reset); | 
					
						
							| 
									
										
										
										
											2020-01-10 19:30:32 +04:00
										 |  |  |     device_class_set_props(dc, mmio_ide_properties); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     dc->vmsd = &vmstate_ide_mmio; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const TypeInfo mmio_ide_type_info = { | 
					
						
							|  |  |  |     .name = TYPE_MMIO_IDE, | 
					
						
							|  |  |  |     .parent = TYPE_SYS_BUS_DEVICE, | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     .instance_size = sizeof(MMIOIDEState), | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     .instance_init = mmio_ide_initfn, | 
					
						
							|  |  |  |     .class_init = mmio_ide_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void mmio_ide_register_types(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     type_register_static(&mmio_ide_type_info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void mmio_ide_init_drives(DeviceState *dev, DriveInfo *hd0, DriveInfo *hd1) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-06 11:37:55 +01:00
										 |  |  |     MMIOIDEState *s = MMIO_IDE(dev); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (hd0 != NULL) { | 
					
						
							| 
									
										
										
										
											2023-02-09 11:31:51 +01:00
										 |  |  |         ide_bus_create_drive(&s->bus, 0, hd0); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (hd1 != NULL) { | 
					
						
							| 
									
										
										
										
											2023-02-09 11:31:51 +01:00
										 |  |  |         ide_bus_create_drive(&s->bus, 1, hd1); | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-08-20 15:22:22 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-01 00:13:41 +01:00
										 |  |  | type_init(mmio_ide_register_types) |