1/*
2 * Copyright 2020 Broadcom
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/dts-v1/;
8
9#include <broadcom/viper-m7.dtsi>
10/ {
11	model = "Broadcom BCM958402M2_M7";
12	compatible = "brcm,viper";
13	#address-cells = <1>;
14	#size-cells = <1>;
15
16	chosen {
17		zephyr,console = &uart1;
18		zephyr,shell-uart = &uart1;
19		zephyr,sram = &sram0;
20	};
21};
22
23&uart1 {
24	/*
25	 * Setting the current-speed as 0 will retain the baud rate
26	 * configured by bootrom and it will not be re-configured.
27	 */
28	current-speed = <0>;
29	status = "okay";
30};
31