mirror of
https://git.proxmox.com/git/qemu
synced 2025-06-15 16:18:35 +00:00

This includes some pretty big changes: - pci master abort support by Marcel - pci IRQ API rework by Marcel - acpi generation support by myself Everything has gone through several revisions, latest versions have been on list for a while without any more comments, tested by several people. Please pull for 1.7. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iQEcBAABAgAGBQJSXNO8AAoJECgfDbjSjVRp7VAH/0B73mCOiyVACGx7fazK3SGK X8TxZWVtG5A77ISqKyrtjLAhK9DCQjEzQTbMNhXHM3Ar6crwo7nJZnQvH2Gh1X2p 34BOQSVc4rtXz5pwDIr48dBLrxeslwXub79chUs+IK1/4RSn3h3nuS3k6JVkmLJN rcHMj4ljJmi4Hd9vOpmS1jo/a61usi36hhU7CMgcrsXzStZycBBzCozOB3VW8p1X /iwyf91YjmNPkn9gA3/aViGjszu8jE91dkA0C+ljwvcGbs2yEl3LCWEJfsMvoh5P 2M+k0XXbHwq/P9PFMa/2/lWOo4EO4Oxa+G/6QvovJrteYnktr+E9DqjU8pCT7yI= =CVfs -----END PGP SIGNATURE----- Merge remote-tracking branch 'mst/tags/for_anthony' into staging pci, pc, acpi fixes, enhancements This includes some pretty big changes: - pci master abort support by Marcel - pci IRQ API rework by Marcel - acpi generation support by myself Everything has gone through several revisions, latest versions have been on list for a while without any more comments, tested by several people. Please pull for 1.7. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> # gpg: Signature made Tue 15 Oct 2013 07:33:48 AM CEST using RSA key ID D28D5469 # gpg: Can't check signature: public key not found * mst/tags/for_anthony: (39 commits) ssdt-proc: update generated file ssdt: fix PBLK length i386: ACPI table generation code from seabios pc: use new api to add builtin tables acpi: add interface to access user-installed tables hpet: add API to find it pvpanic: add API to access io port ich9: APIs for pc guest info piix: APIs for pc guest info acpi/piix: add macros for acpi property names i386: define pc guest info loader: allow adding ROMs in done callbacks i386: add bios linker/loader loader: use file path size from fw_cfg.h acpi: ssdt pcihp: updat generated file acpi: pre-compiled ASL files acpi: add rules to compile ASL source i386: add ACPI table files from seabios q35: expose mmcfg size as a property q35: use macro for MCFG property name ... Message-id: 1381818560-18367-1-git-send-email-mst@redhat.com Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
162 lines
6.3 KiB
C
162 lines
6.3 KiB
C
/*
|
|
* q35.h
|
|
*
|
|
* Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
|
|
* VA Linux Systems Japan K.K.
|
|
* Copyright (C) 2012 Jason Baron <jbaron@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
#ifndef HW_Q35_H
|
|
#define HW_Q35_H
|
|
|
|
#include "hw/hw.h"
|
|
#include "qemu/range.h"
|
|
#include "hw/isa/isa.h"
|
|
#include "hw/sysbus.h"
|
|
#include "hw/i386/pc.h"
|
|
#include "hw/isa/apm.h"
|
|
#include "hw/pci/pci.h"
|
|
#include "hw/pci/pcie_host.h"
|
|
#include "hw/acpi/acpi.h"
|
|
#include "hw/acpi/ich9.h"
|
|
#include "hw/pci-host/pam.h"
|
|
|
|
#define TYPE_Q35_HOST_DEVICE "q35-pcihost"
|
|
#define Q35_HOST_DEVICE(obj) \
|
|
OBJECT_CHECK(Q35PCIHost, (obj), TYPE_Q35_HOST_DEVICE)
|
|
|
|
#define TYPE_MCH_PCI_DEVICE "mch"
|
|
#define MCH_PCI_DEVICE(obj) \
|
|
OBJECT_CHECK(MCHPCIState, (obj), TYPE_MCH_PCI_DEVICE)
|
|
|
|
typedef struct MCHPCIState {
|
|
/*< private >*/
|
|
PCIDevice parent_obj;
|
|
/*< public >*/
|
|
|
|
MemoryRegion *ram_memory;
|
|
MemoryRegion *pci_address_space;
|
|
MemoryRegion *system_memory;
|
|
MemoryRegion *address_space_io;
|
|
PAMMemoryRegion pam_regions[13];
|
|
MemoryRegion smram_region;
|
|
MemoryRegion pci_hole;
|
|
MemoryRegion pci_hole_64bit;
|
|
PcPciInfo pci_info;
|
|
uint8_t smm_enabled;
|
|
ram_addr_t below_4g_mem_size;
|
|
ram_addr_t above_4g_mem_size;
|
|
uint64_t pci_hole64_size;
|
|
PcGuestInfo *guest_info;
|
|
} MCHPCIState;
|
|
|
|
typedef struct Q35PCIHost {
|
|
/*< private >*/
|
|
PCIExpressHost parent_obj;
|
|
/*< public >*/
|
|
|
|
MCHPCIState mch;
|
|
} Q35PCIHost;
|
|
|
|
#define Q35_MASK(bit, ms_bit, ls_bit) \
|
|
((uint##bit##_t)(((1ULL << ((ms_bit) + 1)) - 1) & ~((1ULL << ls_bit) - 1)))
|
|
|
|
/*
|
|
* gmch part
|
|
*/
|
|
|
|
/* PCI configuration */
|
|
#define MCH_HOST_BRIDGE "MCH"
|
|
|
|
#define MCH_HOST_BRIDGE_CONFIG_ADDR 0xcf8
|
|
#define MCH_HOST_BRIDGE_CONFIG_DATA 0xcfc
|
|
|
|
/* D0:F0 configuration space */
|
|
#define MCH_HOST_BRIDGE_REVISION_DEFAULT 0x0
|
|
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR 0x60 /* 64bit register */
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_SIZE 8 /* 64bit register */
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_DEFAULT 0xb0000000
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_MAX (0x10000000) /* 256M */
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_ADMSK Q35_MASK(64, 35, 28)
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_128ADMSK ((uint64_t)(1 << 26))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_64ADMSK ((uint64_t)(1 << 25))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_MASK ((uint64_t)(0x3 << 1))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_256M ((uint64_t)(0x0 << 1))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_128M ((uint64_t)(0x1 << 1))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_64M ((uint64_t)(0x2 << 1))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAR_LENGTH_RVD ((uint64_t)(0x3 << 1))
|
|
#define MCH_HOST_BRIDGE_PCIEXBAREN ((uint64_t)1)
|
|
|
|
#define MCH_HOST_BRIDGE_PAM_NB 7
|
|
#define MCH_HOST_BRIDGE_PAM_SIZE 7
|
|
#define MCH_HOST_BRIDGE_PAM0 0x90
|
|
#define MCH_HOST_BRIDGE_PAM_BIOS_AREA 0xf0000
|
|
#define MCH_HOST_BRIDGE_PAM_AREA_SIZE 0x10000 /* 16KB */
|
|
#define MCH_HOST_BRIDGE_PAM1 0x91
|
|
#define MCH_HOST_BRIDGE_PAM_EXPAN_AREA 0xc0000
|
|
#define MCH_HOST_BRIDGE_PAM_EXPAN_SIZE 0x04000
|
|
#define MCH_HOST_BRIDGE_PAM2 0x92
|
|
#define MCH_HOST_BRIDGE_PAM3 0x93
|
|
#define MCH_HOST_BRIDGE_PAM4 0x94
|
|
#define MCH_HOST_BRIDGE_PAM_EXBIOS_AREA 0xe0000
|
|
#define MCH_HOST_BRIDGE_PAM_EXBIOS_SIZE 0x04000
|
|
#define MCH_HOST_BRIDGE_PAM5 0x95
|
|
#define MCH_HOST_BRIDGE_PAM6 0x96
|
|
#define MCH_HOST_BRIDGE_PAM_WE_HI ((uint8_t)(0x2 << 4))
|
|
#define MCH_HOST_BRIDGE_PAM_RE_HI ((uint8_t)(0x1 << 4))
|
|
#define MCH_HOST_BRIDGE_PAM_HI_MASK ((uint8_t)(0x3 << 4))
|
|
#define MCH_HOST_BRIDGE_PAM_WE_LO ((uint8_t)0x2)
|
|
#define MCH_HOST_BRIDGE_PAM_RE_LO ((uint8_t)0x1)
|
|
#define MCH_HOST_BRIDGE_PAM_LO_MASK ((uint8_t)0x3)
|
|
#define MCH_HOST_BRIDGE_PAM_WE ((uint8_t)0x2)
|
|
#define MCH_HOST_BRIDGE_PAM_RE ((uint8_t)0x1)
|
|
#define MCH_HOST_BRIDGE_PAM_MASK ((uint8_t)0x3)
|
|
|
|
#define MCH_HOST_BRDIGE_SMRAM 0x9d
|
|
#define MCH_HOST_BRDIGE_SMRAM_SIZE 1
|
|
#define MCH_HOST_BRIDGE_SMRAM_DEFAULT ((uint8_t)0x2)
|
|
#define MCH_HOST_BRIDGE_SMRAM_D_OPEN ((uint8_t)(1 << 6))
|
|
#define MCH_HOST_BRIDGE_SMRAM_D_CLS ((uint8_t)(1 << 5))
|
|
#define MCH_HOST_BRIDGE_SMRAM_D_LCK ((uint8_t)(1 << 4))
|
|
#define MCH_HOST_BRIDGE_SMRAM_G_SMRAME ((uint8_t)(1 << 3))
|
|
#define MCH_HOST_BRIDGE_SMRAM_C_BASE_SEG_MASK ((uint8_t)0x7)
|
|
#define MCH_HOST_BRIDGE_SMRAM_C_BASE_SEG ((uint8_t)0x2) /* hardwired to b010 */
|
|
#define MCH_HOST_BRIDGE_SMRAM_C_BASE 0xa0000
|
|
#define MCH_HOST_BRIDGE_SMRAM_C_END 0xc0000
|
|
#define MCH_HOST_BRIDGE_SMRAM_C_SIZE 0x20000
|
|
#define MCH_HOST_BRIDGE_UPPER_SYSTEM_BIOS_END 0x100000
|
|
|
|
#define MCH_HOST_BRIDGE_ESMRAMC 0x9e
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_H_SMRAME ((uint8_t)(1 << 6))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_E_SMERR ((uint8_t)(1 << 5))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_SM_CACHE ((uint8_t)(1 << 4))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_SM_L1 ((uint8_t)(1 << 3))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_SM_L2 ((uint8_t)(1 << 2))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_TSEG_SZ_MASK ((uint8_t)(0x3 << 1))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_TSEG_SZ_1MB ((uint8_t)(0x0 << 1))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_TSEG_SZ_2MB ((uint8_t)(0x1 << 1))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_TSEG_SZ_8MB ((uint8_t)(0x2 << 1))
|
|
#define MCH_HOST_BRDIGE_ESMRAMC_T_EN ((uint8_t)1)
|
|
|
|
/* D1:F0 PCIE* port*/
|
|
#define MCH_PCIE_DEV 1
|
|
#define MCH_PCIE_FUNC 0
|
|
|
|
uint64_t mch_mcfg_base(void);
|
|
|
|
#endif /* HW_Q35_H */
|