summaryrefslogtreecommitdiff
path: root/board/toradex/colibri-imx6ull/Kconfig
blob: 63a75ec2d801638001723788096a58733e1f6575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
if TARGET_COLIBRI_IMX6ULL

choice
	prompt "Colibri iMX6ULL variant"
	optional

config TARGET_COLIBRI_IMX6ULL_NAND
	bool "Support Colibri iMX6ULL 256MB / 512MB (raw NAND) modules"
	imply NAND_MXS
	help
	  Choose this option if you build for a Toradex Colibri iMX6ULL
	  256MB or 512MB module which do have raw NAND on-module.

config TARGET_COLIBRI_IMX6ULL_EMMC
	bool "Support Colibri iMX6ULL 1GB (eMMC) modules"
	help
	  Choose this option if you build for a Toradex Colibri iMX6ULL
	  1GB module which does have eMMC on-module.

endchoice

config SYS_BOARD
	default "colibri-imx6ull"

config SYS_VENDOR
	default "toradex"

config TDX_CFG_BLOCK
	default y

config TDX_CFG_BLOCK_2ND_ETHADDR
	default y

config SYS_CONFIG_NAME
	default "colibri-imx6ull_tezi-recovery" if (!TARGET_COLIBRI_IMX6ULL_NAND && !TARGET_COLIBRI_IMX6ULL_EMMC)

if TARGET_COLIBRI_IMX6ULL_NAND

config SYS_CONFIG_NAME
	default "colibri-imx6ull"

config TDX_HAVE_NAND
	default y

config TDX_CFG_BLOCK_OFFSET
	default "2048"

config TDX_CFG_BLOCK_OFFSET2
	default "133120"

endif

if TARGET_COLIBRI_IMX6ULL_EMMC

config SYS_CONFIG_NAME
	default "colibri-imx6ull"

config TDX_HAVE_MMC
	default y

config TDX_CFG_BLOCK_DEV
	default "0"

config TDX_CFG_BLOCK_PART
	default "1"

# Toradex config block in eMMC, at the end of 1st "boot sector"
config TDX_CFG_BLOCK_OFFSET
	default "-512"

endif

source "board/toradex/common/Kconfig"

endif