1 Hisilicon mbigen device tree bindings.
2 =======================================
4 Mbigen means: message based interrupt generator.
6 MBI is kind of msi interrupt only used on Non-PCI devices.
8 To reduce the wired interrupt number connected to GIC,
9 Hisilicon designed mbigen to collect and generate interrupt.
12 Non-pci devices can connect to mbigen and generate the
13 interrupt by writing ITS register.
15 The mbigen chip and devices connect to mbigen have the following properties:
17 Mbigen main node required properties:
18 -------------------------------------------
19 - compatible: Should be "hisilicon,mbigen-v2"
21 - reg: Specifies the base physical address and size of the Mbigen
24 Mbigen sub node required properties:
25 ------------------------------------------
26 - interrupt controller: Identifies the node as an interrupt controller
28 - msi-parent: Specifies the MSI controller this mbigen use.
29 For more detail information,please refer to the generic msi-parent binding in
30 Documentation/devicetree/bindings/interrupt-controller/msi.txt.
32 - num-pins: the total number of pins implemented in this Mbigen
35 - #interrupt-cells : Specifies the number of cells needed to encode an
36 interrupt source. The value must be 2.
38 The 1st cell is hardware pin number of the interrupt.This number is local to
39 each mbigen chip and in the range from 0 to the maximum interrupts number
42 The 2nd cell is the interrupt trigger type.
43 The value of this cell should be:
44 1: rising edge triggered
46 4: high level triggered
51 compatible = "hisilicon,mbigen-v2";
52 reg = <0x0 0xc0080000 0x0 0x10000>;
54 mbigen_gmac:intc_gmac {
56 msi-parent = <&its_dsa 0x40b1c>;
58 #interrupt-cells = <2>;
63 msi-parent = <&its_dsa 0x40b0e>;
65 #interrupt-cells = <2>;
69 Devices connect to mbigen required properties:
70 ----------------------------------------------------
71 -interrupts:Specifies the interrupt source.
72 For the specific information of each cell in this property,please refer to
73 the "interrupt-cells" description mentioned above.
76 gmac0: ethernet@c2080000 {
79 reg = <0 0xc2080000 0 0x20000>,
80 <0 0xc0000000 0 0x1000>;
81 interrupt-parent = <&mbigen_device_gmac>;