2018-03-06 21:30:49 +01:00
|
|
|
/*
|
|
|
|
* QEMU Uninorth PCI host (for all Mac99 and newer machines)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UNINORTH_H
|
|
|
|
#define UNINORTH_H
|
|
|
|
|
2019-08-12 07:23:31 +02:00
|
|
|
#include "hw/pci/pci_host.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2018-03-06 21:30:58 +01:00
|
|
|
|
2018-05-06 16:20:05 +02:00
|
|
|
/* UniNorth version */
|
|
|
|
#define UNINORTH_VERSION_10A 0x7
|
|
|
|
|
2018-03-06 21:30:49 +01:00
|
|
|
#define TYPE_UNI_NORTH_PCI_HOST_BRIDGE "uni-north-pci-pcihost"
|
|
|
|
#define TYPE_UNI_NORTH_AGP_HOST_BRIDGE "uni-north-agp-pcihost"
|
|
|
|
#define TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE "uni-north-internal-pci-pcihost"
|
|
|
|
#define TYPE_U3_AGP_HOST_BRIDGE "u3-agp-pcihost"
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
typedef struct UNINHostState UNINHostState;
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(UNINHostState, UNI_NORTH_PCI_HOST_BRIDGE,
|
|
|
|
TYPE_UNI_NORTH_PCI_HOST_BRIDGE)
|
|
|
|
DECLARE_INSTANCE_CHECKER(UNINHostState, UNI_NORTH_AGP_HOST_BRIDGE,
|
|
|
|
TYPE_UNI_NORTH_AGP_HOST_BRIDGE)
|
|
|
|
DECLARE_INSTANCE_CHECKER(UNINHostState, UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE,
|
|
|
|
TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE)
|
|
|
|
DECLARE_INSTANCE_CHECKER(UNINHostState, U3_AGP_HOST_BRIDGE,
|
|
|
|
TYPE_U3_AGP_HOST_BRIDGE)
|
2018-03-06 21:30:49 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct UNINHostState {
|
2018-03-06 21:30:49 +01:00
|
|
|
PCIHostState parent_obj;
|
|
|
|
|
2018-08-29 18:59:10 +02:00
|
|
|
uint32_t ofw_addr;
|
2018-03-06 21:30:58 +01:00
|
|
|
qemu_irq irqs[4];
|
2018-03-06 21:30:49 +01:00
|
|
|
MemoryRegion pci_mmio;
|
|
|
|
MemoryRegion pci_hole;
|
2018-03-06 21:30:59 +01:00
|
|
|
MemoryRegion pci_io;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2018-03-06 21:30:49 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct UNINState {
|
2018-05-03 22:24:39 +02:00
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
MemoryRegion mem;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2018-05-03 22:24:39 +02:00
|
|
|
|
|
|
|
#define TYPE_UNI_NORTH "uni-north"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(UNINState, UNI_NORTH)
|
2018-05-03 22:24:39 +02:00
|
|
|
|
2018-03-06 21:30:49 +01:00
|
|
|
#endif /* UNINORTH_H */
|