19 lines
339 B
Text
19 lines
339 B
Text
|
/*
|
||
|
* Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
soc {
|
||
|
mbox: mbox@2a000 {
|
||
|
compatible = "nordic,mbox-nrf-ipc";
|
||
|
reg = <0x2a000 0x1000>;
|
||
|
tx-mask = <0x0000ffff>;
|
||
|
rx-mask = <0x0000ffff>;
|
||
|
interrupts = <42 NRF_DEFAULT_IRQ_PRIORITY>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
};
|
||
|
};
|