docs: convert README, CODING_STYLE and HACKING to RST syntax
[qemu/ar7.git] / include / hw / ppc / pnv_lpc.h
blobf659410716e133e7cd3b32ca0a313dd2fe47ae52
1 /*
2 * QEMU PowerPC PowerNV LPC controller
4 * Copyright (c) 2016, IBM Corporation.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef PPC_PNV_LPC_H
21 #define PPC_PNV_LPC_H
23 #include "hw/ppc/pnv_psi.h"
25 #define TYPE_PNV_LPC "pnv-lpc"
26 #define PNV_LPC(obj) \
27 OBJECT_CHECK(PnvLpcController, (obj), TYPE_PNV_LPC)
28 #define TYPE_PNV8_LPC TYPE_PNV_LPC "-POWER8"
29 #define PNV8_LPC(obj) OBJECT_CHECK(PnvLpcController, (obj), TYPE_PNV8_LPC)
31 #define TYPE_PNV9_LPC TYPE_PNV_LPC "-POWER9"
32 #define PNV9_LPC(obj) OBJECT_CHECK(PnvLpcController, (obj), TYPE_PNV9_LPC)
34 typedef struct PnvLpcController {
35 DeviceState parent;
37 uint64_t eccb_stat_reg;
38 uint32_t eccb_data_reg;
40 /* OPB bus */
41 MemoryRegion opb_mr;
42 AddressSpace opb_as;
44 /* ISA IO and Memory space */
45 MemoryRegion isa_io;
46 MemoryRegion isa_mem;
47 MemoryRegion isa_fw;
49 /* Windows from OPB to ISA (aliases) */
50 MemoryRegion opb_isa_io;
51 MemoryRegion opb_isa_mem;
52 MemoryRegion opb_isa_fw;
54 /* Registers */
55 MemoryRegion lpc_hc_regs;
56 MemoryRegion opb_master_regs;
58 /* OPB Master LS registers */
59 uint32_t opb_irq_route0;
60 uint32_t opb_irq_route1;
61 uint32_t opb_irq_stat;
62 uint32_t opb_irq_mask;
63 uint32_t opb_irq_pol;
64 uint32_t opb_irq_input;
66 /* LPC HC registers */
67 uint32_t lpc_hc_fw_seg_idsel;
68 uint32_t lpc_hc_fw_rd_acc_size;
69 uint32_t lpc_hc_irqser_ctrl;
70 uint32_t lpc_hc_irqmask;
71 uint32_t lpc_hc_irqstat;
72 uint32_t lpc_hc_error_addr;
74 /* XSCOM registers */
75 MemoryRegion xscom_regs;
77 /* PSI to generate interrupts */
78 PnvPsi *psi;
79 } PnvLpcController;
81 #define PNV_LPC_CLASS(klass) \
82 OBJECT_CLASS_CHECK(PnvLpcClass, (klass), TYPE_PNV_LPC)
83 #define PNV_LPC_GET_CLASS(obj) \
84 OBJECT_GET_CLASS(PnvLpcClass, (obj), TYPE_PNV_LPC)
86 typedef struct PnvLpcClass {
87 DeviceClass parent_class;
89 int psi_irq;
91 DeviceRealize parent_realize;
92 } PnvLpcClass;
95 * Old compilers error on typdef forward declarations. Keep them happy.
97 struct PnvChip;
99 ISABus *pnv_lpc_isa_create(PnvLpcController *lpc, bool use_cpld, Error **errp);
100 int pnv_dt_lpc(struct PnvChip *chip, void *fdt, int root_offset);
102 #endif /* PPC_PNV_LPC_H */