]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/sunxi/Kconfig
449c0460f996d639901fe859caeb1683764f1a4e
[karo-tx-uboot.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 MMC0_CD_PIN
24         string "Card detect pin for mmc0"
25         default ""
26         ---help---
27         Set the card detect pin for mmc0, leave empty to not use cd. This
28         takes a string in the format understood by sunxi_name_to_gpio, e.g.
29         PH1 for pin 1 of port H.
30
31 config MMC1_CD_PIN
32         string "Card detect pin for mmc1"
33         default ""
34         ---help---
35         See MMC0_CD_PIN help text.
36
37 config MMC2_CD_PIN
38         string "Card detect pin for mmc2"
39         default ""
40         ---help---
41         See MMC0_CD_PIN help text.
42
43 config MMC3_CD_PIN
44         string "Card detect pin for mmc3"
45         default ""
46         ---help---
47         See MMC0_CD_PIN help text.
48
49 config MMC_SUNXI_SLOT_EXTRA
50         int "mmc extra slot number"
51         default -1
52         ---help---
53         sunxi builds always enable mmc0, some boards also have a second sdcard
54         slot or emmc on mmc1 - mmc3. Setting this to 1, 2 or 3 will enable
55         support for this.
56
57 endif