Commit 4902c3ab authored by Arjun Jyothi's avatar Arjun Jyothi Committed by Carles Cufi
Browse files

boards: arm: Add bcm958402m2_m7 board



Add support for bcm958402m2_m7 board for booting zephyr
on Cortex-M7 core.

Signed-off-by: default avatarArjun Jyothi <arjun.jyothi@broadcom.com>
parent d18ae2e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0
+6 −0
Original line number Diff line number Diff line
# Copyright 2020 Broadcom
# SPDX-License-Identifier: Apache-2.0

config BOARD_BCM958402M2_M7
	bool "Broadcom Viper BCM958402M2_M7"
	depends on SOC_BCM58402_M7
+6 −0
Original line number Diff line number Diff line
# Copyright 2020 Broadcom
# SPDX-License-Identifier: Apache-2.0

config BOARD
	default "bcm958402m2_m7"
	depends on BOARD_BCM958402M2_M7
+30 −0
Original line number Diff line number Diff line
/*
 * Copyright 2020 Broadcom
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/dts-v1/;

#include <broadcom/viper-m7.dtsi>
/ {
	model = "Broadcom BCM958402M2_M7";
	compatible = "brcm,viper";
	#address-cells = <1>;
	#size-cells = <1>;

	chosen {
		zephyr,console = &uart1;
		zephyr,shell-uart = &uart1;
		zephyr,sram = &sram0;
	};
};

&uart1 {
	/*
	 * Setting the current-speed as 0 will retain the baud rate
	 * configured by bootrom and it will not be re-configured.
	 */
	current-speed = <0>;
	status = "okay";
};
+7 −0
Original line number Diff line number Diff line
identifier: bcm958402m2_m7
name: Broadcom BCM958402M2_M7
type: mcu
arch: arm
toolchain:
  - zephyr
  - gnuarmemb
Loading