]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/armv7/omap5/Kconfig
ti: omap5: Add Kconfig options for secure EMIF reservations
[u-boot] / arch / arm / cpu / armv7 / omap5 / Kconfig
1 if OMAP54XX
2
3 config SPL_EXT_SUPPORT
4         default y
5
6 config SPL_FAT_SUPPORT
7         default y
8
9 config SPL_GPIO_SUPPORT
10         default y
11
12 config SPL_I2C_SUPPORT
13         default y
14
15 config SPL_LIBCOMMON_SUPPORT
16         default y
17
18 config SPL_LIBDISK_SUPPORT
19         default y
20
21 config SPL_LIBGENERIC_SUPPORT
22         default y
23
24 config SPL_MMC_SUPPORT
25         default y
26
27 config SPL_NAND_SUPPORT
28         default y
29
30 config SPL_POWER_SUPPORT
31         default y
32
33 config SPL_SERIAL_SUPPORT
34         default y
35
36 choice
37         prompt "OMAP5 board select"
38         optional
39
40 config TARGET_CM_T54
41         bool "CompuLab CM-T54"
42
43 config TARGET_OMAP5_UEVM
44         bool "TI OMAP5 uEVM board"
45
46 config TARGET_DRA7XX_EVM
47         bool "TI DRA7XX"
48         select TI_I2C_BOARD_DETECT
49         select PHYS_64BIT
50
51 config TARGET_AM57XX_EVM
52         bool "AM57XX"
53         select TI_I2C_BOARD_DETECT
54
55 endchoice
56
57 config SYS_SOC
58         default "omap5"
59
60 config TI_SECURE_EMIF_REGION_START
61         hex "Reserved EMIF region start address"
62         depends on TI_SECURE_DEVICE
63         default 0x0
64         help
65           Reserved EMIF region start address. Set to "0" to auto-select
66           to be at the end of the external memory region.
67
68 config TI_SECURE_EMIF_TOTAL_REGION_SIZE
69         hex "Reserved EMIF region size"
70         depends on TI_SECURE_DEVICE
71         default 0x0
72         help
73           Total reserved EMIF region size. Default is 0, which means no reserved EMIF
74           region on secure devices.
75
76 config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
77         hex "Size of protected region within reserved EMIF region"
78         depends on TI_SECURE_DEVICE
79         default 0x0
80         help
81           This config option is used to specify the size of the portion of the total
82           reserved EMIF region set aside for secure OS needs that will  be protected
83           using hardware memory firewalls. This value must be smaller than the
84           TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
85
86 source "board/compulab/cm_t54/Kconfig"
87 source "board/ti/omap5_uevm/Kconfig"
88 source "board/ti/dra7xx/Kconfig"
89 source "board/ti/am57xx/Kconfig"
90
91 endif