2019-02-02 22:57:47 +03:00
|
|
|
/*
|
|
|
|
* QEMU i440FX North Bridge Emulation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_PCI_I440FX_H
|
|
|
|
#define HW_PCI_I440FX_H
|
|
|
|
|
2022-12-22 13:03:28 +03:00
|
|
|
#include "hw/pci/pci_device.h"
|
2019-12-09 12:49:58 +03:00
|
|
|
#include "hw/pci-host/pam.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2019-02-02 22:57:47 +03:00
|
|
|
|
2023-06-30 10:37:18 +03:00
|
|
|
#define I440FX_HOST_PROP_PCI_TYPE "pci-type"
|
|
|
|
|
2019-02-02 22:57:47 +03:00
|
|
|
#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
|
|
|
|
#define TYPE_I440FX_PCI_DEVICE "i440FX"
|
|
|
|
|
2020-09-16 21:25:19 +03:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PCII440FXState, I440FX_PCI_DEVICE)
|
2019-12-09 12:49:58 +03:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct PCII440FXState {
|
2019-12-09 12:49:58 +03:00
|
|
|
/*< private >*/
|
|
|
|
PCIDevice parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2020-12-02 16:20:38 +03:00
|
|
|
PAMMemoryRegion pam_regions[PAM_REGIONS_COUNT];
|
2019-12-09 12:49:58 +03:00
|
|
|
MemoryRegion smram_region;
|
|
|
|
MemoryRegion smram, low_smram;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2019-12-09 12:49:58 +03:00
|
|
|
|
2019-02-02 22:57:47 +03:00
|
|
|
#define TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE "igd-passthrough-i440FX"
|
|
|
|
|
|
|
|
#endif
|