1
0
Fork 0
alistair23-linux/Documentation/devicetree/bindings/interrupt-controller
Linus Torvalds 1009aa1205 RISC-V Updates for the 4.19 Merge Window
This tag contains some major improvements to the RISC-V port, including
 the necessary interrupt controller and timer support to actually make it
 to userspace.  Support for three devices has been added:
 
 * Support for the ISA-mandated timers on RISC-V systems.
 * Support for the ISA-mandated first-level interrupt controller on
   RISC-V systems, which is handled as part of our core arch code because
   it's very small and tightly tied to the ISA.
 * Support for SiFive's platform-level interrupt controller, which talks
   to the actual devices.
 
 In addition to these new devices, there are a handful of cleanups all
 over the RISC-V tree:
 
 * Build fixes for various configurations
     * A fix to the vDSO build's makefile so it respects CFLAGS.
     * The addition of __lshrti3, a libgcc derived function necessary for
       some 32-bit configurations.
     * !SMP && PERF_EVENTS
 * Cleanups to the arch code to remove the remnants of old versions of
   the drivers that were just properly submitted.
     * Some dead code from the timer driver, most of which wasn't ever
       even compiled.
     * Cleanups of some interrupt #defines, which are now local to the
       interrupt handling code.
 * Fixes to ptrace(), which while not being sufficient to fully make GDB
   work are at least sufficient to get simple GDB tasks to work.
 * Early printk support via RISC-V's architecturally mandated SBI console
   device.
 * A fix to our early debug trap handler to ensure it's always aligned.
 
 These patches have all been through a fairly extensive review process,
 but as this enables a whole pile of functionality (ie, userspace) I'm
 confident we'll need to submit a few more patches.  The only concrete
 issues I know about are the sys_riscv_flush_icache patches, but as I
 managed to screw those up on Friday I figured it'd be best to let them
 bake another week.
 
 This tag boots a Fedora root filesystem on QEMU's master branch for me,
 and before this morning's rebase (from 4.18-rc8 to 4.18) it booted on
 the HiFive Unleashed.
 
 Thanks to Christoph Hellwig and the other guys at WD for getting the new
 drivers in shape!
 -----BEGIN PGP SIGNATURE-----
 
 iQJHBAABCAAxFiEEAM520YNJYN/OiG3470yhUCzLq0EFAltx3HcTHHBhbG1lckBk
 YWJiZWx0LmNvbQAKCRDvTKFQLMurQc7nEACh8NCRLyXHOAQefomb+BUx+DJXweau
 lhTiPexB7+3ZAT6FvL8BgHFu3qMsgZ8iI5pxIz7tap2WRTlakRABLes7c3xQPI4a
 3rDbZFE78lQDNY0Kj8iUpvYr0aOfMcC8aoD30qQHaWZVgYZvaZGD3Sar6VbTyaNe
 5F5lRaiAtrMmHNio/fXQvnMP83nc1Nxzc4q8VeRjmufc0CvGZUs3L2ZRVx1phwav
 VedQFsrNHlcyulBv9rQXzaeyvVn+FNKlu4c/9sI6xsGZofGZjOqub1vjURuEfTc5
 4AtdFMN0Xb2TYCK277Fr/FY/VEHGXCV+3hGc2U62hnpBtRgGERn7gQUimCJD5b+V
 gpXZGjtLvTXp9a4N6+ThC/oqvr72aLzInNap95MFK5xSMx/4AdCG7u63sd2qLtkL
 tlYho+Hd50ImIlUCTs6pfjzmgTMLW2huVJhDNx2lt9OUvNNYjTc4mjEK2WK8DUC7
 aUMcHYZMn3hJFNwvd5xTxLPua4ahhhYTyfzHwnMiND4ZjdUnxtrKNj46HjSPqMp9
 mgKOkv3G0a021gYODI/dweYI1SV2my814fQHZW4rcFYM2lLwrn2cPMMGezAJF9sR
 mbLHW6ZxJrtd9m+RZsJB9Z3QnBs68yIqTOBPRRFM5egwt9s9y+19HnBDVe1hj8/j
 OpmZ/qXCqQt+jA==
 =PfnC
 -----END PGP SIGNATURE-----

Merge tag 'riscv-for-linus-4.19-mw0' of git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux

Pull RISC-V updates from Palmer Dabbelt:
 "This contains some major improvements to the RISC-V port, including
  the necessary interrupt controller and timer support to actually make
  it to userspace. Support for three devices has been added:

   - the ISA-mandated timers on RISC-V systems.

   - the ISA-mandated first-level interrupt controller on RISC-V
     systems, which is handled as part of our core arch code because
     it's very small and tightly tied to the ISA.

   - SiFive's platform-level interrupt controller, which talks to the
     actual devices.

  In addition to these new devices, there are a handful of cleanups all
  over the RISC-V tree:

   - build fixes for various configurations:
      * A fix to the vDSO build's makefile so it respects CFLAGS.
      * The addition of __lshrti3, a libgcc derived function necessary
        for some 32-bit configurations.
      * !SMP && PERF_EVENTS

   - Cleanups to the arch code to remove the remnants of old versions of
     the drivers that were just properly submitted.
      * Some dead code from the timer driver, most of which wasn't ever
        even compiled.
      * Cleanups of some interrupt #defines, which are now local to the
        interrupt handling code.

   - Fixes to ptrace(), which while not being sufficient to fully make
     GDB work are at least sufficient to get simple GDB tasks to work.

   - Early printk support via RISC-V's architecturally mandated SBI
     console device.

   - A fix to our early debug trap handler to ensure it's always
     aligned.

  These patches have all been through a fairly extensive review process,
  but as this enables a whole pile of functionality (ie, userspace) I'm
  confident we'll need to submit a few more patches. The only concrete
  issues I know about are the sys_riscv_flush_icache patches, but as I
  managed to screw those up on Friday I figured it'd be best to let them
  bake another week.

  This tag boots a Fedora root filesystem on QEMU's master branch for
  me, and before this morning's rebase (from 4.18-rc8 to 4.18) it booted
  on the HiFive Unleashed.

  Thanks to Christoph Hellwig and the other guys at WD for getting the
  new drivers in shape!"

* tag 'riscv-for-linus-4.19-mw0' of git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux:
  dt-bindings: interrupt-controller: SiFive Plaform Level Interrupt Controller
  dt-bindings: interrupt-controller: RISC-V local interrupt controller
  RISC-V: Fix !CONFIG_SMP compilation error
  irqchip: add a SiFive PLIC driver
  RISC-V: Add the directive for alignment of stvec's value
  clocksource: new RISC-V SBI timer driver
  RISC-V: implement low-level interrupt handling
  RISC-V: add a definition for the SIE SEIE bit
  RISC-V: remove INTERRUPT_CAUSE_* defines from asm/irq.h
  RISC-V: simplify software interrupt / IPI code
  RISC-V: remove timer leftovers
  RISC-V: Add early printk support via the SBI console
  RISC-V: Don't increment sepc after breakpoint.
  RISC-V: implement __lshrti3.
  RISC-V: Use KBUILD_CFLAGS instead of KCFLAGS when building the vDSO
2018-08-19 09:56:38 -07:00
..
abilis,tb10x-ictl.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
al,alpine-msix.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
allwinner,sun4i-ic.txt irqchip: sunxi: Change compatibles 2014-03-14 13:43:32 +01:00
allwinner,sunxi-nmi.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
amlogic,meson-gpio-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
andestech,ativic32.txt dt-bindings: interrupt-controller: Andestech Internal Vector Interrupt Controller 2018-02-22 10:44:36 +08:00
arm,gic-v3.txt dt-bindings/gic-v3: Add documentation for MBI support 2018-05-13 15:59:02 +02:00
arm,gic.txt dt-bindings: Remove leading 0x from bindings notation 2017-12-06 14:56:33 -06:00
arm,nvic.txt dt-bindings: arm,nvic: Binding for ARM NVIC interrupt controller on Cortex-M 2017-04-10 10:04:42 -05:00
arm,versatile-fpga-irq.txt dt-bindings: irq: arm,versatile-fpga: add compatible string for OX810SE SoC 2016-04-26 09:51:12 +02:00
arm,vic.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
aspeed,ast2400-i2c-ic.txt irqchip/aspeed-i2c-ic: Add binding docs for Aspeed I2C Interrupt Controller 2017-06-22 14:14:52 +01:00
aspeed,ast2400-vic.txt irqchip/aspeed-vic: Add AST2500 compatible string 2017-06-22 14:13:39 +01:00
atmel,aic.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,bcm2835-armctrl-ic.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,bcm2836-l1-intc.txt dt-bindings/bcm2836-l1-intc: Add interrupt polarity support 2018-01-04 11:12:06 +00:00
brcm,bcm3380-l2-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,bcm6345-l1-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,bcm7038-l1-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,bcm7120-l2-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
brcm,l2-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
cdns,xtensa-mx.txt irqchip: xtensa-pic: xtensa-mx: document DT bindings 2015-04-13 09:02:45 +03:00
cdns,xtensa-pic.txt irqchip: xtensa-pic: xtensa-mx: document DT bindings 2015-04-13 09:02:45 +03:00
cirrus,clps711x-intc.txt irqchip: clps711x: Changing the compatibility string to match with the smallest supported chip 2016-07-06 17:38:15 +02:00
digicolor-ic.txt irqchip: Devicetree: document Conexant Digicolor irq binding 2015-01-26 11:38:23 +01:00
ezchip,nps400-ic.txt irqchip: add nps Internal and external irqchips 2016-05-09 09:32:31 +05:30
faraday,ftintc010.txt dt-bindings: gemini: augment Gemini bindings to reflect Faraday origin 2017-04-07 10:35:59 +01:00
fsl,ls-scfg-msi.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
google,goldfish-pic.txt dt-bindings/goldfish-pic: Add device tree binding for Goldfish PIC driver 2018-01-04 11:13:48 +00:00
hisilicon,mbigen-v2.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
img,meta-intc.txt dt-bindings: Remove leading 0x from bindings notation 2017-12-06 14:56:33 -06:00
img,pdc-intc.txt dt-bindings: Remove leading 0x from bindings notation 2017-12-06 14:56:33 -06:00
ingenic,intc.txt Devicetree updates for 4.19: 2018-08-14 12:41:49 -07:00
intel,ce4100-ioapic.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
interrupts.txt of/irq: Drop obsolete 'interrupts' vs 'interrupts-extended' text 2014-11-18 11:34:35 -06:00
jcore,aic.txt dt-bindings: irqchip: Add J-Core interrupt controller bindings 2016-08-08 20:26:16 +00:00
lsi,zevio-intc.txt irqchip: Add support for TI-NSPIRE irqchip 2014-01-22 21:48:55 +01:00
marvell,armada-8k-pic.txt dt-bindings: interrupt-controller: add DT binding for Marvell 7K/8K PIC 2016-08-16 13:59:04 +00:00
marvell,armada-370-xp-mpic.txt irqchip: armada-370-xp: Move the devicetree binding documentation 2014-05-19 02:08:06 +00:00
marvell,gicp.txt dt-bindings/interrupt-controller: Add DT binding for the Marvell GICP 2017-06-22 14:15:00 +01:00
marvell,icu.txt dt-bindings/interrupt-controller: Add DT binding for the Marvell ICU 2017-06-23 09:14:43 +01:00
marvell,odmi-controller.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
marvell,orion-intc.txt irqchip: Add support for Marvell Orion SoCs 2013-06-11 16:18:50 +02:00
mediatek,cirq.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
mediatek,sysirq.txt TTY/Serial driver patches for 4.19-rc1 2018-08-18 10:50:41 -07:00
microchip,pic32-evic.txt dt/bindings: Add bindings for PIC32 interrupt controller 2016-01-24 02:51:19 +01:00
mips-gic.txt irqchip/mips-gic: Add new DT property to reserve IPIs 2016-02-25 10:56:58 +01:00
mrvl,intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
mscc,ocelot-icpu-intr.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
msi.txt Docs: dt: add generic MSI bindings 2015-08-25 11:29:57 -05:00
nvidia,tegra20-ictlr.txt Devicetree updates for 4.19: 2018-08-14 12:41:49 -07:00
nxp,lpc3220-mic.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
open-pic.txt of: update ePAPR references to point to Devicetree Specification 2017-06-22 11:22:06 -05:00
opencores,or1k-pic.txt irqchip: or1k-pic: Migrate from arch/openrisc/ 2014-07-01 12:15:06 +00:00
openrisc,ompic.txt irqchip: add initial support for ompic 2017-11-03 14:01:13 +09:00
qca,ath79-cpu-intc.txt DEVICETREE: Add bindings for the ATH79 interrupt controllers 2015-06-21 21:54:03 +02:00
qca,ath79-misc-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
qcom,pdc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
renesas,h8s-intc.txt h8300: IRQ chip driver 2015-06-23 13:35:56 +09:00
renesas,h8300h-intc.txt h8300: IRQ chip driver 2015-06-23 13:35:56 +09:00
renesas,intc-irqpin.txt irqchip: renesas: intc-irqpin: Improve binding documentation 2015-06-05 22:26:33 +02:00
renesas,irqc.txt dt-bindings: irqchip: renesas-irqc: Document r8a77980 support 2018-07-19 16:12:28 +01:00
riscv,cpu-intc.txt dt-bindings: interrupt-controller: RISC-V local interrupt controller 2018-08-13 09:36:02 -07:00
samsung,exynos4210-combiner.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
samsung,s3c24xx-irq.txt irqchip: s3c24xx: add devicetree support 2013-04-04 14:56:30 +09:00
sifive,plic-1.0.0.txt dt-bindings: interrupt-controller: SiFive Plaform Level Interrupt Controller 2018-08-13 09:39:11 -07:00
sigma,smp8642-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
snps,arc700-intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
snps,archs-idu-intc.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
snps,archs-intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
snps,dw-apb-ictl.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
socionext,synquacer-exiu.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
socionext,uniphier-aidet.txt irqchip: Add UniPhier AIDET irqchip driver 2017-08-23 10:08:44 +01:00
st,spear3xx-shirq.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
st,sti-irq-syscfg.txt irqchip: st: Add documentation for STi based syscfg IRQs 2015-03-03 19:50:02 +00:00
st,stm32-exti.txt dt-bindings: Fix unbalanced quotation marks 2018-06-26 14:17:22 -06:00
technologic,ts4800.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
ti,c64x+megamod-pic.txt dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
ti,cp-intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
ti,keystone-irq.txt dt-bindings: Remove leading zeros from bindings notation 2017-11-09 17:05:05 -06:00
ti,omap-intc-irq.txt irqchip: omap-intc: Fix support for dm814 and dm816 2015-01-26 11:38:23 +01:00
ti,omap2-intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00
ti,omap4-wugen-mpu dt-bindings: remove 'interrupt-parent' from bindings 2018-07-25 14:09:39 -06:00
via,vt8500-intc.txt dt-bindings: consolidate interrupt controller bindings 2015-10-22 09:21:25 -05:00