blob: ceb4626373e04cc23edb7129f9f1609c9cd004ca [file] [log] [blame]
Markus Niebelee2cd2b2014-07-18 16:52:44 +02001/*
2 * Copyright (C) 2013, 2014 Markus Niebel <Markus.Niebel@tq-group.com>
3 *
4 * Configuration settings for the TQ Systems TQMa6<Q,S> module.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Markus Niebelc34054e2015-06-04 17:25:30 +020012#include <linux/kconfig.h>
Markus Niebela116f6f2014-10-23 15:47:05 +020013/* SPL */
14/* #if defined(CONFIG_SPL_BUILD) */
Markus Niebela116f6f2014-10-23 15:47:05 +020015/* common IMX6 SPL configuration */
16#include "imx6_spl.h"
17
18/* #endif */
19
Fabio Estevam8c717e52015-05-28 12:33:34 -030020/* place code in last 4 MiB of RAM */
21#if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
22#define CONFIG_SYS_TEXT_BASE 0x2fc00000
23#elif defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
24#define CONFIG_SYS_TEXT_BASE 0x4fc00000
25#endif
26
Markus Niebelee2cd2b2014-07-18 16:52:44 +020027#include "mx6_common.h"
Markus Niebelee2cd2b2014-07-18 16:52:44 +020028
Markus Niebelee2cd2b2014-07-18 16:52:44 +020029#if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
30#define PHYS_SDRAM_SIZE (512u * SZ_1M)
31#elif defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
32#define PHYS_SDRAM_SIZE (1024u * SZ_1M)
33#endif
34
Markus Niebelee2cd2b2014-07-18 16:52:44 +020035#define CONFIG_MXC_UART
36
37/* SPI */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020038#define CONFIG_MXC_SPI
39
40/* SPI Flash */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020041
Markus Niebela02eaa52014-11-18 13:22:54 +010042#define TQMA6_SPI_FLASH_SECTOR_SIZE SZ_64K
43
Markus Niebelee2cd2b2014-07-18 16:52:44 +020044#define CONFIG_SF_DEFAULT_BUS 0
Markus Niebela116f6f2014-10-23 15:47:05 +020045#define CONFIG_SF_DEFAULT_CS 0
Markus Niebelee2cd2b2014-07-18 16:52:44 +020046#define CONFIG_SF_DEFAULT_SPEED 50000000
47#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
48
49/* I2C Configs */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020050#define CONFIG_SYS_I2C
51#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)eb943872015-09-21 22:43:38 +020052#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
53#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf1a52162015-03-20 10:20:40 -070054#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020055#define CONFIG_I2C_MULTI_BUS
56#define CONFIG_SYS_I2C_SPEED 100000
57
58/* I2C SYSMON (LM75) */
59#define CONFIG_DTT_LM75
Markus Niebelee2cd2b2014-07-18 16:52:44 +020060#define CONFIG_DTT_MAX_TEMP 70
61#define CONFIG_DTT_MIN_TEMP -30
62#define CONFIG_DTT_HYSTERESIS 3
63#define CONFIG_CMD_DTT
64
65/* I2C EEPROM (M24C64) */
66#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
67#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
68#define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5 /* 32 Bytes */
69#define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 20
70#define CONFIG_CMD_EEPROM
71
72#define CONFIG_POWER
73#define CONFIG_POWER_I2C
74#define CONFIG_POWER_PFUZE100
75#define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
76#define TQMA6_PFUZE100_I2C_BUS 2
77
78/* MMC Configs */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020079#define CONFIG_SYS_FSL_ESDHC_ADDR 0
80
Markus Niebelee2cd2b2014-07-18 16:52:44 +020081/* USB Configs */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020082#define CONFIG_USB_EHCI
83#define CONFIG_USB_EHCI_MX6
Markus Niebelee2cd2b2014-07-18 16:52:44 +020084#define CONFIG_USB_HOST_ETHER
85#define CONFIG_USB_ETHER_SMSC95XX
Markus Niebelee2cd2b2014-07-18 16:52:44 +020086#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Stefan Roese4cbf1882015-03-12 13:34:29 +010087#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
88#define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
Markus Niebelee2cd2b2014-07-18 16:52:44 +020089
Markus Niebelee2cd2b2014-07-18 16:52:44 +020090#define CONFIG_FEC_MXC
91#define IMX_FEC_BASE ENET_BASE_ADDR
92#define CONFIG_PHYLIB
93#define CONFIG_MII
94
Markus Niebelee2cd2b2014-07-18 16:52:44 +020095#define CONFIG_ARP_TIMEOUT 200UL
96/* Network config - Allow larger/faster download for TFTP/NFS */
97#define CONFIG_IP_DEFRAG
98#define CONFIG_TFTP_BLOCKSIZE 4096
99#define CONFIG_NFS_READ_SIZE 4096
100
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200101/* Command definition */
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200102#define CONFIG_CMD_BMODE
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200103
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200104#define CONFIG_ENV_SIZE (SZ_8K)
105/* Size of malloc() pool */
106#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * SZ_1M)
107
108#if defined(CONFIG_TQMA6X_MMC_BOOT)
109
110#define CONFIG_ENV_IS_IN_MMC
111#define TQMA6_UBOOT_OFFSET SZ_1K
112#define TQMA6_UBOOT_SECTOR_START 0x2
113#define TQMA6_UBOOT_SECTOR_COUNT 0x7fe
114
115#define CONFIG_ENV_OFFSET SZ_1M
116#define CONFIG_SYS_MMC_ENV_DEV 0
117
118#define TQMA6_FDT_OFFSET (2 * SZ_1M)
119#define TQMA6_FDT_SECTOR_START 0x1000
120#define TQMA6_FDT_SECTOR_COUNT 0x800
121
122#define TQMA6_KERNEL_SECTOR_START 0x2000
123#define TQMA6_KERNEL_SECTOR_COUNT 0x2000
124
125#define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
126 "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0" \
127 "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
128 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
129 "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
130 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
131 "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
132 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
133 "loadimage=mmc dev ${mmcdev}; " \
134 "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0" \
135 "loadfdt=mmc dev ${mmcdev}; " \
136 "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0" \
137 "update_uboot=if tftp ${uboot}; then " \
138 "if itest ${filesize} > 0; then " \
139 "mmc dev ${mmcdev}; mmc rescan; " \
140 "setexpr blkc ${filesize} / 0x200; " \
141 "setexpr blkc ${blkc} + 1; " \
142 "if itest ${blkc} <= ${uboot_size}; then " \
143 "mmc write ${loadaddr} ${uboot_start} " \
144 "${blkc}; " \
145 "fi; " \
146 "fi; fi; " \
147 "setenv filesize; setenv blkc \0" \
148 "update_kernel=run kernel_name; " \
149 "if tftp ${kernel}; then " \
150 "if itest ${filesize} > 0; then " \
151 "mmc dev ${mmcdev}; mmc rescan; " \
152 "setexpr blkc ${filesize} / 0x200; " \
153 "setexpr blkc ${blkc} + 1; " \
154 "if itest ${blkc} <= ${kernel_size}; then " \
155 "mmc write ${loadaddr} " \
156 "${kernel_start} ${blkc}; " \
157 "fi; " \
158 "fi; " \
159 "fi; " \
160 "setenv filesize; setenv blkc \0" \
161 "update_fdt=if tftp ${fdt_file}; then " \
162 "if itest ${filesize} > 0; then " \
163 "mmc dev ${mmcdev}; mmc rescan; " \
164 "setexpr blkc ${filesize} / 0x200; " \
165 "setexpr blkc ${blkc} + 1; " \
166 "if itest ${blkc} <= ${fdt_size}; then " \
167 "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \
168 "fi; " \
169 "fi; fi; " \
170 "setenv filesize; setenv blkc \0" \
171
172#define CONFIG_BOOTCOMMAND \
173 "run mmcboot; run netboot; run panicboot"
174
175#elif defined(CONFIG_TQMA6X_SPI_BOOT)
176
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200177#define TQMA6_UBOOT_OFFSET 0x400
178#define TQMA6_UBOOT_SECTOR_START 0x0
179/* max u-boot size: 512k */
Markus Niebela02eaa52014-11-18 13:22:54 +0100180#define TQMA6_UBOOT_SECTOR_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200181#define TQMA6_UBOOT_SECTOR_COUNT 0x8
182#define TQMA6_UBOOT_SIZE (TQMA6_UBOOT_SECTOR_SIZE * \
183 TQMA6_UBOOT_SECTOR_COUNT)
184
185#define CONFIG_ENV_IS_IN_SPI_FLASH
186#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
187#define CONFIG_ENV_OFFSET (TQMA6_UBOOT_SIZE)
Markus Niebela02eaa52014-11-18 13:22:54 +0100188#define CONFIG_ENV_SECT_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200189#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
190 CONFIG_ENV_SECT_SIZE)
191
192#define CONFIG_ENV_SPI_BUS (CONFIG_SF_DEFAULT_BUS)
193#define CONFIG_ENV_SPI_CS (CONFIG_SF_DEFAULT_CS)
194#define CONFIG_ENV_SPI_MAX_HZ (CONFIG_SF_DEFAULT_SPEED)
195#define CONFIG_ENV_SPI_MODE (CONFIG_SF_DEFAULT_MODE)
196
197#define TQMA6_FDT_OFFSET (CONFIG_ENV_OFFSET_REDUND + \
198 CONFIG_ENV_SECT_SIZE)
Markus Niebela02eaa52014-11-18 13:22:54 +0100199#define TQMA6_FDT_SECT_SIZE (TQMA6_SPI_FLASH_SECTOR_SIZE)
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200200
201#define TQMA6_FDT_SECTOR_START 0x0a /* 8 Sector u-boot, 2 Sector env */
202#define TQMA6_FDT_SECTOR_COUNT 0x01
203
204#define TQMA6_KERNEL_SECTOR_START 0x10
205#define TQMA6_KERNEL_SECTOR_COUNT 0x60
206
207#define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
208 "mmcblkdev=0\0" \
209 "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0" \
210 "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
211 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
212 "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
213 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
214 "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
215 "update_uboot=if tftp ${uboot}; then " \
216 "if itest ${filesize} > 0; then " \
217 "setexpr blkc ${filesize} + " \
218 __stringify(TQMA6_UBOOT_OFFSET) "; " \
219 "setexpr size ${uboot_sectors} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100220 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200221 "if itest ${blkc} <= ${size}; then " \
222 "sf probe; " \
223 "sf erase 0 ${size}; " \
224 "sf write ${loadaddr} ${uboot_offset} " \
225 "${filesize}; " \
226 "fi; " \
227 "fi; fi; " \
228 "setenv filesize 0; setenv blkc; setenv size \0" \
229 "update_kernel=run kernel_name; if tftp ${kernel}; then " \
230 "if itest ${filesize} > 0; then " \
231 "setexpr size ${kernel_sectors} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100232 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200233 "setexpr offset ${kernel_start} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100234 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200235 "if itest ${filesize} <= ${size}; then " \
236 "sf probe; " \
237 "sf erase ${offset} ${size}; " \
238 "sf write ${loadaddr} ${offset} " \
239 "${filesize}; " \
240 "fi; " \
241 "fi; fi; " \
242 "setenv filesize 0; setenv size ; setenv offset\0" \
243 "update_fdt=if tftp ${fdt_file}; then " \
244 "if itest ${filesize} > 0; then " \
245 "setexpr size ${fdt_sectors} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100246 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200247 "setexpr offset ${fdt_start} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100248 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200249 "if itest ${filesize} <= ${size}; then " \
250 "sf probe; " \
251 "sf erase ${offset} ${size}; " \
252 "sf write ${loadaddr} ${offset} " \
253 "${filesize}; " \
254 "fi; " \
255 "fi; fi; " \
256 "setenv filesize 0; setenv size ; setenv offset\0" \
257 "loadimage=sf probe; " \
258 "setexpr size ${kernel_sectors} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100259 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200260 "setexpr offset ${kernel_start} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100261 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200262 "sf read ${loadaddr} ${offset} ${size}; " \
263 "setenv size ; setenv offset\0" \
264 "loadfdt=sf probe; " \
265 "setexpr size ${fdt_sectors} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100266 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200267 "setexpr offset ${fdt_start} * " \
Markus Niebela02eaa52014-11-18 13:22:54 +0100268 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200269 "sf read ${${fdt_addr}} ${offset} ${size}; " \
270 "setenv size ; setenv offset\0" \
271
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200272#define CONFIG_BOOTCOMMAND \
273 "sf probe; run mmcboot; run netboot; run panicboot" \
274
275#else
276
277#error "need to define boot source"
278
279#endif
280
281/* 128 MiB offset as in ARM related docu for linux suggested */
282#define TQMA6_FDT_ADDRESS 0x18000000
283
Markus Niebelb78ff632017-02-03 16:13:58 +0100284/* set to a resonable value, changeable by user */
285#define TQMA6_CMA_SIZE 160M
286
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200287#define CONFIG_EXTRA_ENV_SETTINGS \
288 "board=tqma6\0" \
289 "uimage=uImage\0" \
290 "zimage=zImage\0" \
291 "boot_type=bootz\0" \
292 "kernel_name=if test \"${boot_type}\" != bootz; then " \
293 "setenv kernel ${uimage}; " \
294 "else setenv kernel ${zimage}; fi\0" \
295 "uboot=u-boot.imx\0" \
296 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
297 "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0" \
Simon Glass4694a742016-10-17 20:12:39 -0600298 "console=" CONSOLE_DEV "\0" \
Markus Niebelb78ff632017-02-03 16:13:58 +0100299 "cma_size="__stringify(TQMA6_CMA_SIZE)"\0" \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200300 "fdt_high=0xffffffff\0" \
301 "initrd_high=0xffffffff\0" \
Markus Niebelb78ff632017-02-03 16:13:58 +0100302 "addcma=setenv bootargs ${bootargs} cma=${cma_size}\0" \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200303 "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
304 "addfb=setenv bootargs ${bootargs} " \
305 "imx-fbdev.legacyfb_depth=32 consoleblank=0\0" \
306 "mmcpart=2\0" \
307 "mmcblkdev=0\0" \
Markus Niebelb78ff632017-02-03 16:13:58 +0100308 "mmcargs=run addmmc addtty addfb addcma\0" \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200309 "addmmc=setenv bootargs ${bootargs} " \
310 "root=/dev/mmcblk${mmcblkdev}p${mmcpart} rw rootwait\0" \
311 "mmcboot=echo Booting from mmc ...; " \
312 "setenv bootargs; " \
313 "run mmcargs; " \
314 "run loadimage; " \
315 "if run loadfdt; then " \
316 "echo boot device tree kernel ...; " \
317 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
318 "else " \
319 "${boot_type}; " \
320 "fi;\0" \
321 "setenv bootargs \0" \
322 "netdev=eth0\0" \
323 "rootpath=/srv/nfs/tqma6\0" \
324 "ipmode=static\0" \
Markus Niebelb78ff632017-02-03 16:13:58 +0100325 "netargs=run addnfs addip addtty addfb addcma\0" \
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200326 "addnfs=setenv bootargs ${bootargs} " \
327 "root=/dev/nfs rw " \
328 "nfsroot=${serverip}:${rootpath},v3,tcp;\0" \
329 "addip_static=setenv bootargs ${bootargs} " \
330 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:" \
331 "${hostname}:${netdev}:off\0" \
332 "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0" \
333 "addip=if test \"${ipmode}\" != static; then " \
334 "run addip_dynamic; else run addip_static; fi\0" \
335 "set_getcmd=if test \"${ipmode}\" != static; then " \
336 "setenv getcmd dhcp; setenv autoload yes; " \
337 "else setenv getcmd tftp; setenv autoload no; fi\0" \
338 "netboot=echo Booting from net ...; " \
339 "run kernel_name; " \
340 "run set_getcmd; " \
341 "setenv bootargs; " \
342 "run netargs; " \
343 "if ${getcmd} ${kernel}; then " \
344 "if ${getcmd} ${fdt_addr} ${fdt_file}; then " \
345 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
346 "fi; " \
347 "fi; " \
348 "echo ... failed\0" \
349 "panicboot=echo No boot device !!! reset\0" \
350 TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
351
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200352#define CONFIG_STACKSIZE (128u * SZ_1K)
353
354/* Physical Memory Map */
355#define CONFIG_NR_DRAM_BANKS 1
356#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
357
358#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
359#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
360#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
361
362#define CONFIG_SYS_INIT_SP_OFFSET \
363 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
364#define CONFIG_SYS_INIT_SP_ADDR \
365 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
366
Stefan Roeseb125fd42015-03-12 16:34:16 +0100367/*
368 * All the defines above are for the TQMa6 SoM
369 *
370 * Now include the baseboard specific configuration
371 */
372#ifdef CONFIG_MBA6
373#include "tqma6_mba6.h"
Stefan Roesebe4cb042015-07-06 13:36:33 +0200374#elif CONFIG_WRU4
375#include "tqma6_wru4.h"
Stefan Roeseb125fd42015-03-12 16:34:16 +0100376#else
377#error "No baseboard for the TQMa6 defined!"
378#endif
379
380/* Support at least the sensor on TQMa6 SOM */
381#if !defined(CONFIG_DTT_SENSORS)
382#define CONFIG_DTT_SENSORS { 0 }
383#endif
384
Markus Niebelee2cd2b2014-07-18 16:52:44 +0200385#endif /* __CONFIG_H */