1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2015,2016 ARM Ltd.
6 * Author: Andre Przywara <andre.przywara@arm.com>
10 #include <linux/kvm.h>
11 #include <linux/kvm_host.h>
12 #include <linux/interrupt.h>
13 #include <linux/list.h>
14 #include <linux/uaccess.h>
15 #include <linux/list_sort.h>
17 #include <linux/irqchip/arm-gic-v3.h>
19 #include <asm/kvm_emulate.h>
20 #include <asm/kvm_arm.h>
21 #include <asm/kvm_mmu.h>
24 #include "vgic-mmio.h"
26 static int vgic_its_save_tables_v0(struct vgic_its
*its
);
27 static int vgic_its_restore_tables_v0(struct vgic_its
*its
);
28 static int vgic_its_commit_v0(struct vgic_its
*its
);
29 static int update_lpi_config(struct kvm
*kvm
, struct vgic_irq
*irq
,
30 struct kvm_vcpu
*filter_vcpu
, bool needs_inv
);
33 * Creates a new (reference to a) struct vgic_irq for a given LPI.
34 * If this LPI is already mapped on another ITS, we increase its refcount
35 * and return a pointer to the existing structure.
36 * If this is a "new" LPI, we allocate and initialize a new struct vgic_irq.
37 * This function returns a pointer to the _unlocked_ structure.
39 static struct vgic_irq
*vgic_add_lpi(struct kvm
*kvm
, u32 intid
,
40 struct kvm_vcpu
*vcpu
)
42 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
43 struct vgic_irq
*irq
= vgic_get_irq(kvm
, NULL
, intid
), *oldirq
;
47 /* In this case there is no put, since we keep the reference. */
51 irq
= kzalloc(sizeof(struct vgic_irq
), GFP_KERNEL
);
53 return ERR_PTR(-ENOMEM
);
55 INIT_LIST_HEAD(&irq
->lpi_list
);
56 INIT_LIST_HEAD(&irq
->ap_list
);
57 raw_spin_lock_init(&irq
->irq_lock
);
59 irq
->config
= VGIC_CONFIG_EDGE
;
60 kref_init(&irq
->refcount
);
62 irq
->target_vcpu
= vcpu
;
65 raw_spin_lock_irqsave(&dist
->lpi_list_lock
, flags
);
68 * There could be a race with another vgic_add_lpi(), so we need to
69 * check that we don't add a second list entry with the same LPI.
71 list_for_each_entry(oldirq
, &dist
->lpi_list_head
, lpi_list
) {
72 if (oldirq
->intid
!= intid
)
75 /* Someone was faster with adding this LPI, lets use that. */
80 * This increases the refcount, the caller is expected to
81 * call vgic_put_irq() on the returned pointer once it's
82 * finished with the IRQ.
84 vgic_get_irq_kref(irq
);
89 list_add_tail(&irq
->lpi_list
, &dist
->lpi_list_head
);
90 dist
->lpi_list_count
++;
93 raw_spin_unlock_irqrestore(&dist
->lpi_list_lock
, flags
);
96 * We "cache" the configuration table entries in our struct vgic_irq's.
97 * However we only have those structs for mapped IRQs, so we read in
98 * the respective config data from memory here upon mapping the LPI.
100 ret
= update_lpi_config(kvm
, irq
, NULL
, false);
104 ret
= vgic_v3_lpi_sync_pending_status(kvm
, irq
);
112 struct list_head dev_list
;
114 /* the head for the list of ITTEs */
115 struct list_head itt_head
;
116 u32 num_eventid_bits
;
121 #define COLLECTION_NOT_MAPPED ((u32)~0)
123 struct its_collection
{
124 struct list_head coll_list
;
130 #define its_is_collection_mapped(coll) ((coll) && \
131 ((coll)->target_addr != COLLECTION_NOT_MAPPED))
134 struct list_head ite_list
;
136 struct vgic_irq
*irq
;
137 struct its_collection
*collection
;
141 struct vgic_translation_cache_entry
{
142 struct list_head entry
;
146 struct vgic_irq
*irq
;
150 * struct vgic_its_abi - ITS abi ops and settings
151 * @cte_esz: collection table entry size
152 * @dte_esz: device table entry size
153 * @ite_esz: interrupt translation table entry size
154 * @save tables: save the ITS tables into guest RAM
155 * @restore_tables: restore the ITS internal structs from tables
156 * stored in guest RAM
157 * @commit: initialize the registers which expose the ABI settings,
158 * especially the entry sizes
160 struct vgic_its_abi
{
164 int (*save_tables
)(struct vgic_its
*its
);
165 int (*restore_tables
)(struct vgic_its
*its
);
166 int (*commit
)(struct vgic_its
*its
);
170 #define ESZ_MAX ABI_0_ESZ
172 static const struct vgic_its_abi its_table_abi_versions
[] = {
174 .cte_esz
= ABI_0_ESZ
,
175 .dte_esz
= ABI_0_ESZ
,
176 .ite_esz
= ABI_0_ESZ
,
177 .save_tables
= vgic_its_save_tables_v0
,
178 .restore_tables
= vgic_its_restore_tables_v0
,
179 .commit
= vgic_its_commit_v0
,
183 #define NR_ITS_ABIS ARRAY_SIZE(its_table_abi_versions)
185 inline const struct vgic_its_abi
*vgic_its_get_abi(struct vgic_its
*its
)
187 return &its_table_abi_versions
[its
->abi_rev
];
190 static int vgic_its_set_abi(struct vgic_its
*its
, u32 rev
)
192 const struct vgic_its_abi
*abi
;
195 abi
= vgic_its_get_abi(its
);
196 return abi
->commit(its
);
200 * Find and returns a device in the device table for an ITS.
201 * Must be called with the its_lock mutex held.
203 static struct its_device
*find_its_device(struct vgic_its
*its
, u32 device_id
)
205 struct its_device
*device
;
207 list_for_each_entry(device
, &its
->device_list
, dev_list
)
208 if (device_id
== device
->device_id
)
215 * Find and returns an interrupt translation table entry (ITTE) for a given
216 * Device ID/Event ID pair on an ITS.
217 * Must be called with the its_lock mutex held.
219 static struct its_ite
*find_ite(struct vgic_its
*its
, u32 device_id
,
222 struct its_device
*device
;
225 device
= find_its_device(its
, device_id
);
229 list_for_each_entry(ite
, &device
->itt_head
, ite_list
)
230 if (ite
->event_id
== event_id
)
236 /* To be used as an iterator this macro misses the enclosing parentheses */
237 #define for_each_lpi_its(dev, ite, its) \
238 list_for_each_entry(dev, &(its)->device_list, dev_list) \
239 list_for_each_entry(ite, &(dev)->itt_head, ite_list)
241 #define GIC_LPI_OFFSET 8192
243 #define VITS_TYPER_IDBITS 16
244 #define VITS_TYPER_DEVBITS 16
245 #define VITS_DTE_MAX_DEVID_OFFSET (BIT(14) - 1)
246 #define VITS_ITE_MAX_EVENTID_OFFSET (BIT(16) - 1)
249 * Finds and returns a collection in the ITS collection table.
250 * Must be called with the its_lock mutex held.
252 static struct its_collection
*find_collection(struct vgic_its
*its
, int coll_id
)
254 struct its_collection
*collection
;
256 list_for_each_entry(collection
, &its
->collection_list
, coll_list
) {
257 if (coll_id
== collection
->collection_id
)
264 #define LPI_PROP_ENABLE_BIT(p) ((p) & LPI_PROP_ENABLED)
265 #define LPI_PROP_PRIORITY(p) ((p) & 0xfc)
268 * Reads the configuration data for a given LPI from guest memory and
269 * updates the fields in struct vgic_irq.
270 * If filter_vcpu is not NULL, applies only if the IRQ is targeting this
271 * VCPU. Unconditionally applies if filter_vcpu is NULL.
273 static int update_lpi_config(struct kvm
*kvm
, struct vgic_irq
*irq
,
274 struct kvm_vcpu
*filter_vcpu
, bool needs_inv
)
276 u64 propbase
= GICR_PROPBASER_ADDRESS(kvm
->arch
.vgic
.propbaser
);
281 ret
= kvm_read_guest_lock(kvm
, propbase
+ irq
->intid
- GIC_LPI_OFFSET
,
287 raw_spin_lock_irqsave(&irq
->irq_lock
, flags
);
289 if (!filter_vcpu
|| filter_vcpu
== irq
->target_vcpu
) {
290 irq
->priority
= LPI_PROP_PRIORITY(prop
);
291 irq
->enabled
= LPI_PROP_ENABLE_BIT(prop
);
294 vgic_queue_irq_unlock(kvm
, irq
, flags
);
299 raw_spin_unlock_irqrestore(&irq
->irq_lock
, flags
);
302 return its_prop_update_vlpi(irq
->host_irq
, prop
, needs_inv
);
308 * Create a snapshot of the current LPIs targeting @vcpu, so that we can
309 * enumerate those LPIs without holding any lock.
310 * Returns their number and puts the kmalloc'ed array into intid_ptr.
312 int vgic_copy_lpi_list(struct kvm
*kvm
, struct kvm_vcpu
*vcpu
, u32
**intid_ptr
)
314 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
315 struct vgic_irq
*irq
;
318 int irq_count
, i
= 0;
321 * There is an obvious race between allocating the array and LPIs
322 * being mapped/unmapped. If we ended up here as a result of a
323 * command, we're safe (locks are held, preventing another
324 * command). If coming from another path (such as enabling LPIs),
325 * we must be careful not to overrun the array.
327 irq_count
= READ_ONCE(dist
->lpi_list_count
);
328 intids
= kmalloc_array(irq_count
, sizeof(intids
[0]), GFP_KERNEL
);
332 raw_spin_lock_irqsave(&dist
->lpi_list_lock
, flags
);
333 list_for_each_entry(irq
, &dist
->lpi_list_head
, lpi_list
) {
336 /* We don't need to "get" the IRQ, as we hold the list lock. */
337 if (vcpu
&& irq
->target_vcpu
!= vcpu
)
339 intids
[i
++] = irq
->intid
;
341 raw_spin_unlock_irqrestore(&dist
->lpi_list_lock
, flags
);
347 static int update_affinity(struct vgic_irq
*irq
, struct kvm_vcpu
*vcpu
)
352 raw_spin_lock_irqsave(&irq
->irq_lock
, flags
);
353 irq
->target_vcpu
= vcpu
;
354 raw_spin_unlock_irqrestore(&irq
->irq_lock
, flags
);
357 struct its_vlpi_map map
;
359 ret
= its_get_vlpi(irq
->host_irq
, &map
);
364 atomic_dec(&map
.vpe
->vlpi_count
);
365 map
.vpe
= &vcpu
->arch
.vgic_cpu
.vgic_v3
.its_vpe
;
366 atomic_inc(&map
.vpe
->vlpi_count
);
368 ret
= its_map_vlpi(irq
->host_irq
, &map
);
375 * Promotes the ITS view of affinity of an ITTE (which redistributor this LPI
376 * is targeting) to the VGIC's view, which deals with target VCPUs.
377 * Needs to be called whenever either the collection for a LPIs has
378 * changed or the collection itself got retargeted.
380 static void update_affinity_ite(struct kvm
*kvm
, struct its_ite
*ite
)
382 struct kvm_vcpu
*vcpu
;
384 if (!its_is_collection_mapped(ite
->collection
))
387 vcpu
= kvm_get_vcpu(kvm
, ite
->collection
->target_addr
);
388 update_affinity(ite
->irq
, vcpu
);
392 * Updates the target VCPU for every LPI targeting this collection.
393 * Must be called with the its_lock mutex held.
395 static void update_affinity_collection(struct kvm
*kvm
, struct vgic_its
*its
,
396 struct its_collection
*coll
)
398 struct its_device
*device
;
401 for_each_lpi_its(device
, ite
, its
) {
402 if (!ite
->collection
|| coll
!= ite
->collection
)
405 update_affinity_ite(kvm
, ite
);
409 static u32
max_lpis_propbaser(u64 propbaser
)
411 int nr_idbits
= (propbaser
& 0x1f) + 1;
413 return 1U << min(nr_idbits
, INTERRUPT_ID_BITS_ITS
);
417 * Sync the pending table pending bit of LPIs targeting @vcpu
418 * with our own data structures. This relies on the LPI being
421 static int its_sync_lpi_pending_table(struct kvm_vcpu
*vcpu
)
423 gpa_t pendbase
= GICR_PENDBASER_ADDRESS(vcpu
->arch
.vgic_cpu
.pendbaser
);
424 struct vgic_irq
*irq
;
425 int last_byte_offset
= -1;
432 nr_irqs
= vgic_copy_lpi_list(vcpu
->kvm
, vcpu
, &intids
);
436 for (i
= 0; i
< nr_irqs
; i
++) {
437 int byte_offset
, bit_nr
;
439 byte_offset
= intids
[i
] / BITS_PER_BYTE
;
440 bit_nr
= intids
[i
] % BITS_PER_BYTE
;
443 * For contiguously allocated LPIs chances are we just read
444 * this very same byte in the last iteration. Reuse that.
446 if (byte_offset
!= last_byte_offset
) {
447 ret
= kvm_read_guest_lock(vcpu
->kvm
,
448 pendbase
+ byte_offset
,
454 last_byte_offset
= byte_offset
;
457 irq
= vgic_get_irq(vcpu
->kvm
, NULL
, intids
[i
]);
458 raw_spin_lock_irqsave(&irq
->irq_lock
, flags
);
459 irq
->pending_latch
= pendmask
& (1U << bit_nr
);
460 vgic_queue_irq_unlock(vcpu
->kvm
, irq
, flags
);
461 vgic_put_irq(vcpu
->kvm
, irq
);
469 static unsigned long vgic_mmio_read_its_typer(struct kvm
*kvm
,
470 struct vgic_its
*its
,
471 gpa_t addr
, unsigned int len
)
473 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
474 u64 reg
= GITS_TYPER_PLPIS
;
477 * We use linear CPU numbers for redistributor addressing,
478 * so GITS_TYPER.PTA is 0.
479 * Also we force all PROPBASER registers to be the same, so
480 * CommonLPIAff is 0 as well.
481 * To avoid memory waste in the guest, we keep the number of IDBits and
482 * DevBits low - as least for the time being.
484 reg
|= GIC_ENCODE_SZ(VITS_TYPER_DEVBITS
, 5) << GITS_TYPER_DEVBITS_SHIFT
;
485 reg
|= GIC_ENCODE_SZ(VITS_TYPER_IDBITS
, 5) << GITS_TYPER_IDBITS_SHIFT
;
486 reg
|= GIC_ENCODE_SZ(abi
->ite_esz
, 4) << GITS_TYPER_ITT_ENTRY_SIZE_SHIFT
;
488 return extract_bytes(reg
, addr
& 7, len
);
491 static unsigned long vgic_mmio_read_its_iidr(struct kvm
*kvm
,
492 struct vgic_its
*its
,
493 gpa_t addr
, unsigned int len
)
497 val
= (its
->abi_rev
<< GITS_IIDR_REV_SHIFT
) & GITS_IIDR_REV_MASK
;
498 val
|= (PRODUCT_ID_KVM
<< GITS_IIDR_PRODUCTID_SHIFT
) | IMPLEMENTER_ARM
;
502 static int vgic_mmio_uaccess_write_its_iidr(struct kvm
*kvm
,
503 struct vgic_its
*its
,
504 gpa_t addr
, unsigned int len
,
507 u32 rev
= GITS_IIDR_REV(val
);
509 if (rev
>= NR_ITS_ABIS
)
511 return vgic_its_set_abi(its
, rev
);
514 static unsigned long vgic_mmio_read_its_idregs(struct kvm
*kvm
,
515 struct vgic_its
*its
,
516 gpa_t addr
, unsigned int len
)
518 switch (addr
& 0xffff) {
520 return 0x92; /* part number, bits[7:0] */
522 return 0xb4; /* part number, bits[11:8] */
524 return GIC_PIDR2_ARCH_GICv3
| 0x0b;
526 return 0x40; /* This is a 64K software visible page */
527 /* The following are the ID registers for (any) GIC. */
541 static struct vgic_irq
*__vgic_its_check_cache(struct vgic_dist
*dist
,
543 u32 devid
, u32 eventid
)
545 struct vgic_translation_cache_entry
*cte
;
547 list_for_each_entry(cte
, &dist
->lpi_translation_cache
, entry
) {
549 * If we hit a NULL entry, there is nothing after this
555 if (cte
->db
!= db
|| cte
->devid
!= devid
||
556 cte
->eventid
!= eventid
)
560 * Move this entry to the head, as it is the most
563 if (!list_is_first(&cte
->entry
, &dist
->lpi_translation_cache
))
564 list_move(&cte
->entry
, &dist
->lpi_translation_cache
);
572 static struct vgic_irq
*vgic_its_check_cache(struct kvm
*kvm
, phys_addr_t db
,
573 u32 devid
, u32 eventid
)
575 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
576 struct vgic_irq
*irq
;
579 raw_spin_lock_irqsave(&dist
->lpi_list_lock
, flags
);
580 irq
= __vgic_its_check_cache(dist
, db
, devid
, eventid
);
581 raw_spin_unlock_irqrestore(&dist
->lpi_list_lock
, flags
);
586 static void vgic_its_cache_translation(struct kvm
*kvm
, struct vgic_its
*its
,
587 u32 devid
, u32 eventid
,
588 struct vgic_irq
*irq
)
590 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
591 struct vgic_translation_cache_entry
*cte
;
595 /* Do not cache a directly injected interrupt */
599 raw_spin_lock_irqsave(&dist
->lpi_list_lock
, flags
);
601 if (unlikely(list_empty(&dist
->lpi_translation_cache
)))
605 * We could have raced with another CPU caching the same
606 * translation behind our back, so let's check it is not in
609 db
= its
->vgic_its_base
+ GITS_TRANSLATER
;
610 if (__vgic_its_check_cache(dist
, db
, devid
, eventid
))
613 /* Always reuse the last entry (LRU policy) */
614 cte
= list_last_entry(&dist
->lpi_translation_cache
,
615 typeof(*cte
), entry
);
618 * Caching the translation implies having an extra reference
619 * to the interrupt, so drop the potential reference on what
620 * was in the cache, and increment it on the new interrupt.
623 __vgic_put_lpi_locked(kvm
, cte
->irq
);
625 vgic_get_irq_kref(irq
);
629 cte
->eventid
= eventid
;
632 /* Move the new translation to the head of the list */
633 list_move(&cte
->entry
, &dist
->lpi_translation_cache
);
636 raw_spin_unlock_irqrestore(&dist
->lpi_list_lock
, flags
);
639 void vgic_its_invalidate_cache(struct kvm
*kvm
)
641 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
642 struct vgic_translation_cache_entry
*cte
;
645 raw_spin_lock_irqsave(&dist
->lpi_list_lock
, flags
);
647 list_for_each_entry(cte
, &dist
->lpi_translation_cache
, entry
) {
649 * If we hit a NULL entry, there is nothing after this
655 __vgic_put_lpi_locked(kvm
, cte
->irq
);
659 raw_spin_unlock_irqrestore(&dist
->lpi_list_lock
, flags
);
662 int vgic_its_resolve_lpi(struct kvm
*kvm
, struct vgic_its
*its
,
663 u32 devid
, u32 eventid
, struct vgic_irq
**irq
)
665 struct kvm_vcpu
*vcpu
;
671 ite
= find_ite(its
, devid
, eventid
);
672 if (!ite
|| !its_is_collection_mapped(ite
->collection
))
673 return E_ITS_INT_UNMAPPED_INTERRUPT
;
675 vcpu
= kvm_get_vcpu(kvm
, ite
->collection
->target_addr
);
677 return E_ITS_INT_UNMAPPED_INTERRUPT
;
679 if (!vcpu
->arch
.vgic_cpu
.lpis_enabled
)
682 vgic_its_cache_translation(kvm
, its
, devid
, eventid
, ite
->irq
);
688 struct vgic_its
*vgic_msi_to_its(struct kvm
*kvm
, struct kvm_msi
*msi
)
691 struct kvm_io_device
*kvm_io_dev
;
692 struct vgic_io_device
*iodev
;
694 if (!vgic_has_its(kvm
))
695 return ERR_PTR(-ENODEV
);
697 if (!(msi
->flags
& KVM_MSI_VALID_DEVID
))
698 return ERR_PTR(-EINVAL
);
700 address
= (u64
)msi
->address_hi
<< 32 | msi
->address_lo
;
702 kvm_io_dev
= kvm_io_bus_get_dev(kvm
, KVM_MMIO_BUS
, address
);
704 return ERR_PTR(-EINVAL
);
706 if (kvm_io_dev
->ops
!= &kvm_io_gic_ops
)
707 return ERR_PTR(-EINVAL
);
709 iodev
= container_of(kvm_io_dev
, struct vgic_io_device
, dev
);
710 if (iodev
->iodev_type
!= IODEV_ITS
)
711 return ERR_PTR(-EINVAL
);
717 * Find the target VCPU and the LPI number for a given devid/eventid pair
718 * and make this IRQ pending, possibly injecting it.
719 * Must be called with the its_lock mutex held.
720 * Returns 0 on success, a positive error value for any ITS mapping
721 * related errors and negative error values for generic errors.
723 static int vgic_its_trigger_msi(struct kvm
*kvm
, struct vgic_its
*its
,
724 u32 devid
, u32 eventid
)
726 struct vgic_irq
*irq
= NULL
;
730 err
= vgic_its_resolve_lpi(kvm
, its
, devid
, eventid
, &irq
);
735 return irq_set_irqchip_state(irq
->host_irq
,
736 IRQCHIP_STATE_PENDING
, true);
738 raw_spin_lock_irqsave(&irq
->irq_lock
, flags
);
739 irq
->pending_latch
= true;
740 vgic_queue_irq_unlock(kvm
, irq
, flags
);
745 int vgic_its_inject_cached_translation(struct kvm
*kvm
, struct kvm_msi
*msi
)
747 struct vgic_irq
*irq
;
751 db
= (u64
)msi
->address_hi
<< 32 | msi
->address_lo
;
752 irq
= vgic_its_check_cache(kvm
, db
, msi
->devid
, msi
->data
);
757 raw_spin_lock_irqsave(&irq
->irq_lock
, flags
);
758 irq
->pending_latch
= true;
759 vgic_queue_irq_unlock(kvm
, irq
, flags
);
765 * Queries the KVM IO bus framework to get the ITS pointer from the given
767 * We then call vgic_its_trigger_msi() with the decoded data.
768 * According to the KVM_SIGNAL_MSI API description returns 1 on success.
770 int vgic_its_inject_msi(struct kvm
*kvm
, struct kvm_msi
*msi
)
772 struct vgic_its
*its
;
775 if (!vgic_its_inject_cached_translation(kvm
, msi
))
778 its
= vgic_msi_to_its(kvm
, msi
);
782 mutex_lock(&its
->its_lock
);
783 ret
= vgic_its_trigger_msi(kvm
, its
, msi
->devid
, msi
->data
);
784 mutex_unlock(&its
->its_lock
);
790 * KVM_SIGNAL_MSI demands a return value > 0 for success and 0
791 * if the guest has blocked the MSI. So we map any LPI mapping
792 * related error to that.
800 /* Requires the its_lock to be held. */
801 static void its_free_ite(struct kvm
*kvm
, struct its_ite
*ite
)
803 list_del(&ite
->ite_list
);
805 /* This put matches the get in vgic_add_lpi. */
808 WARN_ON(its_unmap_vlpi(ite
->irq
->host_irq
));
810 vgic_put_irq(kvm
, ite
->irq
);
816 static u64
its_cmd_mask_field(u64
*its_cmd
, int word
, int shift
, int size
)
818 return (le64_to_cpu(its_cmd
[word
]) >> shift
) & (BIT_ULL(size
) - 1);
821 #define its_cmd_get_command(cmd) its_cmd_mask_field(cmd, 0, 0, 8)
822 #define its_cmd_get_deviceid(cmd) its_cmd_mask_field(cmd, 0, 32, 32)
823 #define its_cmd_get_size(cmd) (its_cmd_mask_field(cmd, 1, 0, 5) + 1)
824 #define its_cmd_get_id(cmd) its_cmd_mask_field(cmd, 1, 0, 32)
825 #define its_cmd_get_physical_id(cmd) its_cmd_mask_field(cmd, 1, 32, 32)
826 #define its_cmd_get_collection(cmd) its_cmd_mask_field(cmd, 2, 0, 16)
827 #define its_cmd_get_ittaddr(cmd) (its_cmd_mask_field(cmd, 2, 8, 44) << 8)
828 #define its_cmd_get_target_addr(cmd) its_cmd_mask_field(cmd, 2, 16, 32)
829 #define its_cmd_get_validbit(cmd) its_cmd_mask_field(cmd, 2, 63, 1)
832 * The DISCARD command frees an Interrupt Translation Table Entry (ITTE).
833 * Must be called with the its_lock mutex held.
835 static int vgic_its_cmd_handle_discard(struct kvm
*kvm
, struct vgic_its
*its
,
838 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
839 u32 event_id
= its_cmd_get_id(its_cmd
);
843 ite
= find_ite(its
, device_id
, event_id
);
844 if (ite
&& ite
->collection
) {
846 * Though the spec talks about removing the pending state, we
847 * don't bother here since we clear the ITTE anyway and the
848 * pending state is a property of the ITTE struct.
850 vgic_its_invalidate_cache(kvm
);
852 its_free_ite(kvm
, ite
);
856 return E_ITS_DISCARD_UNMAPPED_INTERRUPT
;
860 * The MOVI command moves an ITTE to a different collection.
861 * Must be called with the its_lock mutex held.
863 static int vgic_its_cmd_handle_movi(struct kvm
*kvm
, struct vgic_its
*its
,
866 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
867 u32 event_id
= its_cmd_get_id(its_cmd
);
868 u32 coll_id
= its_cmd_get_collection(its_cmd
);
869 struct kvm_vcpu
*vcpu
;
871 struct its_collection
*collection
;
873 ite
= find_ite(its
, device_id
, event_id
);
875 return E_ITS_MOVI_UNMAPPED_INTERRUPT
;
877 if (!its_is_collection_mapped(ite
->collection
))
878 return E_ITS_MOVI_UNMAPPED_COLLECTION
;
880 collection
= find_collection(its
, coll_id
);
881 if (!its_is_collection_mapped(collection
))
882 return E_ITS_MOVI_UNMAPPED_COLLECTION
;
884 ite
->collection
= collection
;
885 vcpu
= kvm_get_vcpu(kvm
, collection
->target_addr
);
887 vgic_its_invalidate_cache(kvm
);
889 return update_affinity(ite
->irq
, vcpu
);
893 * Check whether an ID can be stored into the corresponding guest table.
894 * For a direct table this is pretty easy, but gets a bit nasty for
895 * indirect tables. We check whether the resulting guest physical address
896 * is actually valid (covered by a memslot and guest accessible).
897 * For this we have to read the respective first level entry.
899 static bool vgic_its_check_id(struct vgic_its
*its
, u64 baser
, u32 id
,
902 int l1_tbl_size
= GITS_BASER_NR_PAGES(baser
) * SZ_64K
;
903 u64 indirect_ptr
, type
= GITS_BASER_TYPE(baser
);
904 phys_addr_t base
= GITS_BASER_ADDR_48_to_52(baser
);
905 int esz
= GITS_BASER_ENTRY_SIZE(baser
);
911 case GITS_BASER_TYPE_DEVICE
:
912 if (id
>= BIT_ULL(VITS_TYPER_DEVBITS
))
915 case GITS_BASER_TYPE_COLLECTION
:
916 /* as GITS_TYPER.CIL == 0, ITS supports 16-bit collection ID */
917 if (id
>= BIT_ULL(16))
924 if (!(baser
& GITS_BASER_INDIRECT
)) {
927 if (id
>= (l1_tbl_size
/ esz
))
930 addr
= base
+ id
* esz
;
931 gfn
= addr
>> PAGE_SHIFT
;
939 /* calculate and check the index into the 1st level */
940 index
= id
/ (SZ_64K
/ esz
);
941 if (index
>= (l1_tbl_size
/ sizeof(u64
)))
944 /* Each 1st level entry is represented by a 64-bit value. */
945 if (kvm_read_guest_lock(its
->dev
->kvm
,
946 base
+ index
* sizeof(indirect_ptr
),
947 &indirect_ptr
, sizeof(indirect_ptr
)))
950 indirect_ptr
= le64_to_cpu(indirect_ptr
);
952 /* check the valid bit of the first level entry */
953 if (!(indirect_ptr
& BIT_ULL(63)))
956 /* Mask the guest physical address and calculate the frame number. */
957 indirect_ptr
&= GENMASK_ULL(51, 16);
959 /* Find the address of the actual entry */
960 index
= id
% (SZ_64K
/ esz
);
961 indirect_ptr
+= index
* esz
;
962 gfn
= indirect_ptr
>> PAGE_SHIFT
;
965 *eaddr
= indirect_ptr
;
968 idx
= srcu_read_lock(&its
->dev
->kvm
->srcu
);
969 ret
= kvm_is_visible_gfn(its
->dev
->kvm
, gfn
);
970 srcu_read_unlock(&its
->dev
->kvm
->srcu
, idx
);
974 static int vgic_its_alloc_collection(struct vgic_its
*its
,
975 struct its_collection
**colp
,
978 struct its_collection
*collection
;
980 if (!vgic_its_check_id(its
, its
->baser_coll_table
, coll_id
, NULL
))
981 return E_ITS_MAPC_COLLECTION_OOR
;
983 collection
= kzalloc(sizeof(*collection
), GFP_KERNEL
);
987 collection
->collection_id
= coll_id
;
988 collection
->target_addr
= COLLECTION_NOT_MAPPED
;
990 list_add_tail(&collection
->coll_list
, &its
->collection_list
);
996 static void vgic_its_free_collection(struct vgic_its
*its
, u32 coll_id
)
998 struct its_collection
*collection
;
999 struct its_device
*device
;
1000 struct its_ite
*ite
;
1003 * Clearing the mapping for that collection ID removes the
1004 * entry from the list. If there wasn't any before, we can
1007 collection
= find_collection(its
, coll_id
);
1011 for_each_lpi_its(device
, ite
, its
)
1012 if (ite
->collection
&&
1013 ite
->collection
->collection_id
== coll_id
)
1014 ite
->collection
= NULL
;
1016 list_del(&collection
->coll_list
);
1020 /* Must be called with its_lock mutex held */
1021 static struct its_ite
*vgic_its_alloc_ite(struct its_device
*device
,
1022 struct its_collection
*collection
,
1025 struct its_ite
*ite
;
1027 ite
= kzalloc(sizeof(*ite
), GFP_KERNEL
);
1029 return ERR_PTR(-ENOMEM
);
1031 ite
->event_id
= event_id
;
1032 ite
->collection
= collection
;
1034 list_add_tail(&ite
->ite_list
, &device
->itt_head
);
1039 * The MAPTI and MAPI commands map LPIs to ITTEs.
1040 * Must be called with its_lock mutex held.
1042 static int vgic_its_cmd_handle_mapi(struct kvm
*kvm
, struct vgic_its
*its
,
1045 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
1046 u32 event_id
= its_cmd_get_id(its_cmd
);
1047 u32 coll_id
= its_cmd_get_collection(its_cmd
);
1048 struct its_ite
*ite
;
1049 struct kvm_vcpu
*vcpu
= NULL
;
1050 struct its_device
*device
;
1051 struct its_collection
*collection
, *new_coll
= NULL
;
1052 struct vgic_irq
*irq
;
1055 device
= find_its_device(its
, device_id
);
1057 return E_ITS_MAPTI_UNMAPPED_DEVICE
;
1059 if (event_id
>= BIT_ULL(device
->num_eventid_bits
))
1060 return E_ITS_MAPTI_ID_OOR
;
1062 if (its_cmd_get_command(its_cmd
) == GITS_CMD_MAPTI
)
1063 lpi_nr
= its_cmd_get_physical_id(its_cmd
);
1066 if (lpi_nr
< GIC_LPI_OFFSET
||
1067 lpi_nr
>= max_lpis_propbaser(kvm
->arch
.vgic
.propbaser
))
1068 return E_ITS_MAPTI_PHYSICALID_OOR
;
1070 /* If there is an existing mapping, behavior is UNPREDICTABLE. */
1071 if (find_ite(its
, device_id
, event_id
))
1074 collection
= find_collection(its
, coll_id
);
1076 int ret
= vgic_its_alloc_collection(its
, &collection
, coll_id
);
1079 new_coll
= collection
;
1082 ite
= vgic_its_alloc_ite(device
, collection
, event_id
);
1085 vgic_its_free_collection(its
, coll_id
);
1086 return PTR_ERR(ite
);
1089 if (its_is_collection_mapped(collection
))
1090 vcpu
= kvm_get_vcpu(kvm
, collection
->target_addr
);
1092 irq
= vgic_add_lpi(kvm
, lpi_nr
, vcpu
);
1095 vgic_its_free_collection(its
, coll_id
);
1096 its_free_ite(kvm
, ite
);
1097 return PTR_ERR(irq
);
1104 /* Requires the its_lock to be held. */
1105 static void vgic_its_free_device(struct kvm
*kvm
, struct its_device
*device
)
1107 struct its_ite
*ite
, *temp
;
1110 * The spec says that unmapping a device with still valid
1111 * ITTEs associated is UNPREDICTABLE. We remove all ITTEs,
1112 * since we cannot leave the memory unreferenced.
1114 list_for_each_entry_safe(ite
, temp
, &device
->itt_head
, ite_list
)
1115 its_free_ite(kvm
, ite
);
1117 vgic_its_invalidate_cache(kvm
);
1119 list_del(&device
->dev_list
);
1123 /* its lock must be held */
1124 static void vgic_its_free_device_list(struct kvm
*kvm
, struct vgic_its
*its
)
1126 struct its_device
*cur
, *temp
;
1128 list_for_each_entry_safe(cur
, temp
, &its
->device_list
, dev_list
)
1129 vgic_its_free_device(kvm
, cur
);
1132 /* its lock must be held */
1133 static void vgic_its_free_collection_list(struct kvm
*kvm
, struct vgic_its
*its
)
1135 struct its_collection
*cur
, *temp
;
1137 list_for_each_entry_safe(cur
, temp
, &its
->collection_list
, coll_list
)
1138 vgic_its_free_collection(its
, cur
->collection_id
);
1141 /* Must be called with its_lock mutex held */
1142 static struct its_device
*vgic_its_alloc_device(struct vgic_its
*its
,
1143 u32 device_id
, gpa_t itt_addr
,
1144 u8 num_eventid_bits
)
1146 struct its_device
*device
;
1148 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
1150 return ERR_PTR(-ENOMEM
);
1152 device
->device_id
= device_id
;
1153 device
->itt_addr
= itt_addr
;
1154 device
->num_eventid_bits
= num_eventid_bits
;
1155 INIT_LIST_HEAD(&device
->itt_head
);
1157 list_add_tail(&device
->dev_list
, &its
->device_list
);
1162 * MAPD maps or unmaps a device ID to Interrupt Translation Tables (ITTs).
1163 * Must be called with the its_lock mutex held.
1165 static int vgic_its_cmd_handle_mapd(struct kvm
*kvm
, struct vgic_its
*its
,
1168 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
1169 bool valid
= its_cmd_get_validbit(its_cmd
);
1170 u8 num_eventid_bits
= its_cmd_get_size(its_cmd
);
1171 gpa_t itt_addr
= its_cmd_get_ittaddr(its_cmd
);
1172 struct its_device
*device
;
1174 if (!vgic_its_check_id(its
, its
->baser_device_table
, device_id
, NULL
))
1175 return E_ITS_MAPD_DEVICE_OOR
;
1177 if (valid
&& num_eventid_bits
> VITS_TYPER_IDBITS
)
1178 return E_ITS_MAPD_ITTSIZE_OOR
;
1180 device
= find_its_device(its
, device_id
);
1183 * The spec says that calling MAPD on an already mapped device
1184 * invalidates all cached data for this device. We implement this
1185 * by removing the mapping and re-establishing it.
1188 vgic_its_free_device(kvm
, device
);
1191 * The spec does not say whether unmapping a not-mapped device
1192 * is an error, so we are done in any case.
1197 device
= vgic_its_alloc_device(its
, device_id
, itt_addr
,
1200 return PTR_ERR_OR_ZERO(device
);
1204 * The MAPC command maps collection IDs to redistributors.
1205 * Must be called with the its_lock mutex held.
1207 static int vgic_its_cmd_handle_mapc(struct kvm
*kvm
, struct vgic_its
*its
,
1212 struct its_collection
*collection
;
1215 valid
= its_cmd_get_validbit(its_cmd
);
1216 coll_id
= its_cmd_get_collection(its_cmd
);
1217 target_addr
= its_cmd_get_target_addr(its_cmd
);
1219 if (target_addr
>= atomic_read(&kvm
->online_vcpus
))
1220 return E_ITS_MAPC_PROCNUM_OOR
;
1223 vgic_its_free_collection(its
, coll_id
);
1224 vgic_its_invalidate_cache(kvm
);
1226 collection
= find_collection(its
, coll_id
);
1231 ret
= vgic_its_alloc_collection(its
, &collection
,
1235 collection
->target_addr
= target_addr
;
1237 collection
->target_addr
= target_addr
;
1238 update_affinity_collection(kvm
, its
, collection
);
1246 * The CLEAR command removes the pending state for a particular LPI.
1247 * Must be called with the its_lock mutex held.
1249 static int vgic_its_cmd_handle_clear(struct kvm
*kvm
, struct vgic_its
*its
,
1252 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
1253 u32 event_id
= its_cmd_get_id(its_cmd
);
1254 struct its_ite
*ite
;
1257 ite
= find_ite(its
, device_id
, event_id
);
1259 return E_ITS_CLEAR_UNMAPPED_INTERRUPT
;
1261 ite
->irq
->pending_latch
= false;
1264 return irq_set_irqchip_state(ite
->irq
->host_irq
,
1265 IRQCHIP_STATE_PENDING
, false);
1271 * The INV command syncs the configuration bits from the memory table.
1272 * Must be called with the its_lock mutex held.
1274 static int vgic_its_cmd_handle_inv(struct kvm
*kvm
, struct vgic_its
*its
,
1277 u32 device_id
= its_cmd_get_deviceid(its_cmd
);
1278 u32 event_id
= its_cmd_get_id(its_cmd
);
1279 struct its_ite
*ite
;
1282 ite
= find_ite(its
, device_id
, event_id
);
1284 return E_ITS_INV_UNMAPPED_INTERRUPT
;
1286 return update_lpi_config(kvm
, ite
->irq
, NULL
, true);
1290 * The INVALL command requests flushing of all IRQ data in this collection.
1291 * Find the VCPU mapped to that collection, then iterate over the VM's list
1292 * of mapped LPIs and update the configuration for each IRQ which targets
1293 * the specified vcpu. The configuration will be read from the in-memory
1294 * configuration table.
1295 * Must be called with the its_lock mutex held.
1297 static int vgic_its_cmd_handle_invall(struct kvm
*kvm
, struct vgic_its
*its
,
1300 u32 coll_id
= its_cmd_get_collection(its_cmd
);
1301 struct its_collection
*collection
;
1302 struct kvm_vcpu
*vcpu
;
1303 struct vgic_irq
*irq
;
1307 collection
= find_collection(its
, coll_id
);
1308 if (!its_is_collection_mapped(collection
))
1309 return E_ITS_INVALL_UNMAPPED_COLLECTION
;
1311 vcpu
= kvm_get_vcpu(kvm
, collection
->target_addr
);
1313 irq_count
= vgic_copy_lpi_list(kvm
, vcpu
, &intids
);
1317 for (i
= 0; i
< irq_count
; i
++) {
1318 irq
= vgic_get_irq(kvm
, NULL
, intids
[i
]);
1321 update_lpi_config(kvm
, irq
, vcpu
, false);
1322 vgic_put_irq(kvm
, irq
);
1327 if (vcpu
->arch
.vgic_cpu
.vgic_v3
.its_vpe
.its_vm
)
1328 its_invall_vpe(&vcpu
->arch
.vgic_cpu
.vgic_v3
.its_vpe
);
1334 * The MOVALL command moves the pending state of all IRQs targeting one
1335 * redistributor to another. We don't hold the pending state in the VCPUs,
1336 * but in the IRQs instead, so there is really not much to do for us here.
1337 * However the spec says that no IRQ must target the old redistributor
1338 * afterwards, so we make sure that no LPI is using the associated target_vcpu.
1339 * This command affects all LPIs in the system that target that redistributor.
1341 static int vgic_its_cmd_handle_movall(struct kvm
*kvm
, struct vgic_its
*its
,
1344 u32 target1_addr
= its_cmd_get_target_addr(its_cmd
);
1345 u32 target2_addr
= its_cmd_mask_field(its_cmd
, 3, 16, 32);
1346 struct kvm_vcpu
*vcpu1
, *vcpu2
;
1347 struct vgic_irq
*irq
;
1351 if (target1_addr
>= atomic_read(&kvm
->online_vcpus
) ||
1352 target2_addr
>= atomic_read(&kvm
->online_vcpus
))
1353 return E_ITS_MOVALL_PROCNUM_OOR
;
1355 if (target1_addr
== target2_addr
)
1358 vcpu1
= kvm_get_vcpu(kvm
, target1_addr
);
1359 vcpu2
= kvm_get_vcpu(kvm
, target2_addr
);
1361 irq_count
= vgic_copy_lpi_list(kvm
, vcpu1
, &intids
);
1365 for (i
= 0; i
< irq_count
; i
++) {
1366 irq
= vgic_get_irq(kvm
, NULL
, intids
[i
]);
1368 update_affinity(irq
, vcpu2
);
1370 vgic_put_irq(kvm
, irq
);
1373 vgic_its_invalidate_cache(kvm
);
1380 * The INT command injects the LPI associated with that DevID/EvID pair.
1381 * Must be called with the its_lock mutex held.
1383 static int vgic_its_cmd_handle_int(struct kvm
*kvm
, struct vgic_its
*its
,
1386 u32 msi_data
= its_cmd_get_id(its_cmd
);
1387 u64 msi_devid
= its_cmd_get_deviceid(its_cmd
);
1389 return vgic_its_trigger_msi(kvm
, its
, msi_devid
, msi_data
);
1393 * This function is called with the its_cmd lock held, but the ITS data
1394 * structure lock dropped.
1396 static int vgic_its_handle_command(struct kvm
*kvm
, struct vgic_its
*its
,
1401 mutex_lock(&its
->its_lock
);
1402 switch (its_cmd_get_command(its_cmd
)) {
1404 ret
= vgic_its_cmd_handle_mapd(kvm
, its
, its_cmd
);
1407 ret
= vgic_its_cmd_handle_mapc(kvm
, its
, its_cmd
);
1410 ret
= vgic_its_cmd_handle_mapi(kvm
, its
, its_cmd
);
1412 case GITS_CMD_MAPTI
:
1413 ret
= vgic_its_cmd_handle_mapi(kvm
, its
, its_cmd
);
1416 ret
= vgic_its_cmd_handle_movi(kvm
, its
, its_cmd
);
1418 case GITS_CMD_DISCARD
:
1419 ret
= vgic_its_cmd_handle_discard(kvm
, its
, its_cmd
);
1421 case GITS_CMD_CLEAR
:
1422 ret
= vgic_its_cmd_handle_clear(kvm
, its
, its_cmd
);
1424 case GITS_CMD_MOVALL
:
1425 ret
= vgic_its_cmd_handle_movall(kvm
, its
, its_cmd
);
1428 ret
= vgic_its_cmd_handle_int(kvm
, its
, its_cmd
);
1431 ret
= vgic_its_cmd_handle_inv(kvm
, its
, its_cmd
);
1433 case GITS_CMD_INVALL
:
1434 ret
= vgic_its_cmd_handle_invall(kvm
, its
, its_cmd
);
1437 /* we ignore this command: we are in sync all of the time */
1441 mutex_unlock(&its
->its_lock
);
1446 static u64
vgic_sanitise_its_baser(u64 reg
)
1448 reg
= vgic_sanitise_field(reg
, GITS_BASER_SHAREABILITY_MASK
,
1449 GITS_BASER_SHAREABILITY_SHIFT
,
1450 vgic_sanitise_shareability
);
1451 reg
= vgic_sanitise_field(reg
, GITS_BASER_INNER_CACHEABILITY_MASK
,
1452 GITS_BASER_INNER_CACHEABILITY_SHIFT
,
1453 vgic_sanitise_inner_cacheability
);
1454 reg
= vgic_sanitise_field(reg
, GITS_BASER_OUTER_CACHEABILITY_MASK
,
1455 GITS_BASER_OUTER_CACHEABILITY_SHIFT
,
1456 vgic_sanitise_outer_cacheability
);
1458 /* We support only one (ITS) page size: 64K */
1459 reg
= (reg
& ~GITS_BASER_PAGE_SIZE_MASK
) | GITS_BASER_PAGE_SIZE_64K
;
1464 static u64
vgic_sanitise_its_cbaser(u64 reg
)
1466 reg
= vgic_sanitise_field(reg
, GITS_CBASER_SHAREABILITY_MASK
,
1467 GITS_CBASER_SHAREABILITY_SHIFT
,
1468 vgic_sanitise_shareability
);
1469 reg
= vgic_sanitise_field(reg
, GITS_CBASER_INNER_CACHEABILITY_MASK
,
1470 GITS_CBASER_INNER_CACHEABILITY_SHIFT
,
1471 vgic_sanitise_inner_cacheability
);
1472 reg
= vgic_sanitise_field(reg
, GITS_CBASER_OUTER_CACHEABILITY_MASK
,
1473 GITS_CBASER_OUTER_CACHEABILITY_SHIFT
,
1474 vgic_sanitise_outer_cacheability
);
1476 /* Sanitise the physical address to be 64k aligned. */
1477 reg
&= ~GENMASK_ULL(15, 12);
1482 static unsigned long vgic_mmio_read_its_cbaser(struct kvm
*kvm
,
1483 struct vgic_its
*its
,
1484 gpa_t addr
, unsigned int len
)
1486 return extract_bytes(its
->cbaser
, addr
& 7, len
);
1489 static void vgic_mmio_write_its_cbaser(struct kvm
*kvm
, struct vgic_its
*its
,
1490 gpa_t addr
, unsigned int len
,
1493 /* When GITS_CTLR.Enable is 1, this register is RO. */
1497 mutex_lock(&its
->cmd_lock
);
1498 its
->cbaser
= update_64bit_reg(its
->cbaser
, addr
& 7, len
, val
);
1499 its
->cbaser
= vgic_sanitise_its_cbaser(its
->cbaser
);
1502 * CWRITER is architecturally UNKNOWN on reset, but we need to reset
1503 * it to CREADR to make sure we start with an empty command buffer.
1505 its
->cwriter
= its
->creadr
;
1506 mutex_unlock(&its
->cmd_lock
);
1509 #define ITS_CMD_BUFFER_SIZE(baser) ((((baser) & 0xff) + 1) << 12)
1510 #define ITS_CMD_SIZE 32
1511 #define ITS_CMD_OFFSET(reg) ((reg) & GENMASK(19, 5))
1513 /* Must be called with the cmd_lock held. */
1514 static void vgic_its_process_commands(struct kvm
*kvm
, struct vgic_its
*its
)
1519 /* Commands are only processed when the ITS is enabled. */
1523 cbaser
= GITS_CBASER_ADDRESS(its
->cbaser
);
1525 while (its
->cwriter
!= its
->creadr
) {
1526 int ret
= kvm_read_guest_lock(kvm
, cbaser
+ its
->creadr
,
1527 cmd_buf
, ITS_CMD_SIZE
);
1529 * If kvm_read_guest() fails, this could be due to the guest
1530 * programming a bogus value in CBASER or something else going
1531 * wrong from which we cannot easily recover.
1532 * According to section 6.3.2 in the GICv3 spec we can just
1533 * ignore that command then.
1536 vgic_its_handle_command(kvm
, its
, cmd_buf
);
1538 its
->creadr
+= ITS_CMD_SIZE
;
1539 if (its
->creadr
== ITS_CMD_BUFFER_SIZE(its
->cbaser
))
1545 * By writing to CWRITER the guest announces new commands to be processed.
1546 * To avoid any races in the first place, we take the its_cmd lock, which
1547 * protects our ring buffer variables, so that there is only one user
1548 * per ITS handling commands at a given time.
1550 static void vgic_mmio_write_its_cwriter(struct kvm
*kvm
, struct vgic_its
*its
,
1551 gpa_t addr
, unsigned int len
,
1559 mutex_lock(&its
->cmd_lock
);
1561 reg
= update_64bit_reg(its
->cwriter
, addr
& 7, len
, val
);
1562 reg
= ITS_CMD_OFFSET(reg
);
1563 if (reg
>= ITS_CMD_BUFFER_SIZE(its
->cbaser
)) {
1564 mutex_unlock(&its
->cmd_lock
);
1569 vgic_its_process_commands(kvm
, its
);
1571 mutex_unlock(&its
->cmd_lock
);
1574 static unsigned long vgic_mmio_read_its_cwriter(struct kvm
*kvm
,
1575 struct vgic_its
*its
,
1576 gpa_t addr
, unsigned int len
)
1578 return extract_bytes(its
->cwriter
, addr
& 0x7, len
);
1581 static unsigned long vgic_mmio_read_its_creadr(struct kvm
*kvm
,
1582 struct vgic_its
*its
,
1583 gpa_t addr
, unsigned int len
)
1585 return extract_bytes(its
->creadr
, addr
& 0x7, len
);
1588 static int vgic_mmio_uaccess_write_its_creadr(struct kvm
*kvm
,
1589 struct vgic_its
*its
,
1590 gpa_t addr
, unsigned int len
,
1596 mutex_lock(&its
->cmd_lock
);
1603 cmd_offset
= ITS_CMD_OFFSET(val
);
1604 if (cmd_offset
>= ITS_CMD_BUFFER_SIZE(its
->cbaser
)) {
1609 its
->creadr
= cmd_offset
;
1611 mutex_unlock(&its
->cmd_lock
);
1615 #define BASER_INDEX(addr) (((addr) / sizeof(u64)) & 0x7)
1616 static unsigned long vgic_mmio_read_its_baser(struct kvm
*kvm
,
1617 struct vgic_its
*its
,
1618 gpa_t addr
, unsigned int len
)
1622 switch (BASER_INDEX(addr
)) {
1624 reg
= its
->baser_device_table
;
1627 reg
= its
->baser_coll_table
;
1634 return extract_bytes(reg
, addr
& 7, len
);
1637 #define GITS_BASER_RO_MASK (GENMASK_ULL(52, 48) | GENMASK_ULL(58, 56))
1638 static void vgic_mmio_write_its_baser(struct kvm
*kvm
,
1639 struct vgic_its
*its
,
1640 gpa_t addr
, unsigned int len
,
1643 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
1644 u64 entry_size
, table_type
;
1645 u64 reg
, *regptr
, clearbits
= 0;
1647 /* When GITS_CTLR.Enable is 1, we ignore write accesses. */
1651 switch (BASER_INDEX(addr
)) {
1653 regptr
= &its
->baser_device_table
;
1654 entry_size
= abi
->dte_esz
;
1655 table_type
= GITS_BASER_TYPE_DEVICE
;
1658 regptr
= &its
->baser_coll_table
;
1659 entry_size
= abi
->cte_esz
;
1660 table_type
= GITS_BASER_TYPE_COLLECTION
;
1661 clearbits
= GITS_BASER_INDIRECT
;
1667 reg
= update_64bit_reg(*regptr
, addr
& 7, len
, val
);
1668 reg
&= ~GITS_BASER_RO_MASK
;
1671 reg
|= (entry_size
- 1) << GITS_BASER_ENTRY_SIZE_SHIFT
;
1672 reg
|= table_type
<< GITS_BASER_TYPE_SHIFT
;
1673 reg
= vgic_sanitise_its_baser(reg
);
1677 if (!(reg
& GITS_BASER_VALID
)) {
1678 /* Take the its_lock to prevent a race with a save/restore */
1679 mutex_lock(&its
->its_lock
);
1680 switch (table_type
) {
1681 case GITS_BASER_TYPE_DEVICE
:
1682 vgic_its_free_device_list(kvm
, its
);
1684 case GITS_BASER_TYPE_COLLECTION
:
1685 vgic_its_free_collection_list(kvm
, its
);
1688 mutex_unlock(&its
->its_lock
);
1692 static unsigned long vgic_mmio_read_its_ctlr(struct kvm
*vcpu
,
1693 struct vgic_its
*its
,
1694 gpa_t addr
, unsigned int len
)
1698 mutex_lock(&its
->cmd_lock
);
1699 if (its
->creadr
== its
->cwriter
)
1700 reg
|= GITS_CTLR_QUIESCENT
;
1702 reg
|= GITS_CTLR_ENABLE
;
1703 mutex_unlock(&its
->cmd_lock
);
1708 static void vgic_mmio_write_its_ctlr(struct kvm
*kvm
, struct vgic_its
*its
,
1709 gpa_t addr
, unsigned int len
,
1712 mutex_lock(&its
->cmd_lock
);
1715 * It is UNPREDICTABLE to enable the ITS if any of the CBASER or
1716 * device/collection BASER are invalid
1718 if (!its
->enabled
&& (val
& GITS_CTLR_ENABLE
) &&
1719 (!(its
->baser_device_table
& GITS_BASER_VALID
) ||
1720 !(its
->baser_coll_table
& GITS_BASER_VALID
) ||
1721 !(its
->cbaser
& GITS_CBASER_VALID
)))
1724 its
->enabled
= !!(val
& GITS_CTLR_ENABLE
);
1726 vgic_its_invalidate_cache(kvm
);
1729 * Try to process any pending commands. This function bails out early
1730 * if the ITS is disabled or no commands have been queued.
1732 vgic_its_process_commands(kvm
, its
);
1735 mutex_unlock(&its
->cmd_lock
);
1738 #define REGISTER_ITS_DESC(off, rd, wr, length, acc) \
1740 .reg_offset = off, \
1742 .access_flags = acc, \
1747 #define REGISTER_ITS_DESC_UACCESS(off, rd, wr, uwr, length, acc)\
1749 .reg_offset = off, \
1751 .access_flags = acc, \
1754 .uaccess_its_write = uwr, \
1757 static void its_mmio_write_wi(struct kvm
*kvm
, struct vgic_its
*its
,
1758 gpa_t addr
, unsigned int len
, unsigned long val
)
1763 static struct vgic_register_region its_registers
[] = {
1764 REGISTER_ITS_DESC(GITS_CTLR
,
1765 vgic_mmio_read_its_ctlr
, vgic_mmio_write_its_ctlr
, 4,
1767 REGISTER_ITS_DESC_UACCESS(GITS_IIDR
,
1768 vgic_mmio_read_its_iidr
, its_mmio_write_wi
,
1769 vgic_mmio_uaccess_write_its_iidr
, 4,
1771 REGISTER_ITS_DESC(GITS_TYPER
,
1772 vgic_mmio_read_its_typer
, its_mmio_write_wi
, 8,
1773 VGIC_ACCESS_64bit
| VGIC_ACCESS_32bit
),
1774 REGISTER_ITS_DESC(GITS_CBASER
,
1775 vgic_mmio_read_its_cbaser
, vgic_mmio_write_its_cbaser
, 8,
1776 VGIC_ACCESS_64bit
| VGIC_ACCESS_32bit
),
1777 REGISTER_ITS_DESC(GITS_CWRITER
,
1778 vgic_mmio_read_its_cwriter
, vgic_mmio_write_its_cwriter
, 8,
1779 VGIC_ACCESS_64bit
| VGIC_ACCESS_32bit
),
1780 REGISTER_ITS_DESC_UACCESS(GITS_CREADR
,
1781 vgic_mmio_read_its_creadr
, its_mmio_write_wi
,
1782 vgic_mmio_uaccess_write_its_creadr
, 8,
1783 VGIC_ACCESS_64bit
| VGIC_ACCESS_32bit
),
1784 REGISTER_ITS_DESC(GITS_BASER
,
1785 vgic_mmio_read_its_baser
, vgic_mmio_write_its_baser
, 0x40,
1786 VGIC_ACCESS_64bit
| VGIC_ACCESS_32bit
),
1787 REGISTER_ITS_DESC(GITS_IDREGS_BASE
,
1788 vgic_mmio_read_its_idregs
, its_mmio_write_wi
, 0x30,
1792 /* This is called on setting the LPI enable bit in the redistributor. */
1793 void vgic_enable_lpis(struct kvm_vcpu
*vcpu
)
1795 if (!(vcpu
->arch
.vgic_cpu
.pendbaser
& GICR_PENDBASER_PTZ
))
1796 its_sync_lpi_pending_table(vcpu
);
1799 static int vgic_register_its_iodev(struct kvm
*kvm
, struct vgic_its
*its
,
1802 struct vgic_io_device
*iodev
= &its
->iodev
;
1805 mutex_lock(&kvm
->slots_lock
);
1806 if (!IS_VGIC_ADDR_UNDEF(its
->vgic_its_base
)) {
1811 its
->vgic_its_base
= addr
;
1812 iodev
->regions
= its_registers
;
1813 iodev
->nr_regions
= ARRAY_SIZE(its_registers
);
1814 kvm_iodevice_init(&iodev
->dev
, &kvm_io_gic_ops
);
1816 iodev
->base_addr
= its
->vgic_its_base
;
1817 iodev
->iodev_type
= IODEV_ITS
;
1819 ret
= kvm_io_bus_register_dev(kvm
, KVM_MMIO_BUS
, iodev
->base_addr
,
1820 KVM_VGIC_V3_ITS_SIZE
, &iodev
->dev
);
1822 mutex_unlock(&kvm
->slots_lock
);
1827 /* Default is 16 cached LPIs per vcpu */
1828 #define LPI_DEFAULT_PCPU_CACHE_SIZE 16
1830 void vgic_lpi_translation_cache_init(struct kvm
*kvm
)
1832 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
1836 if (!list_empty(&dist
->lpi_translation_cache
))
1839 sz
= atomic_read(&kvm
->online_vcpus
) * LPI_DEFAULT_PCPU_CACHE_SIZE
;
1841 for (i
= 0; i
< sz
; i
++) {
1842 struct vgic_translation_cache_entry
*cte
;
1844 /* An allocation failure is not fatal */
1845 cte
= kzalloc(sizeof(*cte
), GFP_KERNEL
);
1849 INIT_LIST_HEAD(&cte
->entry
);
1850 list_add(&cte
->entry
, &dist
->lpi_translation_cache
);
1854 void vgic_lpi_translation_cache_destroy(struct kvm
*kvm
)
1856 struct vgic_dist
*dist
= &kvm
->arch
.vgic
;
1857 struct vgic_translation_cache_entry
*cte
, *tmp
;
1859 vgic_its_invalidate_cache(kvm
);
1861 list_for_each_entry_safe(cte
, tmp
,
1862 &dist
->lpi_translation_cache
, entry
) {
1863 list_del(&cte
->entry
);
1868 #define INITIAL_BASER_VALUE \
1869 (GIC_BASER_CACHEABILITY(GITS_BASER, INNER, RaWb) | \
1870 GIC_BASER_CACHEABILITY(GITS_BASER, OUTER, SameAsInner) | \
1871 GIC_BASER_SHAREABILITY(GITS_BASER, InnerShareable) | \
1872 GITS_BASER_PAGE_SIZE_64K)
1874 #define INITIAL_PROPBASER_VALUE \
1875 (GIC_BASER_CACHEABILITY(GICR_PROPBASER, INNER, RaWb) | \
1876 GIC_BASER_CACHEABILITY(GICR_PROPBASER, OUTER, SameAsInner) | \
1877 GIC_BASER_SHAREABILITY(GICR_PROPBASER, InnerShareable))
1879 static int vgic_its_create(struct kvm_device
*dev
, u32 type
)
1881 struct vgic_its
*its
;
1883 if (type
!= KVM_DEV_TYPE_ARM_VGIC_ITS
)
1886 its
= kzalloc(sizeof(struct vgic_its
), GFP_KERNEL
);
1890 if (vgic_initialized(dev
->kvm
)) {
1891 int ret
= vgic_v4_init(dev
->kvm
);
1897 vgic_lpi_translation_cache_init(dev
->kvm
);
1900 mutex_init(&its
->its_lock
);
1901 mutex_init(&its
->cmd_lock
);
1903 its
->vgic_its_base
= VGIC_ADDR_UNDEF
;
1905 INIT_LIST_HEAD(&its
->device_list
);
1906 INIT_LIST_HEAD(&its
->collection_list
);
1908 dev
->kvm
->arch
.vgic
.msis_require_devid
= true;
1909 dev
->kvm
->arch
.vgic
.has_its
= true;
1910 its
->enabled
= false;
1913 its
->baser_device_table
= INITIAL_BASER_VALUE
|
1914 ((u64
)GITS_BASER_TYPE_DEVICE
<< GITS_BASER_TYPE_SHIFT
);
1915 its
->baser_coll_table
= INITIAL_BASER_VALUE
|
1916 ((u64
)GITS_BASER_TYPE_COLLECTION
<< GITS_BASER_TYPE_SHIFT
);
1917 dev
->kvm
->arch
.vgic
.propbaser
= INITIAL_PROPBASER_VALUE
;
1921 return vgic_its_set_abi(its
, NR_ITS_ABIS
- 1);
1924 static void vgic_its_destroy(struct kvm_device
*kvm_dev
)
1926 struct kvm
*kvm
= kvm_dev
->kvm
;
1927 struct vgic_its
*its
= kvm_dev
->private;
1929 mutex_lock(&its
->its_lock
);
1931 vgic_its_free_device_list(kvm
, its
);
1932 vgic_its_free_collection_list(kvm
, its
);
1934 mutex_unlock(&its
->its_lock
);
1936 kfree(kvm_dev
);/* alloc by kvm_ioctl_create_device, free by .destroy */
1939 static int vgic_its_has_attr_regs(struct kvm_device
*dev
,
1940 struct kvm_device_attr
*attr
)
1942 const struct vgic_register_region
*region
;
1943 gpa_t offset
= attr
->attr
;
1946 align
= (offset
< GITS_TYPER
) || (offset
>= GITS_PIDR4
) ? 0x3 : 0x7;
1951 region
= vgic_find_mmio_region(its_registers
,
1952 ARRAY_SIZE(its_registers
),
1960 static int vgic_its_attr_regs_access(struct kvm_device
*dev
,
1961 struct kvm_device_attr
*attr
,
1962 u64
*reg
, bool is_write
)
1964 const struct vgic_register_region
*region
;
1965 struct vgic_its
*its
;
1971 offset
= attr
->attr
;
1974 * Although the spec supports upper/lower 32-bit accesses to
1975 * 64-bit ITS registers, the userspace ABI requires 64-bit
1976 * accesses to all 64-bit wide registers. We therefore only
1977 * support 32-bit accesses to GITS_CTLR, GITS_IIDR and GITS ID
1980 if ((offset
< GITS_TYPER
) || (offset
>= GITS_PIDR4
))
1988 mutex_lock(&dev
->kvm
->lock
);
1990 if (IS_VGIC_ADDR_UNDEF(its
->vgic_its_base
)) {
1995 region
= vgic_find_mmio_region(its_registers
,
1996 ARRAY_SIZE(its_registers
),
2003 if (!lock_all_vcpus(dev
->kvm
)) {
2008 addr
= its
->vgic_its_base
+ offset
;
2010 len
= region
->access_flags
& VGIC_ACCESS_64bit
? 8 : 4;
2013 if (region
->uaccess_its_write
)
2014 ret
= region
->uaccess_its_write(dev
->kvm
, its
, addr
,
2017 region
->its_write(dev
->kvm
, its
, addr
, len
, *reg
);
2019 *reg
= region
->its_read(dev
->kvm
, its
, addr
, len
);
2021 unlock_all_vcpus(dev
->kvm
);
2023 mutex_unlock(&dev
->kvm
->lock
);
2027 static u32
compute_next_devid_offset(struct list_head
*h
,
2028 struct its_device
*dev
)
2030 struct its_device
*next
;
2033 if (list_is_last(&dev
->dev_list
, h
))
2035 next
= list_next_entry(dev
, dev_list
);
2036 next_offset
= next
->device_id
- dev
->device_id
;
2038 return min_t(u32
, next_offset
, VITS_DTE_MAX_DEVID_OFFSET
);
2041 static u32
compute_next_eventid_offset(struct list_head
*h
, struct its_ite
*ite
)
2043 struct its_ite
*next
;
2046 if (list_is_last(&ite
->ite_list
, h
))
2048 next
= list_next_entry(ite
, ite_list
);
2049 next_offset
= next
->event_id
- ite
->event_id
;
2051 return min_t(u32
, next_offset
, VITS_ITE_MAX_EVENTID_OFFSET
);
2055 * entry_fn_t - Callback called on a table entry restore path
2057 * @id: id of the entry
2058 * @entry: pointer to the entry
2059 * @opaque: pointer to an opaque data
2061 * Return: < 0 on error, 0 if last element was identified, id offset to next
2064 typedef int (*entry_fn_t
)(struct vgic_its
*its
, u32 id
, void *entry
,
2068 * scan_its_table - Scan a contiguous table in guest RAM and applies a function
2072 * @base: base gpa of the table
2073 * @size: size of the table in bytes
2074 * @esz: entry size in bytes
2075 * @start_id: the ID of the first entry in the table
2076 * (non zero for 2d level tables)
2077 * @fn: function to apply on each entry
2079 * Return: < 0 on error, 0 if last element was identified, 1 otherwise
2080 * (the last element may not be found on second level tables)
2082 static int scan_its_table(struct vgic_its
*its
, gpa_t base
, int size
, u32 esz
,
2083 int start_id
, entry_fn_t fn
, void *opaque
)
2085 struct kvm
*kvm
= its
->dev
->kvm
;
2086 unsigned long len
= size
;
2089 char entry
[ESZ_MAX
];
2092 memset(entry
, 0, esz
);
2098 ret
= kvm_read_guest_lock(kvm
, gpa
, entry
, esz
);
2102 next_offset
= fn(its
, id
, entry
, opaque
);
2103 if (next_offset
<= 0)
2106 byte_offset
= next_offset
* esz
;
2115 * vgic_its_save_ite - Save an interrupt translation entry at @gpa
2117 static int vgic_its_save_ite(struct vgic_its
*its
, struct its_device
*dev
,
2118 struct its_ite
*ite
, gpa_t gpa
, int ite_esz
)
2120 struct kvm
*kvm
= its
->dev
->kvm
;
2124 next_offset
= compute_next_eventid_offset(&dev
->itt_head
, ite
);
2125 val
= ((u64
)next_offset
<< KVM_ITS_ITE_NEXT_SHIFT
) |
2126 ((u64
)ite
->irq
->intid
<< KVM_ITS_ITE_PINTID_SHIFT
) |
2127 ite
->collection
->collection_id
;
2128 val
= cpu_to_le64(val
);
2129 return kvm_write_guest_lock(kvm
, gpa
, &val
, ite_esz
);
2133 * vgic_its_restore_ite - restore an interrupt translation entry
2134 * @event_id: id used for indexing
2135 * @ptr: pointer to the ITE entry
2136 * @opaque: pointer to the its_device
2138 static int vgic_its_restore_ite(struct vgic_its
*its
, u32 event_id
,
2139 void *ptr
, void *opaque
)
2141 struct its_device
*dev
= (struct its_device
*)opaque
;
2142 struct its_collection
*collection
;
2143 struct kvm
*kvm
= its
->dev
->kvm
;
2144 struct kvm_vcpu
*vcpu
= NULL
;
2146 u64
*p
= (u64
*)ptr
;
2147 struct vgic_irq
*irq
;
2148 u32 coll_id
, lpi_id
;
2149 struct its_ite
*ite
;
2154 val
= le64_to_cpu(val
);
2156 coll_id
= val
& KVM_ITS_ITE_ICID_MASK
;
2157 lpi_id
= (val
& KVM_ITS_ITE_PINTID_MASK
) >> KVM_ITS_ITE_PINTID_SHIFT
;
2160 return 1; /* invalid entry, no choice but to scan next entry */
2162 if (lpi_id
< VGIC_MIN_LPI
)
2165 offset
= val
>> KVM_ITS_ITE_NEXT_SHIFT
;
2166 if (event_id
+ offset
>= BIT_ULL(dev
->num_eventid_bits
))
2169 collection
= find_collection(its
, coll_id
);
2173 ite
= vgic_its_alloc_ite(dev
, collection
, event_id
);
2175 return PTR_ERR(ite
);
2177 if (its_is_collection_mapped(collection
))
2178 vcpu
= kvm_get_vcpu(kvm
, collection
->target_addr
);
2180 irq
= vgic_add_lpi(kvm
, lpi_id
, vcpu
);
2182 return PTR_ERR(irq
);
2188 static int vgic_its_ite_cmp(void *priv
, struct list_head
*a
,
2189 struct list_head
*b
)
2191 struct its_ite
*itea
= container_of(a
, struct its_ite
, ite_list
);
2192 struct its_ite
*iteb
= container_of(b
, struct its_ite
, ite_list
);
2194 if (itea
->event_id
< iteb
->event_id
)
2200 static int vgic_its_save_itt(struct vgic_its
*its
, struct its_device
*device
)
2202 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2203 gpa_t base
= device
->itt_addr
;
2204 struct its_ite
*ite
;
2206 int ite_esz
= abi
->ite_esz
;
2208 list_sort(NULL
, &device
->itt_head
, vgic_its_ite_cmp
);
2210 list_for_each_entry(ite
, &device
->itt_head
, ite_list
) {
2211 gpa_t gpa
= base
+ ite
->event_id
* ite_esz
;
2214 * If an LPI carries the HW bit, this means that this
2215 * interrupt is controlled by GICv4, and we do not
2216 * have direct access to that state. Let's simply fail
2217 * the save operation...
2222 ret
= vgic_its_save_ite(its
, device
, ite
, gpa
, ite_esz
);
2230 * vgic_its_restore_itt - restore the ITT of a device
2233 * @dev: device handle
2235 * Return 0 on success, < 0 on error
2237 static int vgic_its_restore_itt(struct vgic_its
*its
, struct its_device
*dev
)
2239 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2240 gpa_t base
= dev
->itt_addr
;
2242 int ite_esz
= abi
->ite_esz
;
2243 size_t max_size
= BIT_ULL(dev
->num_eventid_bits
) * ite_esz
;
2245 ret
= scan_its_table(its
, base
, max_size
, ite_esz
, 0,
2246 vgic_its_restore_ite
, dev
);
2248 /* scan_its_table returns +1 if all ITEs are invalid */
2256 * vgic_its_save_dte - Save a device table entry at a given GPA
2262 static int vgic_its_save_dte(struct vgic_its
*its
, struct its_device
*dev
,
2263 gpa_t ptr
, int dte_esz
)
2265 struct kvm
*kvm
= its
->dev
->kvm
;
2266 u64 val
, itt_addr_field
;
2269 itt_addr_field
= dev
->itt_addr
>> 8;
2270 next_offset
= compute_next_devid_offset(&its
->device_list
, dev
);
2271 val
= (1ULL << KVM_ITS_DTE_VALID_SHIFT
|
2272 ((u64
)next_offset
<< KVM_ITS_DTE_NEXT_SHIFT
) |
2273 (itt_addr_field
<< KVM_ITS_DTE_ITTADDR_SHIFT
) |
2274 (dev
->num_eventid_bits
- 1));
2275 val
= cpu_to_le64(val
);
2276 return kvm_write_guest_lock(kvm
, ptr
, &val
, dte_esz
);
2280 * vgic_its_restore_dte - restore a device table entry
2283 * @id: device id the DTE corresponds to
2284 * @ptr: kernel VA where the 8 byte DTE is located
2287 * Return: < 0 on error, 0 if the dte is the last one, id offset to the
2288 * next dte otherwise
2290 static int vgic_its_restore_dte(struct vgic_its
*its
, u32 id
,
2291 void *ptr
, void *opaque
)
2293 struct its_device
*dev
;
2295 u8 num_eventid_bits
;
2296 u64 entry
= *(u64
*)ptr
;
2301 entry
= le64_to_cpu(entry
);
2303 valid
= entry
>> KVM_ITS_DTE_VALID_SHIFT
;
2304 num_eventid_bits
= (entry
& KVM_ITS_DTE_SIZE_MASK
) + 1;
2305 itt_addr
= ((entry
& KVM_ITS_DTE_ITTADDR_MASK
)
2306 >> KVM_ITS_DTE_ITTADDR_SHIFT
) << 8;
2311 /* dte entry is valid */
2312 offset
= (entry
& KVM_ITS_DTE_NEXT_MASK
) >> KVM_ITS_DTE_NEXT_SHIFT
;
2314 dev
= vgic_its_alloc_device(its
, id
, itt_addr
, num_eventid_bits
);
2316 return PTR_ERR(dev
);
2318 ret
= vgic_its_restore_itt(its
, dev
);
2320 vgic_its_free_device(its
->dev
->kvm
, dev
);
2327 static int vgic_its_device_cmp(void *priv
, struct list_head
*a
,
2328 struct list_head
*b
)
2330 struct its_device
*deva
= container_of(a
, struct its_device
, dev_list
);
2331 struct its_device
*devb
= container_of(b
, struct its_device
, dev_list
);
2333 if (deva
->device_id
< devb
->device_id
)
2340 * vgic_its_save_device_tables - Save the device table and all ITT
2343 * L1/L2 handling is hidden by vgic_its_check_id() helper which directly
2344 * returns the GPA of the device entry
2346 static int vgic_its_save_device_tables(struct vgic_its
*its
)
2348 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2349 u64 baser
= its
->baser_device_table
;
2350 struct its_device
*dev
;
2351 int dte_esz
= abi
->dte_esz
;
2353 if (!(baser
& GITS_BASER_VALID
))
2356 list_sort(NULL
, &its
->device_list
, vgic_its_device_cmp
);
2358 list_for_each_entry(dev
, &its
->device_list
, dev_list
) {
2362 if (!vgic_its_check_id(its
, baser
,
2363 dev
->device_id
, &eaddr
))
2366 ret
= vgic_its_save_itt(its
, dev
);
2370 ret
= vgic_its_save_dte(its
, dev
, eaddr
, dte_esz
);
2378 * handle_l1_dte - callback used for L1 device table entries (2 stage case)
2381 * @id: index of the entry in the L1 table
2385 * L1 table entries are scanned by steps of 1 entry
2386 * Return < 0 if error, 0 if last dte was found when scanning the L2
2387 * table, +1 otherwise (meaning next L1 entry must be scanned)
2389 static int handle_l1_dte(struct vgic_its
*its
, u32 id
, void *addr
,
2392 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2393 int l2_start_id
= id
* (SZ_64K
/ abi
->dte_esz
);
2394 u64 entry
= *(u64
*)addr
;
2395 int dte_esz
= abi
->dte_esz
;
2399 entry
= le64_to_cpu(entry
);
2401 if (!(entry
& KVM_ITS_L1E_VALID_MASK
))
2404 gpa
= entry
& KVM_ITS_L1E_ADDR_MASK
;
2406 ret
= scan_its_table(its
, gpa
, SZ_64K
, dte_esz
,
2407 l2_start_id
, vgic_its_restore_dte
, NULL
);
2413 * vgic_its_restore_device_tables - Restore the device table and all ITT
2414 * from guest RAM to internal data structs
2416 static int vgic_its_restore_device_tables(struct vgic_its
*its
)
2418 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2419 u64 baser
= its
->baser_device_table
;
2421 int l1_tbl_size
= GITS_BASER_NR_PAGES(baser
) * SZ_64K
;
2424 if (!(baser
& GITS_BASER_VALID
))
2427 l1_gpa
= GITS_BASER_ADDR_48_to_52(baser
);
2429 if (baser
& GITS_BASER_INDIRECT
) {
2430 l1_esz
= GITS_LVL1_ENTRY_SIZE
;
2431 ret
= scan_its_table(its
, l1_gpa
, l1_tbl_size
, l1_esz
, 0,
2432 handle_l1_dte
, NULL
);
2434 l1_esz
= abi
->dte_esz
;
2435 ret
= scan_its_table(its
, l1_gpa
, l1_tbl_size
, l1_esz
, 0,
2436 vgic_its_restore_dte
, NULL
);
2439 /* scan_its_table returns +1 if all entries are invalid */
2446 static int vgic_its_save_cte(struct vgic_its
*its
,
2447 struct its_collection
*collection
,
2452 val
= (1ULL << KVM_ITS_CTE_VALID_SHIFT
|
2453 ((u64
)collection
->target_addr
<< KVM_ITS_CTE_RDBASE_SHIFT
) |
2454 collection
->collection_id
);
2455 val
= cpu_to_le64(val
);
2456 return kvm_write_guest_lock(its
->dev
->kvm
, gpa
, &val
, esz
);
2459 static int vgic_its_restore_cte(struct vgic_its
*its
, gpa_t gpa
, int esz
)
2461 struct its_collection
*collection
;
2462 struct kvm
*kvm
= its
->dev
->kvm
;
2463 u32 target_addr
, coll_id
;
2467 BUG_ON(esz
> sizeof(val
));
2468 ret
= kvm_read_guest_lock(kvm
, gpa
, &val
, esz
);
2471 val
= le64_to_cpu(val
);
2472 if (!(val
& KVM_ITS_CTE_VALID_MASK
))
2475 target_addr
= (u32
)(val
>> KVM_ITS_CTE_RDBASE_SHIFT
);
2476 coll_id
= val
& KVM_ITS_CTE_ICID_MASK
;
2478 if (target_addr
>= atomic_read(&kvm
->online_vcpus
))
2481 collection
= find_collection(its
, coll_id
);
2484 ret
= vgic_its_alloc_collection(its
, &collection
, coll_id
);
2487 collection
->target_addr
= target_addr
;
2492 * vgic_its_save_collection_table - Save the collection table into
2495 static int vgic_its_save_collection_table(struct vgic_its
*its
)
2497 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2498 u64 baser
= its
->baser_coll_table
;
2499 gpa_t gpa
= GITS_BASER_ADDR_48_to_52(baser
);
2500 struct its_collection
*collection
;
2502 size_t max_size
, filled
= 0;
2503 int ret
, cte_esz
= abi
->cte_esz
;
2505 if (!(baser
& GITS_BASER_VALID
))
2508 max_size
= GITS_BASER_NR_PAGES(baser
) * SZ_64K
;
2510 list_for_each_entry(collection
, &its
->collection_list
, coll_list
) {
2511 ret
= vgic_its_save_cte(its
, collection
, gpa
, cte_esz
);
2518 if (filled
== max_size
)
2522 * table is not fully filled, add a last dummy element
2523 * with valid bit unset
2526 BUG_ON(cte_esz
> sizeof(val
));
2527 ret
= kvm_write_guest_lock(its
->dev
->kvm
, gpa
, &val
, cte_esz
);
2532 * vgic_its_restore_collection_table - reads the collection table
2533 * in guest memory and restores the ITS internal state. Requires the
2534 * BASER registers to be restored before.
2536 static int vgic_its_restore_collection_table(struct vgic_its
*its
)
2538 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2539 u64 baser
= its
->baser_coll_table
;
2540 int cte_esz
= abi
->cte_esz
;
2541 size_t max_size
, read
= 0;
2545 if (!(baser
& GITS_BASER_VALID
))
2548 gpa
= GITS_BASER_ADDR_48_to_52(baser
);
2550 max_size
= GITS_BASER_NR_PAGES(baser
) * SZ_64K
;
2552 while (read
< max_size
) {
2553 ret
= vgic_its_restore_cte(its
, gpa
, cte_esz
);
2567 * vgic_its_save_tables_v0 - Save the ITS tables into guest ARM
2568 * according to v0 ABI
2570 static int vgic_its_save_tables_v0(struct vgic_its
*its
)
2574 ret
= vgic_its_save_device_tables(its
);
2578 return vgic_its_save_collection_table(its
);
2582 * vgic_its_restore_tables_v0 - Restore the ITS tables from guest RAM
2583 * to internal data structs according to V0 ABI
2586 static int vgic_its_restore_tables_v0(struct vgic_its
*its
)
2590 ret
= vgic_its_restore_collection_table(its
);
2594 return vgic_its_restore_device_tables(its
);
2597 static int vgic_its_commit_v0(struct vgic_its
*its
)
2599 const struct vgic_its_abi
*abi
;
2601 abi
= vgic_its_get_abi(its
);
2602 its
->baser_coll_table
&= ~GITS_BASER_ENTRY_SIZE_MASK
;
2603 its
->baser_device_table
&= ~GITS_BASER_ENTRY_SIZE_MASK
;
2605 its
->baser_coll_table
|= (GIC_ENCODE_SZ(abi
->cte_esz
, 5)
2606 << GITS_BASER_ENTRY_SIZE_SHIFT
);
2608 its
->baser_device_table
|= (GIC_ENCODE_SZ(abi
->dte_esz
, 5)
2609 << GITS_BASER_ENTRY_SIZE_SHIFT
);
2613 static void vgic_its_reset(struct kvm
*kvm
, struct vgic_its
*its
)
2615 /* We need to keep the ABI specific field values */
2616 its
->baser_coll_table
&= ~GITS_BASER_VALID
;
2617 its
->baser_device_table
&= ~GITS_BASER_VALID
;
2622 vgic_its_free_device_list(kvm
, its
);
2623 vgic_its_free_collection_list(kvm
, its
);
2626 static int vgic_its_has_attr(struct kvm_device
*dev
,
2627 struct kvm_device_attr
*attr
)
2629 switch (attr
->group
) {
2630 case KVM_DEV_ARM_VGIC_GRP_ADDR
:
2631 switch (attr
->attr
) {
2632 case KVM_VGIC_ITS_ADDR_TYPE
:
2636 case KVM_DEV_ARM_VGIC_GRP_CTRL
:
2637 switch (attr
->attr
) {
2638 case KVM_DEV_ARM_VGIC_CTRL_INIT
:
2640 case KVM_DEV_ARM_ITS_CTRL_RESET
:
2642 case KVM_DEV_ARM_ITS_SAVE_TABLES
:
2644 case KVM_DEV_ARM_ITS_RESTORE_TABLES
:
2648 case KVM_DEV_ARM_VGIC_GRP_ITS_REGS
:
2649 return vgic_its_has_attr_regs(dev
, attr
);
2654 static int vgic_its_ctrl(struct kvm
*kvm
, struct vgic_its
*its
, u64 attr
)
2656 const struct vgic_its_abi
*abi
= vgic_its_get_abi(its
);
2659 if (attr
== KVM_DEV_ARM_VGIC_CTRL_INIT
) /* Nothing to do */
2662 mutex_lock(&kvm
->lock
);
2663 mutex_lock(&its
->its_lock
);
2665 if (!lock_all_vcpus(kvm
)) {
2666 mutex_unlock(&its
->its_lock
);
2667 mutex_unlock(&kvm
->lock
);
2672 case KVM_DEV_ARM_ITS_CTRL_RESET
:
2673 vgic_its_reset(kvm
, its
);
2675 case KVM_DEV_ARM_ITS_SAVE_TABLES
:
2676 ret
= abi
->save_tables(its
);
2678 case KVM_DEV_ARM_ITS_RESTORE_TABLES
:
2679 ret
= abi
->restore_tables(its
);
2683 unlock_all_vcpus(kvm
);
2684 mutex_unlock(&its
->its_lock
);
2685 mutex_unlock(&kvm
->lock
);
2689 static int vgic_its_set_attr(struct kvm_device
*dev
,
2690 struct kvm_device_attr
*attr
)
2692 struct vgic_its
*its
= dev
->private;
2695 switch (attr
->group
) {
2696 case KVM_DEV_ARM_VGIC_GRP_ADDR
: {
2697 u64 __user
*uaddr
= (u64 __user
*)(long)attr
->addr
;
2698 unsigned long type
= (unsigned long)attr
->attr
;
2701 if (type
!= KVM_VGIC_ITS_ADDR_TYPE
)
2704 if (copy_from_user(&addr
, uaddr
, sizeof(addr
)))
2707 ret
= vgic_check_ioaddr(dev
->kvm
, &its
->vgic_its_base
,
2712 return vgic_register_its_iodev(dev
->kvm
, its
, addr
);
2714 case KVM_DEV_ARM_VGIC_GRP_CTRL
:
2715 return vgic_its_ctrl(dev
->kvm
, its
, attr
->attr
);
2716 case KVM_DEV_ARM_VGIC_GRP_ITS_REGS
: {
2717 u64 __user
*uaddr
= (u64 __user
*)(long)attr
->addr
;
2720 if (get_user(reg
, uaddr
))
2723 return vgic_its_attr_regs_access(dev
, attr
, ®
, true);
2729 static int vgic_its_get_attr(struct kvm_device
*dev
,
2730 struct kvm_device_attr
*attr
)
2732 switch (attr
->group
) {
2733 case KVM_DEV_ARM_VGIC_GRP_ADDR
: {
2734 struct vgic_its
*its
= dev
->private;
2735 u64 addr
= its
->vgic_its_base
;
2736 u64 __user
*uaddr
= (u64 __user
*)(long)attr
->addr
;
2737 unsigned long type
= (unsigned long)attr
->attr
;
2739 if (type
!= KVM_VGIC_ITS_ADDR_TYPE
)
2742 if (copy_to_user(uaddr
, &addr
, sizeof(addr
)))
2746 case KVM_DEV_ARM_VGIC_GRP_ITS_REGS
: {
2747 u64 __user
*uaddr
= (u64 __user
*)(long)attr
->addr
;
2751 ret
= vgic_its_attr_regs_access(dev
, attr
, ®
, false);
2754 return put_user(reg
, uaddr
);
2763 static struct kvm_device_ops kvm_arm_vgic_its_ops
= {
2764 .name
= "kvm-arm-vgic-its",
2765 .create
= vgic_its_create
,
2766 .destroy
= vgic_its_destroy
,
2767 .set_attr
= vgic_its_set_attr
,
2768 .get_attr
= vgic_its_get_attr
,
2769 .has_attr
= vgic_its_has_attr
,
2772 int kvm_vgic_register_its_device(void)
2774 return kvm_register_device_ops(&kvm_arm_vgic_its_ops
,
2775 KVM_DEV_TYPE_ARM_VGIC_ITS
);