]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/southbridge/piix.h
Merge tag 'pull-maintainer-may24-160524-2' of https://gitlab.com/stsquad/qemu into...
[mirror_qemu.git] / include / hw / southbridge / piix.h
CommitLineData
fff123b8
PMD
1/*
2 * QEMU PIIX South Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
e29f2379 5 * Copyright (c) 2018 Hervé Poussineau
fff123b8
PMD
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 */
11
12#ifndef HW_SOUTHBRIDGE_PIIX_H
13#define HW_SOUTHBRIDGE_PIIX_H
14
edf5ca5d 15#include "hw/pci/pci_device.h"
0a15cf08 16#include "hw/acpi/piix4.h"
e47e5a5b 17#include "hw/ide/pci.h"
f0bc6bf7 18#include "hw/rtc/mc146818rtc.h"
6fe4464c 19#include "hw/usb/hcd-uhci.h"
fff123b8 20
4b19de14
PMD
21/* PIRQRC[A:D]: PIRQx Route Control Registers */
22#define PIIX_PIRQCA 0x60
23#define PIIX_PIRQCB 0x61
24#define PIIX_PIRQCC 0x62
25#define PIIX_PIRQCD 0x63
26
0063454a
PMD
27/*
28 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
29 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
30 */
31#define PIIX_RCR_IOPORT 0xcf9
32
14a026dd
PMD
33#define PIIX_NUM_PIRQS 4ULL /* PIRQ[A-D] */
34
db1015e9 35struct PIIXState {
14a026dd
PMD
36 PCIDevice dev;
37
38 /*
39 * bitmap to track pic levels.
40 * The pic level is the logical OR of all the PCI irqs mapped to it
41 * So one PIC level is tracked by PIIX_NUM_PIRQS bits.
42 *
43 * PIRQ is mapped to PIC pins, we track it by
32f29b26 44 * PIIX_NUM_PIRQS * ISA_NUM_IRQS = 64 bits with
14a026dd
PMD
45 * pic_irq * PIIX_NUM_PIRQS + pirq
46 */
32f29b26 47#if ISA_NUM_IRQS * PIIX_NUM_PIRQS > 64
14a026dd
PMD
48#error "unable to encode pic state in 64bit in pic_levels."
49#endif
50 uint64_t pic_levels;
51
74bdcfb4 52 qemu_irq cpu_intr;
40f70623 53 qemu_irq isa_irqs_in[ISA_NUM_IRQS];
14a026dd
PMD
54
55 /* This member isn't used. Just for save/load compatibility */
56 int32_t pci_irq_levels_vmstate[PIIX_NUM_PIRQS];
57
f0bc6bf7 58 MC146818RtcState rtc;
e47e5a5b 59 PCIIDEState ide;
6fe4464c 60 UHCIState uhci;
0a15cf08
BB
61 PIIX4PMState pm;
62
63 uint32_t smb_io_base;
f0bc6bf7 64
14a026dd
PMD
65 /* Reset Control Register contents */
66 uint8_t rcr;
67
68 /* IO memory region for Reset Control Register (PIIX_RCR_IOPORT) */
69 MemoryRegion rcr_mem;
6fe4464c 70
0a15cf08 71 bool has_acpi;
2d7630f5 72 bool has_pic;
ac433035 73 bool has_pit;
6fe4464c 74 bool has_usb;
0a15cf08 75 bool smm_enabled;
db1015e9 76};
14a026dd 77
9769cfc3
BB
78#define TYPE_PIIX_PCI_DEVICE "pci-piix"
79OBJECT_DECLARE_SIMPLE_TYPE(PIIXState, PIIX_PCI_DEVICE)
fe47ad3a 80
3963e139 81#define TYPE_PIIX3_DEVICE "PIIX3"
3963e139
BB
82#define TYPE_PIIX4_PCI_DEVICE "piix4-isa"
83
fff123b8 84#endif