mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 15:02:33 +00:00
added sam4s16b, sam4s8c, sam4s8b, sam4s4c, sam4s4b, sam4s4a, sam4s2c, sam4s2b and sam4s2a. Used the same order as in the data sheet and code structure equal to same70. Updated the sam4s_xplained board to match the altered .dtsi location of the specific SoC. Signed-off-by: Vincent van der Locht <vincent@vlotech.nl>
19 lines
281 B
Plaintext
19 lines
281 B
Plaintext
/*
|
|
* Copyright (c) 2018 Vincent van der Locht
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <atmel/sam4s.dtsi>
|
|
|
|
/ {
|
|
flash0: flash@400000 {
|
|
reg = <0x00400000 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
sram0: memory@20100000 {
|
|
reg = <0x20100000 DT_SIZE_K(128)>;
|
|
};
|
|
};
|