zephyr/boards/arm/96b_carbon_nrf51/96b_carbon_nrf51.dts
Kumar Gala d929e874c2 boards: dts: nrf: Remove SoC compatible in top-level compatible
The SoC node has compatibles for the specific SoC in place, having the
same compatible at the top level is technically a conflict and the
top-level one should really just be about the board.  Remove the SoC
related compatibles at the top-level.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-04-29 08:20:15 -05:00

59 lines
879 B
Plaintext

/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <nordic/nrf51822_qfac.dtsi>
/ {
model = "Seeed Studio Carbon nRF51 96board";
compatible = "seeed,carbon_nrf51";
chosen {
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,bt-mon-uart = &uart0;
zephyr,sram = &sram0;
zephyr,flash = &flash0;
};
};
&gpiote {
status = "okay";
};
&gpio0 {
status = "okay";
};
&i2c0 {
status = "okay";
sda-pin = <28>;
scl-pin = <2>;
};
&uart0 {
current-speed = <115200>;
status = "okay";
tx-pin = <29>;
rx-pin = <11>;
};
&spi1 {
compatible = "nordic,nrf-spis";
status = "okay";
sck-pin = <7>;
mosi-pin = <0>;
miso-pin = <30>;
csn-pin = <25>;
def-char = <0x00>;
bt-hci@0 {
compatible = "zephyr,bt-hci-spi-slave";
reg = <0>;
irq-gpios = <&gpio0 28 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>;
};
};