]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/mx6qsabreauto.h
Merge branch 'karo-tx-uboot' into kc-merge
[karo-tx-uboot.git] / include / configs / mx6qsabreauto.h
1 /*
2  * Copyright (C) 2012 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the Freescale i.MX6Q SabreAuto board.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __MX6QSABREAUTO_CONFIG_H
10 #define __MX6QSABREAUTO_CONFIG_H
11
12 #define CONFIG_MACH_TYPE        3529
13 #define CONFIG_MXC_UART_BASE    UART4_BASE
14 #define CONFIG_CONSOLE_DEV              "ttymxc3"
15 #define CONFIG_DEFAULT_FDT_FILE "imx6q-sabreauto.dtb"
16 #define CONFIG_DEFAULT_FDT_FILE "imx6dl-sabreauto.dtb"
17 #endif
18 #define CONFIG_MMCROOT                  "/dev/mmcblk0p2"
19 #define PHYS_SDRAM_SIZE         (2u * 1024 * 1024 * 1024)
20
21 /* USB Configs */
22 #define CONFIG_CMD_USB
23 #define CONFIG_USB_EHCI
24 #define CONFIG_USB_EHCI_MX6
25 #define CONFIG_USB_STORAGE
26 #define CONFIG_USB_HOST_ETHER
27 #define CONFIG_USB_ETHER_ASIX
28 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
29 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
30 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
31 #define CONFIG_MXC_USB_FLAGS    0
32
33 #define CONFIG_PCA953X
34 #define CONFIG_SYS_I2C_PCA953X_WIDTH    { {0x30, 8}, {0x32, 8}, {0x34, 8} }
35
36 #include "mx6sabre_common.h"
37
38 #undef CONFIG_SYS_NO_FLASH
39 #define CONFIG_SYS_FLASH_BASE           WEIM_ARB_BASE_ADDR
40 #define CONFIG_SYS_FLASH_SECT_SIZE      (128 * 1024)
41 #define CONFIG_SYS_MAX_FLASH_BANKS 1    /* max number of memory banks */
42 #define CONFIG_SYS_MAX_FLASH_SECT 256   /* max number of sectors on one chip */
43 #define CONFIG_SYS_FLASH_CFI            /* Flash memory is CFI compliant */
44 #define CONFIG_FLASH_CFI_DRIVER         /* Use drivers/cfi_flash.c */
45 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* Use buffered writes*/
46 #define CONFIG_SYS_FLASH_EMPTY_INFO
47
48 #define CONFIG_SYS_FSL_USDHC_NUM        2
49 #if defined(CONFIG_ENV_IS_IN_MMC)
50 #define CONFIG_SYS_MMC_ENV_DEV          0
51 #endif
52
53 /* I2C Configs */
54 #define CONFIG_CMD_I2C
55 #define CONFIG_SYS_I2C
56 #define CONFIG_SYS_I2C_MXC
57 #define CONFIG_SYS_I2C_SPEED            100000
58
59 /* NAND flash command */
60 #define CONFIG_CMD_NAND
61 #define CONFIG_CMD_NAND_TRIMFFS
62
63 /* NAND stuff */
64 #define CONFIG_NAND_MXS
65 #define CONFIG_SYS_MAX_NAND_DEVICE     1
66 #define CONFIG_SYS_NAND_BASE           0x40000000
67 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
68 #define CONFIG_SYS_NAND_ONFI_DETECTION
69
70 /* DMA stuff, needed for GPMI/MXS NAND support */
71 #define CONFIG_APBH_DMA
72 #define CONFIG_APBH_DMA_BURST
73 #define CONFIG_APBH_DMA_BURST8
74
75 /* PMIC */
76 #define CONFIG_POWER
77 #define CONFIG_POWER_I2C
78 #define CONFIG_POWER_PFUZE100
79 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
80
81 #endif                         /* __MX6QSABREAUTO_CONFIG_H */