Add ARM GICv2 driver
authorSoby Mathew <soby.mathew@arm.com>
Wed, 7 Oct 2015 08:45:27 +0000 (09:45 +0100)
committerSoby Mathew <soby.mathew@arm.com>
Thu, 26 Nov 2015 12:29:48 +0000 (12:29 +0000)
commit464ce2bbaa95a95f773a639c47e14bdffa21d75a
treefd82eb885598ee616e5a5690deb2d056524b0d1b
parentdf37373765f8a3f4e9b6216065f991f0db28e2b5
Add ARM GICv2 driver

This patch adds a driver for ARM GICv2 systems, example GIC-400. Unlike
the existing GIC driver in `include/drivers/arm/arm_gic.h`, this driver
is optimised for GICv2 and does not support GICv3 systems in GICv2
compatibility mode. The driver interface has been implemented in
`drivers/arm/gic/v2/gicv2_main.c`. The corresponding header is in
`include/drivers/arm/gicv2.h`. Helper functions are implemented in
`drivers/arm/gic/v2/gicv2_helpers.c` and are accessible through the
`drivers/arm/gic/v2/gicv2_private.h` header.

Change-Id: I09fffa4e621fb99ba3c01204839894816cd89a2a
drivers/arm/gic/v2/gicv2_helpers.c [new file with mode: 0644]
drivers/arm/gic/v2/gicv2_main.c [new file with mode: 0644]
drivers/arm/gic/v2/gicv2_private.h [new file with mode: 0644]
include/drivers/arm/gicv2.h [new file with mode: 0644]