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