]> git.karo-electronics.de Git - karo-tx-linux.git/commit
powerpc/mpic: FSL MPIC error interrupt support.
authorVarun Sethi <Varun.Sethi@freescale.com>
Wed, 8 Aug 2012 04:06:09 +0000 (09:36 +0530)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 10 Aug 2012 12:48:38 +0000 (07:48 -0500)
commitbc11afde01c7d7003086a1c9afa3acc128179ea1
treefaf0f7f9275efdbe0153b6a2af89789a29aaad1d
parent40b923f152274d747e1b0e67a606715fe05357c8
powerpc/mpic: FSL MPIC error interrupt support.

All SOC device error interrupts are muxed and delivered to the core
as a single MPIC error interrupt. Currently all the device drivers
requiring access to device errors have to register for the MPIC error
interrupt as a shared interrupt.

With this patch we add interrupt demuxing capability in the mpic driver,
allowing device drivers to register for their individual error interrupts.
This is achieved by handling error interrupts in a cascaded fashion.

MPIC error interrupt is handled by the "error_int_handler", which
subsequently demuxes it using the EISR and delivers it to the respective
drivers.

The error interrupt capability is dependent on the MPIC EIMR register,
which was introduced in FSL MPIC version 4.1 (P4080 rev2). So, error
interrupt demuxing capability is dependent on the MPIC version and can
be used for versions >= 4.1.

Signed-off-by: Varun Sethi <Varun.Sethi@freescale.com>
Signed-off-by: Bogdan Hamciuc <bogdan.hamciuc@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/include/asm/mpic.h
arch/powerpc/sysdev/Makefile
arch/powerpc/sysdev/fsl_mpic_err.c [new file with mode: 0644]
arch/powerpc/sysdev/mpic.c
arch/powerpc/sysdev/mpic.h