Home | History | Annotate | Download | only in arch-stm32f7
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 /*
      3  * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
      4  * Author(s): Vikas Manocha, <vikas.manocha (at) st.com> for STMicroelectronics.
      5  */
      6 
      7 #ifndef _ASM_ARCH_HARDWARE_H
      8 #define _ASM_ARCH_HARDWARE_H
      9 
     10 #include <asm/arch-stm32/stm32f.h>
     11 
     12 static const u32 sect_sz_kb[CONFIG_SYS_MAX_FLASH_SECT] = {
     13 	[0 ... 3] =	32 * 1024,
     14 	[4] =		128 * 1024,
     15 	[5 ... 7] =	256 * 1024
     16 };
     17 
     18 #endif /* _ASM_ARCH_HARDWARE_H */
     19