OSDN Git Service

irqchip/mgigen: Add platform device driver for mbigen device
authorMa Jun <majun258@huawei.com>
Thu, 17 Dec 2015 11:56:35 +0000 (19:56 +0800)
committerMarc Zyngier <marc.zyngier@arm.com>
Fri, 18 Dec 2015 11:44:20 +0000 (11:44 +0000)
commit717c3dbc118ecbbd5dab06c7e02dac68d3f62e1d
tree0222c4f53d06b030288d3eca8ed0531dd0e555bb
parent752b1b94e6c56af3621a4cad20bdc3032ae60950
irqchip/mgigen: Add platform device driver for mbigen device

Mbigen means Message Based Interrupt Generator(MBIGEN).

Its a kind of interrupt controller that collects
the interrupts from external devices and generate msi interrupt.
Mbigen is applied to reduce the number of wire connected interrupts.

As the peripherals increasing, the interrupts lines needed is
increasing much, especially on the Arm64 server SOC.

Therefore, the interrupt pin in GIC is not enough to cover so
many peripherals.

Mbigen is designed to fix this problem.

Mbigen chip locates in ITS or outside of ITS.

Mbigen chip hardware structure shows as below:

mbigen chip
|---------------------|-------------------|
mgn_node0   mgn_node1 mgn_node2
 |  |-------| |-------|------|
dev1 dev1    dev2 dev1   dev3   dev4

Each mbigen chip contains several mbigen nodes.

External devices can connect to mbigen node through wire connecting way.

Because a mbigen node only can support 128 interrupt maximum, depends
on the interrupt lines number of devices, a device can connects to one
more mbigen nodes.

Also, several different devices can connect to a same mbigen node.

When devices triggered interrupt,mbigen chip detects and collects
the interrupts and generates the MBI interrupts by writing the ITS
Translator register.

To simplify mbigen driver,I used a new conception--mbigen device.
Each mbigen device is initialized as a platform device.

Mbigen device presents the parts(register, pin definition etc.) in
mbigen chip corresponding to a peripheral device.

So from software view, the structure likes below

            mbigen chip
     |---------------------|-----------------|
mbigen device1       mbigen device2  mbigen device3
      |                   |                |
     dev1                dev2             dev3

Reviewed-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Ma Jun <majun258@huawei.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
drivers/irqchip/Kconfig
drivers/irqchip/Makefile
drivers/irqchip/irq-mbigen.c [new file with mode: 0644]