blob: 6976b8331b60439cc131033777412ccfdf2d31bc [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Zyngierde29faa2016-12-19 19:25:00 +00002/*
3 * Copyright (C) 2016,2017 ARM Limited, All Rights Reserved.
4 * Author: Marc Zyngier <marc.zyngier@arm.com>
Marc Zyngierde29faa2016-12-19 19:25:00 +00005 */
6
7#ifndef __LINUX_IRQCHIP_ARM_GIC_V4_H
8#define __LINUX_IRQCHIP_ARM_GIC_V4_H
9
10struct its_vpe;
11
Marc Zyngierab604912017-10-08 18:48:06 +010012/*
13 * Maximum number of ITTs when GITS_TYPER.VMOVP == 0, using the
14 * ITSList mechanism to perform inter-ITS synchronization.
15 */
16#define GICv4_ITS_LIST_MAX 16
17
Marc Zyngierde29faa2016-12-19 19:25:00 +000018/* Embedded in kvm.arch */
19struct its_vm {
20 struct fwnode_handle *fwnode;
21 struct irq_domain *domain;
22 struct page *vprop_page;
23 struct its_vpe **vpes;
24 int nr_vpes;
25 irq_hw_number_t db_lpi_base;
26 unsigned long *db_bitmap;
27 int nr_db_lpis;
Marc Zyngier2247e1b2017-10-08 18:50:36 +010028 u32 vlpi_count[GICv4_ITS_LIST_MAX];
Marc Zyngierde29faa2016-12-19 19:25:00 +000029};
30
31/* Embedded in kvm_vcpu.arch */
32struct its_vpe {
33 struct page *vpt_page;
34 struct its_vm *its_vm;
Marc Zyngier5bd90b02019-11-07 16:04:11 +000035 /* per-vPE VLPI tracking */
36 atomic_t vlpi_count;
Marc Zyngierde29faa2016-12-19 19:25:00 +000037 /* Doorbell interrupt */
38 int irq;
39 irq_hw_number_t vpe_db_lpi;
Marc Zyngier8e01d9a2019-10-27 14:41:59 +000040 /* VPE resident */
41 bool resident;
Marc Zyngier64edfaa2019-12-24 11:10:29 +000042 union {
43 /* GICv4.0 implementations */
44 struct {
45 /* VPE proxy mapping */
46 int vpe_proxy_event;
47 /* Implementation Defined Area Invalid */
48 bool idai;
49 };
50 /* GICv4.1 implementations */
51 struct {
Marc Zyngier6d31b6f2020-03-04 20:33:21 +000052 struct fwnode_handle *fwnode;
53 struct irq_domain *sgi_domain;
Marc Zyngier166cba72020-03-04 20:33:15 +000054 struct {
55 u8 priority;
56 bool enabled;
57 bool group;
58 } sgi_config[16];
Marc Zyngier64edfaa2019-12-24 11:10:29 +000059 atomic_t vmapp_count;
60 };
61 };
62
Marc Zyngierde29faa2016-12-19 19:25:00 +000063 /*
Marc Zyngierf3a059212020-03-04 20:33:10 +000064 * Ensures mutual exclusion between affinity setting of the
65 * vPE and vLPI operations using vpe->col_idx.
66 */
67 raw_spinlock_t vpe_lock;
68 /*
Marc Zyngierde29faa2016-12-19 19:25:00 +000069 * This collection ID is used to indirect the target
70 * redistributor for this VPE. The ID itself isn't involved in
71 * programming of the ITS.
72 */
73 u16 col_idx;
74 /* Unique (system-wide) VPE identifier */
75 u16 vpe_id;
Marc Zyngierde29faa2016-12-19 19:25:00 +000076 /* Pending VLPIs on schedule out? */
77 bool pending_last;
78};
79
80/*
81 * struct its_vlpi_map: structure describing the mapping of a
82 * VLPI. Only to be interpreted in the context of a physical interrupt
83 * it complements. To be used as the vcpu_info passed to
84 * irq_set_vcpu_affinity().
85 *
86 * @vm: Pointer to the GICv4 notion of a VM
87 * @vpe: Pointer to the GICv4 notion of a virtual CPU (VPE)
88 * @vintid: Virtual LPI number
Marc Zyngierd4d7b4a2017-10-26 10:44:07 +010089 * @properties: Priority and enable bits (as written in the prop table)
Marc Zyngierde29faa2016-12-19 19:25:00 +000090 * @db_enabled: Is the VPE doorbell to be generated?
91 */
92struct its_vlpi_map {
93 struct its_vm *vm;
94 struct its_vpe *vpe;
95 u32 vintid;
Marc Zyngierd4d7b4a2017-10-26 10:44:07 +010096 u8 properties;
Marc Zyngierde29faa2016-12-19 19:25:00 +000097 bool db_enabled;
98};
99
100enum its_vcpu_info_cmd_type {
101 MAP_VLPI,
102 GET_VLPI,
103 PROP_UPDATE_VLPI,
104 PROP_UPDATE_AND_INV_VLPI,
105 SCHEDULE_VPE,
106 DESCHEDULE_VPE,
107 INVALL_VPE,
Marc Zyngier05d32df2020-03-04 20:33:19 +0000108 PROP_UPDATE_VSGI,
Marc Zyngierde29faa2016-12-19 19:25:00 +0000109};
110
111struct its_cmd_info {
112 enum its_vcpu_info_cmd_type cmd_type;
113 union {
114 struct its_vlpi_map *map;
115 u8 config;
Marc Zyngier91bf6392019-12-24 11:10:34 +0000116 bool req_db;
117 struct {
118 bool g0en;
119 bool g1en;
120 };
Marc Zyngier05d32df2020-03-04 20:33:19 +0000121 struct {
122 u8 priority;
123 bool group;
124 };
Marc Zyngierde29faa2016-12-19 19:25:00 +0000125 };
126};
127
Marc Zyngier7de5c0a2016-12-20 15:27:52 +0000128int its_alloc_vcpu_irqs(struct its_vm *vm);
129void its_free_vcpu_irqs(struct its_vm *vm);
Marc Zyngierae699ad2020-03-04 20:33:20 +0000130int its_make_vpe_resident(struct its_vpe *vpe, bool g0en, bool g1en);
131int its_make_vpe_non_resident(struct its_vpe *vpe, bool db);
Marc Zyngiereab84312016-12-20 15:31:02 +0000132int its_invall_vpe(struct its_vpe *vpe);
Marc Zyngierf2eac752016-12-21 21:50:32 +0000133int its_map_vlpi(int irq, struct its_vlpi_map *map);
134int its_get_vlpi(int irq, struct its_vlpi_map *map);
135int its_unmap_vlpi(int irq);
136int its_prop_update_vlpi(int irq, u8 config, bool inv);
Marc Zyngierd50676f2020-03-04 20:33:22 +0000137int its_prop_update_vsgi(int irq, u8 priority, bool group);
Marc Zyngier7de5c0a2016-12-20 15:27:52 +0000138
Marc Zyngier47f9d0b2017-11-13 16:21:33 +0000139struct irq_domain_ops;
Marc Zyngier166cba72020-03-04 20:33:15 +0000140int its_init_v4(struct irq_domain *domain,
141 const struct irq_domain_ops *vpe_ops,
142 const struct irq_domain_ops *sgi_ops);
Marc Zyngier3d63cb52016-12-20 15:31:54 +0000143
Marc Zyngierde29faa2016-12-19 19:25:00 +0000144#endif