]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/karo/tx53/Kconfig
karo: tx53: various fixes for CONFIG_SECURE_BOOT
[karo-tx-uboot.git] / board / karo / tx53 / Kconfig
1 if TARGET_TX53
2
3 config SYS_BOARD
4         default "tx53"
5
6 config SYS_VENDOR
7         default "karo"
8
9 config SYS_SOC
10         default "mx5"
11
12 config SYS_CONFIG_NAME
13         default "tx53"
14
15 config TX53
16         bool
17         default y
18         select CC_OPTIMIZE_LIBS_FOR_SPEED
19         select CMD_BMP if LCD
20         select CMD_BOOTCE
21         select CMD_BOOTZ
22         select CMD_CACHE
23         select CMD_I2C if I2C
24         select CMD_MEMINFO
25         select CMD_MEMTEST
26         select CMD_MMC
27         select CMD_NAND
28         select CMD_NAND_TRIMFFS
29         select CMD_ROMUPDATE
30         select CMD_TIME
31         select DM
32         select DM_GPIO
33         select FDT_FIXUP_PARTITIONS if OF_LIBFDT
34         select GET_FEC_MAC_ADDR_FROM_IIM
35         select IMX_WATCHDOG
36         select LIB_RAND
37         select MMC
38         select MTD_PARTITIONS
39         select MTD_DEVICE
40         select NAND
41         select NAND_MXC
42         select OF_LIBFDT
43         select OF_BOARD_SETUP
44         select PHYLIB
45         select PHY_SMSC
46         select SOC_MX53
47         select SYS_I2C
48         select SYS_I2C_MXC
49         select SYS_NAND_USE_FLASH_BBT if NAND_MXC
50
51 #
52 # variables selected depending on module variant
53 #
54
55 config SYS_LVDS_IF
56         bool
57
58 choice
59         prompt "TX53 module variant"
60
61 config TARGET_TX53_X030
62         bool "TX53-8030 and TX53-1030"
63
64 config TARGET_TX53_X130
65         bool "TX53-8130 and TX53-1330"
66         select SYS_LVDS_IF
67
68 config TARGET_TX53_X131
69         bool "TX53-8131 and TX53-1331"
70         select SYS_LVDS_IF
71
72 config TARGET_TX53_1232
73         bool "TX53-1232"
74
75 endchoice
76
77 config NR_DRAM_BANKS
78         int
79         default 2 if TARGET_TX53_1232 || TARGET_TX53_X131
80         default 1
81
82 choice
83         prompt "U-Boot image variant"
84
85 config TX53_UBOOT
86         bool "Standard U-Boot image"
87
88 config TX53_UBOOT_NOENV
89         bool "U-Boot using only built-in environment"
90         select UBOOT_IGNORE_ENV
91
92 endchoice
93
94 endif