blob: 4fa2360b4f925402a600fddc884e545b48d4e7d4 [file] [log] [blame]
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +01001if TARGET_STM32MP1
2
3config SYS_BOARD
4 default "stm32mp1"
5
6config SYS_VENDOR
7 default "st"
8
9config SYS_CONFIG_NAME
10 default "stm32mp1"
11
Patrick Delaunay1df01432019-06-14 13:05:59 +020012config ENV_SECT_SIZE
13 default 0x40000 if ENV_IS_IN_SPI_FLASH
14
15config ENV_OFFSET
16 default 0x280000 if ENV_IS_IN_SPI_FLASH
17
Patrick Delaunay2a350372019-07-05 17:20:16 +020018config CMD_STBOARD
19 bool "stboard - command for OTP board information"
20 default y
21 help
22 This compile the stboard command to
23 read and write the board in the OTP.
24
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +020025config TARGET_STM32MP157C_DK2
26 bool "support of STMicroelectronics STM32MP157C-DK2 Discovery Board"
27 default y
28
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010029endif