Skip to content

Commit ac4e106

Browse files
clayfaceffainelli
authored andcommitted
ARM: dts: NSP: Correct FA2 mailbox node
The FA2 mailbox is specified at 0x18025000 but should actually be 0x18025c00, length 0x400 according to socregs_nsp.h and board_bu.c. Also the interrupt was off by one and should be GIC SPI 151 instead of 150. Fixes: 17d5171 ("ARM: dts: NSP: Add mailbox (PDC) to NSP") Signed-off-by: Matthew Hagan <[email protected]> Signed-off-by: Florian Fainelli <[email protected]>
1 parent b9dbe01 commit ac4e106

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/arm/boot/dts/bcm-nsp.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,10 @@
259259
status = "disabled";
260260
};
261261

262-
mailbox: mailbox@25000 {
262+
mailbox: mailbox@25c00 {
263263
compatible = "brcm,iproc-fa2-mbox";
264-
reg = <0x25000 0x445>;
265-
interrupts = <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
264+
reg = <0x25c00 0x400>;
265+
interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
266266
#mbox-cells = <1>;
267267
brcm,rx-status-len = <32>;
268268
brcm,use-bcm-hdr;

0 commit comments

Comments
 (0)