~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/irqchip/arm-gic-common.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/irqchip/arm-gic-common.h (Version linux-6.12-rc7) and /include/linux/irqchip/arm-gic-common.h (Version linux-5.0.21)


  1 /* SPDX-License-Identifier: GPL-2.0-only */    << 
  2 /*                                                  1 /*
  3  * include/linux/irqchip/arm-gic-common.h           2  * include/linux/irqchip/arm-gic-common.h
  4  *                                                  3  *
  5  * Copyright (C) 2016 ARM Limited, All Rights       4  * Copyright (C) 2016 ARM Limited, All Rights Reserved.
                                                   >>   5  *
                                                   >>   6  * This program is free software; you can redistribute it and/or modify
                                                   >>   7  * it under the terms of the GNU General Public License version 2 as
                                                   >>   8  * published by the Free Software Foundation.
  6  */                                                 9  */
  7 #ifndef __LINUX_IRQCHIP_ARM_GIC_COMMON_H           10 #ifndef __LINUX_IRQCHIP_ARM_GIC_COMMON_H
  8 #define __LINUX_IRQCHIP_ARM_GIC_COMMON_H           11 #define __LINUX_IRQCHIP_ARM_GIC_COMMON_H
  9                                                    12 
 10 #include <linux/irqchip/arm-vgic-info.h>       !!  13 #include <linux/types.h>
                                                   >>  14 #include <linux/ioport.h>
 11                                                    15 
 12 #define GICD_INT_DEF_PRI                0xa0       16 #define GICD_INT_DEF_PRI                0xa0
                                                   >>  17 #define GICD_INT_DEF_PRI_X4             ((GICD_INT_DEF_PRI << 24) |\
                                                   >>  18                                         (GICD_INT_DEF_PRI << 16) |\
                                                   >>  19                                         (GICD_INT_DEF_PRI << 8) |\
                                                   >>  20                                         GICD_INT_DEF_PRI)
                                                   >>  21 
                                                   >>  22 enum gic_type {
                                                   >>  23         GIC_V2,
                                                   >>  24         GIC_V3,
                                                   >>  25 };
                                                   >>  26 
                                                   >>  27 struct gic_kvm_info {
                                                   >>  28         /* GIC type */
                                                   >>  29         enum gic_type   type;
                                                   >>  30         /* Virtual CPU interface */
                                                   >>  31         struct resource vcpu;
                                                   >>  32         /* Interrupt number */
                                                   >>  33         unsigned int    maint_irq;
                                                   >>  34         /* Virtual control interface */
                                                   >>  35         struct resource vctrl;
                                                   >>  36         /* vlpi support */
                                                   >>  37         bool            has_v4;
                                                   >>  38 };
 13                                                    39 
 14 struct irq_domain;                             !!  40 const struct gic_kvm_info *gic_get_kvm_info(void);
 15 struct fwnode_handle;                          << 
 16 int gicv2m_init(struct fwnode_handle *parent_h << 
 17                 struct irq_domain *parent);    << 
 18                                                    41 
 19 #endif /* __LINUX_IRQCHIP_ARM_GIC_COMMON_H */      42 #endif /* __LINUX_IRQCHIP_ARM_GIC_COMMON_H */
 20                                                    43 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php