zephyr/boards/shields/v2c_daplink/v2c_daplink.overlay
Henrik Brix Andersen c29c1cceb8 boards: shields: add support for the ARM Ltd. V2C DAPLink shield
Add support for the ARM DesignStart DAPLink board for Digilent Arty
S7/A7 (V2C DAPLink) shield.

This shield is designed to be used along with the ARM Cortex-M1/M3
DesignStart FPGA reference designs running on the Digilent Arty.

Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
2020-09-04 17:37:22 +02:00

46 lines
764 B
Plaintext

/*
* Copyright (c) 2020 Henrik Brix Andersen <henrik@brixandersen.dk>
*
* SPDX-License-Identifier: Apache-2.0
*/
&daplink_gpio0 {
status = "okay";
};
&daplink_qspi_mux {
status = "okay";
};
&flash0 {
/*
* Disable the on-board flash until the jedec,spi-nor driver supports
* multiple instances.
*/
status = "disabled";
};
&daplink_quad_spi0 {
status = "okay";
daplink_flash0: flash@0 {
compatible = "spansion,s25fl128s", "jedec,spi-nor";
reg = <0>;
spi-max-frequency = <80000000>;
size = <DT_SIZE_M(128)>;
jedec-id = [01 20 18];
label = "DAPLINK_FLASH_0";
};
};
&daplink_single_spi0 {
status = "okay";
sdhc0: sdhc@0 {
compatible = "zephyr,mmc-spi-slot";
reg = <0>;
label = "SDHC_0";
spi-max-frequency = <25000000>;
};
};