blob: 87216c096384e3aeb214be760dcf6ed85b375482 [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 Delaunay8eb3b1e2018-03-12 10:46:18 +010025endif