u-boot/arch/arm/mach-u8500/Kconfig
Stephan Gerhold f629895fa3 board: stemmy: Update documentation
Over the time, the "stemmy" U-Boot board was tested on several other
Samsung smartphones based on ST-Ericsson NovaThor Ux500. Convert the
documentation to reStructuredText at doc/board/ste/stemmy.rst and
make the device list complete. Also note that the board now boots
into USB Fastboot instead of just ending up at the U-Boot prompt.

The device table is mostly taken from the postmarketOS wiki article
(https://wiki.postmarketos.org/wiki/ST-Ericsson_NovaThor_U8500).
All the newly added devices were tested by Linus Walleij.

Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
2021-09-01 19:25:37 -04:00

30 lines
751 B
Text

if ARCH_U8500
config SYS_SOC
default "u8500"
choice
prompt "U8500 board selection"
config TARGET_STEMMY
bool "Samsung (stemmy) board"
select MISC_INIT_R
help
The Samsung "stemmy" board supports Samsung smartphones released with
the ST-Ericsson NovaThor U8500 SoC, e.g.
- Samsung Galaxy Ace 2 (GT-I8160) "codina"
- Samsung Galaxy Amp (SGH-I407) "kyle"
- Samsung Galaxy Beam (GT-I8530) "gavini"
- Samsung Galaxy Exhibit (SGH-T599) "codina" (TMO)
- Samsung Galaxy S Advance (GT-I9070) "janice"
- Samsung Galaxy S III mini (GT-I8190) "golden"
- Samsung Galaxy Xcover 2 (GT-S7710) "skomer"
See doc/board/ste/stemmy.rst for details.
endchoice
source "board/ste/stemmy/Kconfig"
endif