1c6e95598SAnup Patel/*
2c6e95598SAnup Patel *  BSD LICENSE
3c6e95598SAnup Patel *
4c6e95598SAnup Patel *  Copyright(c) 2016-2017 Broadcom.  All rights reserved.
5c6e95598SAnup Patel *
6c6e95598SAnup Patel *  Redistribution and use in source and binary forms, with or without
7c6e95598SAnup Patel *  modification, are permitted provided that the following conditions
8c6e95598SAnup Patel *  are met:
9c6e95598SAnup Patel *
10c6e95598SAnup Patel *    * Redistributions of source code must retain the above copyright
11c6e95598SAnup Patel *      notice, this list of conditions and the following disclaimer.
12c6e95598SAnup Patel *    * Redistributions in binary form must reproduce the above copyright
13c6e95598SAnup Patel *      notice, this list of conditions and the following disclaimer in
14c6e95598SAnup Patel *      the documentation and/or other materials provided with the
15c6e95598SAnup Patel *      distribution.
16c6e95598SAnup Patel *    * Neither the name of Broadcom nor the names of its
17c6e95598SAnup Patel *      contributors may be used to endorse or promote products derived
18c6e95598SAnup Patel *      from this software without specific prior written permission.
19c6e95598SAnup Patel *
20c6e95598SAnup Patel *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21c6e95598SAnup Patel *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22c6e95598SAnup Patel *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23c6e95598SAnup Patel *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24c6e95598SAnup Patel *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25c6e95598SAnup Patel *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26c6e95598SAnup Patel *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27c6e95598SAnup Patel *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28c6e95598SAnup Patel *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29c6e95598SAnup Patel *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30c6e95598SAnup Patel *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31c6e95598SAnup Patel */
32c6e95598SAnup Patel
33c6e95598SAnup Patel	fs4: fs4 {
34c6e95598SAnup Patel		compatible = "simple-bus";
35c6e95598SAnup Patel		#address-cells = <1>;
36c6e95598SAnup Patel		#size-cells = <1>;
37c6e95598SAnup Patel		ranges = <0x0 0x0 0x67000000 0x00800000>;
38c6e95598SAnup Patel
39c6e95598SAnup Patel		crypto_mbox: crypto_mbox@00000000 {
40c6e95598SAnup Patel			compatible = "brcm,iproc-flexrm-mbox";
41c6e95598SAnup Patel			reg = <0x00000000 0x200000>;
42c6e95598SAnup Patel			msi-parent = <&gic_its 0x4100>;
43c6e95598SAnup Patel			#mbox-cells = <3>;
44c6e95598SAnup Patel			dma-coherent;
45c6e95598SAnup Patel		};
46c6e95598SAnup Patel
47c6e95598SAnup Patel		raid_mbox: raid_mbox@00400000 {
48c6e95598SAnup Patel			compatible = "brcm,iproc-flexrm-mbox";
49c6e95598SAnup Patel			reg = <0x00400000 0x200000>;
50c6e95598SAnup Patel			dma-coherent;
51c6e95598SAnup Patel			msi-parent = <&gic_its 0x4300>;
52c6e95598SAnup Patel			#mbox-cells = <3>;
53c6e95598SAnup Patel		};
54c6e95598SAnup Patel	};
55