]> 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>
Thu, 23 Aug 2012 18:09:00 +0000 (13:09 -0500)
commit96188af2340ee269b3a048d8135479dcf84ee3d6
tree47368e9b20ff8c4edd37fc6453f0ab934d480ac2
parent72bcff127a9d750121703120c9905c306f365ad7
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