]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/sunxi/Kconfig
31a15037d07cf950059f9a23d80e7b8fe6259c6f
[people/ms/u-boot.git] / board / sunxi / Kconfig
1 if TARGET_SUN4I || TARGET_SUN5I || TARGET_SUN6I || TARGET_SUN7I || TARGET_SUN8I
2
3 config SYS_CONFIG_NAME
4 string
5 default "sun4i" if TARGET_SUN4I
6 default "sun5i" if TARGET_SUN5I
7 default "sun6i" if TARGET_SUN6I
8 default "sun7i" if TARGET_SUN7I
9 default "sun8i" if TARGET_SUN8I
10
11 config SYS_CPU
12 default "armv7"
13
14 config SYS_BOARD
15 default "sunxi"
16
17 config SYS_SOC
18 default "sunxi"
19
20 config FDTFILE
21 string "Default fdtfile env setting for this board"
22
23 config OLD_SUNXI_KERNEL_COMPAT
24 boolean "Enable workarounds for booting old kernels"
25 default n
26 ---help---
27 Set this to enable various workarounds for old kernels, this results in
28 sub-optimal settings for newer kernels, only enable if needed.
29
30 config MMC0_CD_PIN
31 string "Card detect pin for mmc0"
32 default ""
33 ---help---
34 Set the card detect pin for mmc0, leave empty to not use cd. This
35 takes a string in the format understood by sunxi_name_to_gpio, e.g.
36 PH1 for pin 1 of port H.
37
38 config MMC1_CD_PIN
39 string "Card detect pin for mmc1"
40 default ""
41 ---help---
42 See MMC0_CD_PIN help text.
43
44 config MMC2_CD_PIN
45 string "Card detect pin for mmc2"
46 default ""
47 ---help---
48 See MMC0_CD_PIN help text.
49
50 config MMC3_CD_PIN
51 string "Card detect pin for mmc3"
52 default ""
53 ---help---
54 See MMC0_CD_PIN help text.
55
56 config MMC_SUNXI_SLOT_EXTRA
57 int "mmc extra slot number"
58 default -1
59 ---help---
60 sunxi builds always enable mmc0, some boards also have a second sdcard
61 slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
62 support for this.
63
64 endif