hc
2023-02-18 84d1d1bed0120e0921c876885ca9006fb9ddf42e
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
76
77
78
79
80
81
82
if TARGET_TQMA6
 
config SYS_BOARD
   default "tqma6"
 
config SYS_VENDOR
   default "tqc"
 
config SYS_CONFIG_NAME
   default "tqma6"
 
choice
   prompt "TQMa6 SoC variant"
   default TQMA6Q
   help
     select the TQMa6 module variant. The variants differing in the used
     i.MX6 CPU type and DRAM
 
config TQMA6Q
   bool "TQMa6Q / TQMa6D"
   select MX6Q
   help
     select TQMa6Q / TQMa6D with i.MX6Q/D and 1GiB DRAM
 
config TQMA6DL
   bool "TQMa6DL"
   select MX6DL
   help
     select TQMa6DL with i.MX6DL and 1GiB DRAM
 
config TQMA6S
   bool "TQMa6S"
   select MX6S
   help
     select TQMa6S with i.MX6S and 512 MiB DRAM
 
endchoice
 
choice
   prompt "TQMa6 boot configuration"
   default TQMA6X_MMC_BOOT
   help
     Configure boot device. This is also used to implement environment
     location.
 
config TQMA6X_MMC_BOOT
   bool "MMC / SD Boot"
   help
     Boot from eMMC / SD Card
 
config TQMA6X_SPI_BOOT
   bool "SPI NOR Boot"
   help
     Boot from on board SPI NOR flash
 
endchoice
 
choice
   prompt "TQMa6 base board variant"
   default MBA6
   help
     Select base board for TQMa6
 
config MBA6
   bool "TQMa6 on MBa6 Starterkit"
   help
     Select the MBa6 starterkit. This features a GigE Phy, USB, SD-Card
     etc.
 
config WRU4
   bool "OHB WRU-IV"
   help
     Select the OHB Systems AG WRU-IV baseboard.
 
endchoice
 
config IMX_CONFIG
   default "board/tqc/tqma6/tqma6q.cfg" if TQMA6Q
   default "board/tqc/tqma6/tqma6dl.cfg" if TQMA6DL
   default "board/tqc/tqma6/tqma6s.cfg" if TQMA6S
 
endif