spapr: introduce routines to delete the KVM IRQ device
[qemu/ar7.git] / include / hw / ppc / spapr_xive.h
blob0b5e972d52c8e8f3d88917fcfec40d2e766c8b2e
1 /*
2 * QEMU PowerPC sPAPR XIVE interrupt controller model
4 * Copyright (c) 2017-2018, IBM Corporation.
6 * This code is licensed under the GPL version 2 or later. See the
7 * COPYING file in the top-level directory.
8 */
10 #ifndef PPC_SPAPR_XIVE_H
11 #define PPC_SPAPR_XIVE_H
13 #include "hw/ppc/xive.h"
15 #define TYPE_SPAPR_XIVE "spapr-xive"
16 #define SPAPR_XIVE(obj) OBJECT_CHECK(SpaprXive, (obj), TYPE_SPAPR_XIVE)
18 typedef struct SpaprXive {
19 XiveRouter parent;
21 /* Internal interrupt source for IPIs and virtual devices */
22 XiveSource source;
23 hwaddr vc_base;
25 /* END ESB MMIOs */
26 XiveENDSource end_source;
27 hwaddr end_base;
29 /* DT */
30 gchar *nodename;
32 /* Routing table */
33 XiveEAS *eat;
34 uint32_t nr_irqs;
35 XiveEND *endt;
36 uint32_t nr_ends;
38 /* TIMA mapping address */
39 hwaddr tm_base;
40 MemoryRegion tm_mmio;
42 /* KVM support */
43 int fd;
44 void *tm_mmap;
45 VMChangeStateEntry *change;
46 } SpaprXive;
49 * The sPAPR machine has a unique XIVE IC device. Assign a fixed value
50 * to the controller block id value. It can nevertheless be changed
51 * for testing purpose.
53 #define SPAPR_XIVE_BLOCK_ID 0x0
55 bool spapr_xive_irq_claim(SpaprXive *xive, uint32_t lisn, bool lsi);
56 bool spapr_xive_irq_free(SpaprXive *xive, uint32_t lisn);
57 void spapr_xive_pic_print_info(SpaprXive *xive, Monitor *mon);
58 int spapr_xive_post_load(SpaprXive *xive, int version_id);
60 void spapr_xive_hcall_init(SpaprMachineState *spapr);
61 void spapr_dt_xive(SpaprMachineState *spapr, uint32_t nr_servers, void *fdt,
62 uint32_t phandle);
63 void spapr_xive_set_tctx_os_cam(XiveTCTX *tctx);
64 void spapr_xive_mmio_set_enabled(SpaprXive *xive, bool enable);
65 void spapr_xive_map_mmio(SpaprXive *xive);
67 int spapr_xive_end_to_target(uint8_t end_blk, uint32_t end_idx,
68 uint32_t *out_server, uint8_t *out_prio);
71 * KVM XIVE device helpers
73 void kvmppc_xive_connect(SpaprXive *xive, Error **errp);
74 void kvmppc_xive_disconnect(SpaprXive *xive, Error **errp);
75 void kvmppc_xive_reset(SpaprXive *xive, Error **errp);
76 void kvmppc_xive_set_source_config(SpaprXive *xive, uint32_t lisn, XiveEAS *eas,
77 Error **errp);
78 void kvmppc_xive_sync_source(SpaprXive *xive, uint32_t lisn, Error **errp);
79 uint64_t kvmppc_xive_esb_rw(XiveSource *xsrc, int srcno, uint32_t offset,
80 uint64_t data, bool write);
81 void kvmppc_xive_set_queue_config(SpaprXive *xive, uint8_t end_blk,
82 uint32_t end_idx, XiveEND *end,
83 Error **errp);
84 void kvmppc_xive_get_queue_config(SpaprXive *xive, uint8_t end_blk,
85 uint32_t end_idx, XiveEND *end,
86 Error **errp);
87 void kvmppc_xive_synchronize_state(SpaprXive *xive, Error **errp);
88 int kvmppc_xive_pre_save(SpaprXive *xive);
89 int kvmppc_xive_post_load(SpaprXive *xive, int version_id);
91 #endif /* PPC_SPAPR_XIVE_H */