Skip to content

Commit e098b45

Browse files
aikMichael Tokarev
authored and
Michael Tokarev
committed
linux-headers: Update to v3.10-rc5
This adds symbols required for PPC64 pseries platform features: 1. sPAPR live migration; 2. in-kernel XICS interrupt controller. Signed-off-by: Alexey Kardashevskiy <[email protected]> Signed-off-by: Michael Tokarev <[email protected]>
1 parent 8216966 commit e098b45

File tree

8 files changed

+299
-13
lines changed

8 files changed

+299
-13
lines changed

linux-headers/asm-arm/kvm.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@
5353
#define KVM_ARM_FIQ_spsr fiq_regs[7]
5454

5555
struct kvm_regs {
56-
struct pt_regs usr_regs;/* R0_usr - R14_usr, PC, CPSR */
57-
__u32 svc_regs[3]; /* SP_svc, LR_svc, SPSR_svc */
58-
__u32 abt_regs[3]; /* SP_abt, LR_abt, SPSR_abt */
59-
__u32 und_regs[3]; /* SP_und, LR_und, SPSR_und */
60-
__u32 irq_regs[3]; /* SP_irq, LR_irq, SPSR_irq */
61-
__u32 fiq_regs[8]; /* R8_fiq - R14_fiq, SPSR_fiq */
56+
struct pt_regs usr_regs; /* R0_usr - R14_usr, PC, CPSR */
57+
unsigned long svc_regs[3]; /* SP_svc, LR_svc, SPSR_svc */
58+
unsigned long abt_regs[3]; /* SP_abt, LR_abt, SPSR_abt */
59+
unsigned long und_regs[3]; /* SP_und, LR_und, SPSR_und */
60+
unsigned long irq_regs[3]; /* SP_irq, LR_irq, SPSR_irq */
61+
unsigned long fiq_regs[8]; /* R8_fiq - R14_fiq, SPSR_fiq */
6262
};
6363

6464
/* Supported Processor Types */

linux-headers/asm-mips/kvm.h

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
/*
2+
* This file is subject to the terms and conditions of the GNU General Public
3+
* License. See the file "COPYING" in the main directory of this archive
4+
* for more details.
5+
*
6+
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7+
* Copyright (C) 2013 Cavium, Inc.
8+
* Authors: Sanjay Lal <[email protected]>
9+
*/
10+
11+
#ifndef __LINUX_KVM_MIPS_H
12+
#define __LINUX_KVM_MIPS_H
13+
14+
#include <linux/types.h>
15+
16+
/*
17+
* KVM MIPS specific structures and definitions.
18+
*
19+
* Some parts derived from the x86 version of this file.
20+
*/
21+
22+
/*
23+
* for KVM_GET_REGS and KVM_SET_REGS
24+
*
25+
* If Config[AT] is zero (32-bit CPU), the register contents are
26+
* stored in the lower 32-bits of the struct kvm_regs fields and sign
27+
* extended to 64-bits.
28+
*/
29+
struct kvm_regs {
30+
/* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
31+
__u64 gpr[32];
32+
__u64 hi;
33+
__u64 lo;
34+
__u64 pc;
35+
};
36+
37+
/*
38+
* for KVM_GET_FPU and KVM_SET_FPU
39+
*
40+
* If Status[FR] is zero (32-bit FPU), the upper 32-bits of the FPRs
41+
* are zero filled.
42+
*/
43+
struct kvm_fpu {
44+
__u64 fpr[32];
45+
__u32 fir;
46+
__u32 fccr;
47+
__u32 fexr;
48+
__u32 fenr;
49+
__u32 fcsr;
50+
__u32 pad;
51+
};
52+
53+
54+
/*
55+
* For MIPS, we use KVM_SET_ONE_REG and KVM_GET_ONE_REG to access CP0
56+
* registers. The id field is broken down as follows:
57+
*
58+
* bits[2..0] - Register 'sel' index.
59+
* bits[7..3] - Register 'rd' index.
60+
* bits[15..8] - Must be zero.
61+
* bits[63..16] - 1 -> CP0 registers.
62+
*
63+
* Other sets registers may be added in the future. Each set would
64+
* have its own identifier in bits[63..16].
65+
*
66+
* The addr field of struct kvm_one_reg must point to an aligned
67+
* 64-bit wide location. For registers that are narrower than
68+
* 64-bits, the value is stored in the low order bits of the location,
69+
* and sign extended to 64-bits.
70+
*
71+
* The registers defined in struct kvm_regs are also accessible, the
72+
* id values for these are below.
73+
*/
74+
75+
#define KVM_REG_MIPS_R0 0
76+
#define KVM_REG_MIPS_R1 1
77+
#define KVM_REG_MIPS_R2 2
78+
#define KVM_REG_MIPS_R3 3
79+
#define KVM_REG_MIPS_R4 4
80+
#define KVM_REG_MIPS_R5 5
81+
#define KVM_REG_MIPS_R6 6
82+
#define KVM_REG_MIPS_R7 7
83+
#define KVM_REG_MIPS_R8 8
84+
#define KVM_REG_MIPS_R9 9
85+
#define KVM_REG_MIPS_R10 10
86+
#define KVM_REG_MIPS_R11 11
87+
#define KVM_REG_MIPS_R12 12
88+
#define KVM_REG_MIPS_R13 13
89+
#define KVM_REG_MIPS_R14 14
90+
#define KVM_REG_MIPS_R15 15
91+
#define KVM_REG_MIPS_R16 16
92+
#define KVM_REG_MIPS_R17 17
93+
#define KVM_REG_MIPS_R18 18
94+
#define KVM_REG_MIPS_R19 19
95+
#define KVM_REG_MIPS_R20 20
96+
#define KVM_REG_MIPS_R21 21
97+
#define KVM_REG_MIPS_R22 22
98+
#define KVM_REG_MIPS_R23 23
99+
#define KVM_REG_MIPS_R24 24
100+
#define KVM_REG_MIPS_R25 25
101+
#define KVM_REG_MIPS_R26 26
102+
#define KVM_REG_MIPS_R27 27
103+
#define KVM_REG_MIPS_R28 28
104+
#define KVM_REG_MIPS_R29 29
105+
#define KVM_REG_MIPS_R30 30
106+
#define KVM_REG_MIPS_R31 31
107+
108+
#define KVM_REG_MIPS_HI 32
109+
#define KVM_REG_MIPS_LO 33
110+
#define KVM_REG_MIPS_PC 34
111+
112+
/*
113+
* KVM MIPS specific structures and definitions
114+
*
115+
*/
116+
struct kvm_debug_exit_arch {
117+
__u64 epc;
118+
};
119+
120+
/* for KVM_SET_GUEST_DEBUG */
121+
struct kvm_guest_debug_arch {
122+
};
123+
124+
/* definition of registers in kvm_run */
125+
struct kvm_sync_regs {
126+
};
127+
128+
/* dummy definition */
129+
struct kvm_sregs {
130+
};
131+
132+
struct kvm_mips_interrupt {
133+
/* in */
134+
__u32 cpu;
135+
__u32 irq;
136+
};
137+
138+
#endif /* __LINUX_KVM_MIPS_H */

linux-headers/asm-mips/kvm_para.h

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include <asm-generic/kvm_para.h>

linux-headers/asm-powerpc/kvm.h

+89
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
/* Select powerpc specific features in <linux/kvm.h> */
2626
#define __KVM_HAVE_SPAPR_TCE
2727
#define __KVM_HAVE_PPC_SMT
28+
#define __KVM_HAVE_IRQCHIP
29+
#define __KVM_HAVE_IRQ_LINE
2830

2931
struct kvm_regs {
3032
__u64 pc;
@@ -272,8 +274,31 @@ struct kvm_debug_exit_arch {
272274

273275
/* for KVM_SET_GUEST_DEBUG */
274276
struct kvm_guest_debug_arch {
277+
struct {
278+
/* H/W breakpoint/watchpoint address */
279+
__u64 addr;
280+
/*
281+
* Type denotes h/w breakpoint, read watchpoint, write
282+
* watchpoint or watchpoint (both read and write).
283+
*/
284+
#define KVMPPC_DEBUG_NONE 0x0
285+
#define KVMPPC_DEBUG_BREAKPOINT (1UL << 1)
286+
#define KVMPPC_DEBUG_WATCH_WRITE (1UL << 2)
287+
#define KVMPPC_DEBUG_WATCH_READ (1UL << 3)
288+
__u32 type;
289+
__u32 reserved;
290+
} bp[16];
275291
};
276292

293+
/* Debug related defines */
294+
/*
295+
* kvm_guest_debug->control is a 32 bit field. The lower 16 bits are generic
296+
* and upper 16 bits are architecture specific. Architecture specific defines
297+
* that ioctl is for setting hardware breakpoint or software breakpoint.
298+
*/
299+
#define KVM_GUESTDBG_USE_SW_BP 0x00010000
300+
#define KVM_GUESTDBG_USE_HW_BP 0x00020000
301+
277302
/* definition of registers in kvm_run */
278303
struct kvm_sync_regs {
279304
};
@@ -299,6 +324,12 @@ struct kvm_allocate_rma {
299324
__u64 rma_size;
300325
};
301326

327+
/* for KVM_CAP_PPC_RTAS */
328+
struct kvm_rtas_token_args {
329+
char name[120];
330+
__u64 token; /* Use a token of 0 to undefine a mapping */
331+
};
332+
302333
struct kvm_book3e_206_tlb_entry {
303334
__u32 mas8;
304335
__u32 mas1;
@@ -359,6 +390,26 @@ struct kvm_get_htab_header {
359390
__u16 n_invalid;
360391
};
361392

393+
/* Per-vcpu XICS interrupt controller state */
394+
#define KVM_REG_PPC_ICP_STATE (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x8c)
395+
396+
#define KVM_REG_PPC_ICP_CPPR_SHIFT 56 /* current proc priority */
397+
#define KVM_REG_PPC_ICP_CPPR_MASK 0xff
398+
#define KVM_REG_PPC_ICP_XISR_SHIFT 32 /* interrupt status field */
399+
#define KVM_REG_PPC_ICP_XISR_MASK 0xffffff
400+
#define KVM_REG_PPC_ICP_MFRR_SHIFT 24 /* pending IPI priority */
401+
#define KVM_REG_PPC_ICP_MFRR_MASK 0xff
402+
#define KVM_REG_PPC_ICP_PPRI_SHIFT 16 /* pending irq priority */
403+
#define KVM_REG_PPC_ICP_PPRI_MASK 0xff
404+
405+
/* Device control API: PPC-specific devices */
406+
#define KVM_DEV_MPIC_GRP_MISC 1
407+
#define KVM_DEV_MPIC_BASE_ADDR 0 /* 64-bit */
408+
409+
#define KVM_DEV_MPIC_GRP_REGISTER 2 /* 32-bit */
410+
#define KVM_DEV_MPIC_GRP_IRQ_ACTIVE 3 /* 32-bit */
411+
412+
/* One-Reg API: PPC-specific registers */
362413
#define KVM_REG_PPC_HIOR (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x1)
363414
#define KVM_REG_PPC_IAC1 (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x2)
364415
#define KVM_REG_PPC_IAC2 (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x3)
@@ -422,4 +473,42 @@ struct kvm_get_htab_header {
422473
#define KVM_REG_PPC_CLEAR_TSR (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x88)
423474
#define KVM_REG_PPC_TCR (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x89)
424475
#define KVM_REG_PPC_TSR (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x8a)
476+
477+
/* Debugging: Special instruction for software breakpoint */
478+
#define KVM_REG_PPC_DEBUG_INST (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x8b)
479+
480+
/* MMU registers */
481+
#define KVM_REG_PPC_MAS0 (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x8c)
482+
#define KVM_REG_PPC_MAS1 (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x8d)
483+
#define KVM_REG_PPC_MAS2 (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x8e)
484+
#define KVM_REG_PPC_MAS7_3 (KVM_REG_PPC | KVM_REG_SIZE_U64 | 0x8f)
485+
#define KVM_REG_PPC_MAS4 (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x90)
486+
#define KVM_REG_PPC_MAS6 (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x91)
487+
#define KVM_REG_PPC_MMUCFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x92)
488+
/*
489+
* TLBnCFG fields TLBnCFG_N_ENTRY and TLBnCFG_ASSOC can be changed only using
490+
* KVM_CAP_SW_TLB ioctl
491+
*/
492+
#define KVM_REG_PPC_TLB0CFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x93)
493+
#define KVM_REG_PPC_TLB1CFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x94)
494+
#define KVM_REG_PPC_TLB2CFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x95)
495+
#define KVM_REG_PPC_TLB3CFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x96)
496+
#define KVM_REG_PPC_TLB0PS (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x97)
497+
#define KVM_REG_PPC_TLB1PS (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x98)
498+
#define KVM_REG_PPC_TLB2PS (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x99)
499+
#define KVM_REG_PPC_TLB3PS (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x9a)
500+
#define KVM_REG_PPC_EPTCFG (KVM_REG_PPC | KVM_REG_SIZE_U32 | 0x9b)
501+
502+
/* PPC64 eXternal Interrupt Controller Specification */
503+
#define KVM_DEV_XICS_GRP_SOURCES 1 /* 64-bit source attributes */
504+
505+
/* Layout of 64-bit source attribute values */
506+
#define KVM_XICS_DESTINATION_SHIFT 0
507+
#define KVM_XICS_DESTINATION_MASK 0xffffffffULL
508+
#define KVM_XICS_PRIORITY_SHIFT 32
509+
#define KVM_XICS_PRIORITY_MASK 0xff
510+
#define KVM_XICS_LEVEL_SENSITIVE (1ULL << 40)
511+
#define KVM_XICS_MASKED (1ULL << 41)
512+
#define KVM_XICS_PENDING (1ULL << 42)
513+
425514
#endif /* __LINUX_KVM_POWERPC_H */

linux-headers/asm-x86/kvm.h

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
#define __KVM_HAVE_PIT
3030
#define __KVM_HAVE_IOAPIC
3131
#define __KVM_HAVE_IRQ_LINE
32-
#define __KVM_HAVE_DEVICE_ASSIGNMENT
3332
#define __KVM_HAVE_MSI
3433
#define __KVM_HAVE_USER_NMI
3534
#define __KVM_HAVE_GUEST_DEBUG

linux-headers/linux/kvm.h

+36-6
Original file line numberDiff line numberDiff line change
@@ -561,9 +561,7 @@ struct kvm_ppc_smmu_info {
561561
#define KVM_CAP_MP_STATE 14
562562
#define KVM_CAP_COALESCED_MMIO 15
563563
#define KVM_CAP_SYNC_MMU 16 /* Changes to host mmap are reflected in guest */
564-
#ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
565564
#define KVM_CAP_DEVICE_ASSIGNMENT 17
566-
#endif
567565
#define KVM_CAP_IOMMU 18
568566
#ifdef __KVM_HAVE_MSI
569567
#define KVM_CAP_DEVICE_MSI 20
@@ -579,13 +577,9 @@ struct kvm_ppc_smmu_info {
579577
#ifdef __KVM_HAVE_PIT
580578
#define KVM_CAP_REINJECT_CONTROL 24
581579
#endif
582-
#ifdef __KVM_HAVE_IOAPIC
583580
#define KVM_CAP_IRQ_ROUTING 25
584-
#endif
585581
#define KVM_CAP_IRQ_INJECT_STATUS 26
586-
#ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
587582
#define KVM_CAP_DEVICE_DEASSIGNMENT 27
588-
#endif
589583
#ifdef __KVM_HAVE_MSIX
590584
#define KVM_CAP_DEVICE_MSIX 28
591585
#endif
@@ -668,6 +662,10 @@ struct kvm_ppc_smmu_info {
668662
#define KVM_CAP_PPC_EPR 86
669663
#define KVM_CAP_ARM_PSCI 87
670664
#define KVM_CAP_ARM_SET_DEVICE_ADDR 88
665+
#define KVM_CAP_DEVICE_CTRL 89
666+
#define KVM_CAP_IRQ_MPIC 90
667+
#define KVM_CAP_PPC_RTAS 91
668+
#define KVM_CAP_IRQ_XICS 92
671669

672670
#ifdef KVM_CAP_IRQ_ROUTING
673671

@@ -820,6 +818,28 @@ struct kvm_arm_device_addr {
820818
__u64 addr;
821819
};
822820

821+
/*
822+
* Device control API, available with KVM_CAP_DEVICE_CTRL
823+
*/
824+
#define KVM_CREATE_DEVICE_TEST 1
825+
826+
struct kvm_create_device {
827+
__u32 type; /* in: KVM_DEV_TYPE_xxx */
828+
__u32 fd; /* out: device handle */
829+
__u32 flags; /* in: KVM_CREATE_DEVICE_xxx */
830+
};
831+
832+
struct kvm_device_attr {
833+
__u32 flags; /* no flags currently defined */
834+
__u32 group; /* device-defined */
835+
__u64 attr; /* group-defined */
836+
__u64 addr; /* userspace address of attr data */
837+
};
838+
839+
#define KVM_DEV_TYPE_FSL_MPIC_20 1
840+
#define KVM_DEV_TYPE_FSL_MPIC_42 2
841+
#define KVM_DEV_TYPE_XICS 3
842+
823843
/*
824844
* ioctls for VM fds
825845
*/
@@ -907,6 +927,16 @@ struct kvm_s390_ucas_mapping {
907927
#define KVM_PPC_GET_HTAB_FD _IOW(KVMIO, 0xaa, struct kvm_get_htab_fd)
908928
/* Available with KVM_CAP_ARM_SET_DEVICE_ADDR */
909929
#define KVM_ARM_SET_DEVICE_ADDR _IOW(KVMIO, 0xab, struct kvm_arm_device_addr)
930+
/* Available with KVM_CAP_PPC_RTAS */
931+
#define KVM_PPC_RTAS_DEFINE_TOKEN _IOW(KVMIO, 0xac, struct kvm_rtas_token_args)
932+
933+
/* ioctl for vm fd */
934+
#define KVM_CREATE_DEVICE _IOWR(KVMIO, 0xe0, struct kvm_create_device)
935+
936+
/* ioctls for fds returned by KVM_CREATE_DEVICE */
937+
#define KVM_SET_DEVICE_ATTR _IOW(KVMIO, 0xe1, struct kvm_device_attr)
938+
#define KVM_GET_DEVICE_ATTR _IOW(KVMIO, 0xe2, struct kvm_device_attr)
939+
#define KVM_HAS_DEVICE_ATTR _IOW(KVMIO, 0xe3, struct kvm_device_attr)
910940

911941
/*
912942
* ioctls for vcpu fds

linux-headers/linux/vfio.h

+1
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ enum {
319319
VFIO_PCI_INTX_IRQ_INDEX,
320320
VFIO_PCI_MSI_IRQ_INDEX,
321321
VFIO_PCI_MSIX_IRQ_INDEX,
322+
VFIO_PCI_ERR_IRQ_INDEX,
322323
VFIO_PCI_NUM_IRQS
323324
};
324325

0 commit comments

Comments
 (0)