1/* 2 * Copyright (c) 2017 I-SENSE group of ICCS 3 * 4 * SoC device tree include for STM32F103xB SoCs 5 * where 'x' is replaced for specific SoCs like {C,R,T,V} 6 * 7 * SPDX-License-Identifier: Apache-2.0 8 */ 9 10#include <mem.h> 11#include <st/f1/stm32f103X8.dtsi> 12 13/ { 14 soc { 15 flash-controller@40022000 { 16 flash0: flash@8000000 { 17 reg = <0x08000000 DT_SIZE_K(128)>; 18 erase-block-size = <DT_SIZE_K(1)>; 19 }; 20 }; 21 22 /* spi2 is present on all STM32F103xB SoCs except 23 * STM32F103TB. Delete node in stm32f103tb.dtsi. 24 */ 25 }; 26 27}; 28