1f9162b15SAkshay Bhat /* 2f9162b15SAkshay Bhat * Copyright (C) 2015 Timesys Corporation 3f9162b15SAkshay Bhat * Copyright (C) 2015 General Electric Company 4f9162b15SAkshay Bhat * Copyright (C) 2014 Advantech 5f9162b15SAkshay Bhat * Copyright (C) 2012 Freescale Semiconductor, Inc. 6f9162b15SAkshay Bhat * 7f9162b15SAkshay Bhat * Configuration settings for the GE MX6Q Bx50v3 boards. 8f9162b15SAkshay Bhat * 9f9162b15SAkshay Bhat * SPDX-License-Identifier: GPL-2.0+ 10f9162b15SAkshay Bhat */ 11f9162b15SAkshay Bhat 12f9162b15SAkshay Bhat #ifndef __GE_BX50V3_CONFIG_H 13f9162b15SAkshay Bhat #define __GE_BX50V3_CONFIG_H 14f9162b15SAkshay Bhat 15f9162b15SAkshay Bhat #include <asm/arch/imx-regs.h> 16f9162b15SAkshay Bhat #include <asm/imx-common/gpio.h> 17f9162b15SAkshay Bhat 183dddc793SKen Lin #define BX50V3_BOOTARGS_EXTRA 19f9162b15SAkshay Bhat #if defined(CONFIG_TARGET_GE_B450V3) 20f9162b15SAkshay Bhat #define CONFIG_BOARD_NAME "General Electric B450v3" 21f9162b15SAkshay Bhat #elif defined(CONFIG_TARGET_GE_B650V3) 22f9162b15SAkshay Bhat #define CONFIG_BOARD_NAME "General Electric B650v3" 23f9162b15SAkshay Bhat #elif defined(CONFIG_TARGET_GE_B850V3) 24f9162b15SAkshay Bhat #define CONFIG_BOARD_NAME "General Electric B850v3" 253dddc793SKen Lin #undef BX50V3_BOOTARGS_EXTRA 263dddc793SKen Lin #define BX50V3_BOOTARGS_EXTRA "video=DP-1:1024x768@60 " \ 273dddc793SKen Lin "video=HDMI-A-1:1024x768@60 " 28f9162b15SAkshay Bhat #else 29f9162b15SAkshay Bhat #define CONFIG_BOARD_NAME "General Electric BA16 Generic" 30f9162b15SAkshay Bhat #endif 31f9162b15SAkshay Bhat 32f9162b15SAkshay Bhat #define CONFIG_MXC_UART_BASE UART3_BASE 3312ca05a3SSimon Glass #define CONSOLE_DEV "ttymxc2" 34f9162b15SAkshay Bhat 35f9162b15SAkshay Bhat #define CONFIG_SUPPORT_EMMC_BOOT 36f9162b15SAkshay Bhat 37f9162b15SAkshay Bhat 38f9162b15SAkshay Bhat #include "mx6_common.h" 39f9162b15SAkshay Bhat #include <linux/sizes.h> 40f9162b15SAkshay Bhat 41f9162b15SAkshay Bhat #define CONFIG_CMDLINE_TAG 42f9162b15SAkshay Bhat #define CONFIG_SETUP_MEMORY_TAGS 43f9162b15SAkshay Bhat #define CONFIG_INITRD_TAG 44f9162b15SAkshay Bhat #define CONFIG_REVISION_TAG 45f9162b15SAkshay Bhat #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M) 46f9162b15SAkshay Bhat 47f9162b15SAkshay Bhat #define CONFIG_MXC_GPIO 48f9162b15SAkshay Bhat #define CONFIG_MXC_UART 49f9162b15SAkshay Bhat 50f9162b15SAkshay Bhat #define CONFIG_CMD_FUSE 51f9162b15SAkshay Bhat #define CONFIG_MXC_OCOTP 52f9162b15SAkshay Bhat 53f9162b15SAkshay Bhat /* SATA Configs */ 54aacc10c5SAndrew Shadura #ifdef CONFIG_CMD_SATA 55f9162b15SAkshay Bhat #define CONFIG_DWC_AHSATA 56f9162b15SAkshay Bhat #define CONFIG_SYS_SATA_MAX_DEVICE 1 57f9162b15SAkshay Bhat #define CONFIG_DWC_AHSATA_PORT_ID 0 58f9162b15SAkshay Bhat #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR 59f9162b15SAkshay Bhat #define CONFIG_LBA48 60f9162b15SAkshay Bhat #define CONFIG_LIBATA 61aacc10c5SAndrew Shadura #endif 62f9162b15SAkshay Bhat 63f9162b15SAkshay Bhat /* MMC Configs */ 64f9162b15SAkshay Bhat #define CONFIG_FSL_ESDHC 65f9162b15SAkshay Bhat #define CONFIG_FSL_USDHC 66f9162b15SAkshay Bhat #define CONFIG_SYS_FSL_ESDHC_ADDR 0 67f9162b15SAkshay Bhat #define CONFIG_BOUNCE_BUFFER 68f9162b15SAkshay Bhat 69f9162b15SAkshay Bhat /* USB Configs */ 70fc44902aSAndrew Shadura #ifdef CONFIG_USB 71f9162b15SAkshay Bhat #define CONFIG_USB_EHCI 72f9162b15SAkshay Bhat #define CONFIG_USB_EHCI_MX6 73f9162b15SAkshay Bhat #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 74f9162b15SAkshay Bhat #define CONFIG_EHCI_HCD_INIT_AFTER_RESET 75f9162b15SAkshay Bhat #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) 76f9162b15SAkshay Bhat #define CONFIG_MXC_USB_FLAGS 0 77f9162b15SAkshay Bhat #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP 78f9162b15SAkshay Bhat 79f9162b15SAkshay Bhat #define CONFIG_CI_UDC 80f9162b15SAkshay Bhat #define CONFIG_USBD_HS 81f9162b15SAkshay Bhat #define CONFIG_USB_GADGET_DUALSPEED 82f9162b15SAkshay Bhat #define CONFIG_USB_GADGET 83f9162b15SAkshay Bhat #define CONFIG_USB_GADGET_DOWNLOAD 84f9162b15SAkshay Bhat #define CONFIG_USB_GADGET_MASS_STORAGE 85f9162b15SAkshay Bhat #define CONFIG_USB_FUNCTION_MASS_STORAGE 86f9162b15SAkshay Bhat #define CONFIG_USB_GADGET_VBUS_DRAW 2 87f9162b15SAkshay Bhat #define CONFIG_G_DNL_VENDOR_NUM 0x0525 88f9162b15SAkshay Bhat #define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5 89f9162b15SAkshay Bhat #define CONFIG_G_DNL_MANUFACTURER "Advantech" 90fc44902aSAndrew Shadura #endif 91f9162b15SAkshay Bhat 92f9162b15SAkshay Bhat /* Networking Configs */ 93c26ffd9bSAndrew Shadura #ifdef CONFIG_NET 94f9162b15SAkshay Bhat #define CONFIG_FEC_MXC 95f9162b15SAkshay Bhat #define CONFIG_MII 96f9162b15SAkshay Bhat #define IMX_FEC_BASE ENET_BASE_ADDR 97f9162b15SAkshay Bhat #define CONFIG_FEC_XCV_TYPE RGMII 98f9162b15SAkshay Bhat #define CONFIG_ETHPRIME "FEC" 99f9162b15SAkshay Bhat #define CONFIG_FEC_MXC_PHYADDR 4 100f9162b15SAkshay Bhat #define CONFIG_PHYLIB 101f9162b15SAkshay Bhat #define CONFIG_PHY_ATHEROS 102c26ffd9bSAndrew Shadura #endif 103f9162b15SAkshay Bhat 104f9162b15SAkshay Bhat /* Serial Flash */ 105f9162b15SAkshay Bhat #ifdef CONFIG_CMD_SF 106f9162b15SAkshay Bhat #define CONFIG_MXC_SPI 107f9162b15SAkshay Bhat #define CONFIG_SF_DEFAULT_BUS 0 108f9162b15SAkshay Bhat #define CONFIG_SF_DEFAULT_CS 0 109f9162b15SAkshay Bhat #define CONFIG_SF_DEFAULT_SPEED 20000000 110f9162b15SAkshay Bhat #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0 111f9162b15SAkshay Bhat #endif 112f9162b15SAkshay Bhat 113f9162b15SAkshay Bhat /* allow to overwrite serial and ethaddr */ 114f9162b15SAkshay Bhat #define CONFIG_ENV_OVERWRITE 115f9162b15SAkshay Bhat #define CONFIG_CONS_INDEX 1 116f9162b15SAkshay Bhat #define CONFIG_BAUDRATE 115200 117f9162b15SAkshay Bhat 118f9162b15SAkshay Bhat /* Command definition */ 119f9162b15SAkshay Bhat #define CONFIG_CMD_BMODE 120f9162b15SAkshay Bhat 121f9162b15SAkshay Bhat #define CONFIG_LOADADDR 0x12000000 122f9162b15SAkshay Bhat #define CONFIG_SYS_TEXT_BASE 0x17800000 123f9162b15SAkshay Bhat 124f9162b15SAkshay Bhat #define CONFIG_EXTRA_ENV_SETTINGS \ 125f9162b15SAkshay Bhat "script=boot.scr\0" \ 126f9162b15SAkshay Bhat "image=/boot/uImage\0" \ 127f9162b15SAkshay Bhat "uboot=u-boot.imx\0" \ 128f9162b15SAkshay Bhat "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ 129f9162b15SAkshay Bhat "fdt_addr=0x18000000\0" \ 130f9162b15SAkshay Bhat "boot_fdt=yes\0" \ 131f9162b15SAkshay Bhat "ip_dyn=yes\0" \ 13212ca05a3SSimon Glass "console=" CONSOLE_DEV "\0" \ 133f9162b15SAkshay Bhat "fdt_high=0xffffffff\0" \ 134f9162b15SAkshay Bhat "initrd_high=0xffffffff\0" \ 135f9162b15SAkshay Bhat "sddev=0\0" \ 136f9162b15SAkshay Bhat "emmcdev=1\0" \ 137f9162b15SAkshay Bhat "partnum=1\0" \ 138f9162b15SAkshay Bhat "update_sd_firmware=" \ 139f9162b15SAkshay Bhat "if test ${ip_dyn} = yes; then " \ 140f9162b15SAkshay Bhat "setenv get_cmd dhcp; " \ 141f9162b15SAkshay Bhat "else " \ 142f9162b15SAkshay Bhat "setenv get_cmd tftp; " \ 143f9162b15SAkshay Bhat "fi; " \ 144f9162b15SAkshay Bhat "if mmc dev ${mmcdev}; then " \ 145f9162b15SAkshay Bhat "if ${get_cmd} ${update_sd_firmware_filename}; then " \ 146f9162b15SAkshay Bhat "setexpr fw_sz ${filesize} / 0x200; " \ 147f9162b15SAkshay Bhat "setexpr fw_sz ${fw_sz} + 1; " \ 148f9162b15SAkshay Bhat "mmc write ${loadaddr} 0x2 ${fw_sz}; " \ 149f9162b15SAkshay Bhat "fi; " \ 150f9162b15SAkshay Bhat "fi\0" \ 151f9162b15SAkshay Bhat "update_sf_uboot=" \ 152f9162b15SAkshay Bhat "if tftp $loadaddr $uboot; then " \ 153f9162b15SAkshay Bhat "sf probe; " \ 154f9162b15SAkshay Bhat "sf erase 0 0xC0000; " \ 155f9162b15SAkshay Bhat "sf write $loadaddr 0x400 $filesize; " \ 156f9162b15SAkshay Bhat "echo 'U-Boot upgraded. Please reset'; " \ 157f9162b15SAkshay Bhat "fi\0" \ 158f9162b15SAkshay Bhat "setargs=setenv bootargs console=${console},${baudrate} " \ 1593dddc793SKen Lin "root=/dev/${rootdev} rw rootwait cma=128M " \ 1603dddc793SKen Lin BX50V3_BOOTARGS_EXTRA "\0" \ 161f9162b15SAkshay Bhat "loadbootscript=" \ 162f9162b15SAkshay Bhat "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${script};\0" \ 163f9162b15SAkshay Bhat "bootscript=echo Running bootscript from ${dev}:${devnum}:${partnum};" \ 164f9162b15SAkshay Bhat " source\0" \ 165f9162b15SAkshay Bhat "loadimage=" \ 166f9162b15SAkshay Bhat "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \ 167f9162b15SAkshay Bhat "loadfdt=ext2load ${dev} ${devnum}:${partnum} ${fdt_addr} ${fdt_file}\0" \ 168f9162b15SAkshay Bhat "tryboot=" \ 169f9162b15SAkshay Bhat "if run loadbootscript; then " \ 170f9162b15SAkshay Bhat "run bootscript; " \ 171f9162b15SAkshay Bhat "else " \ 172f9162b15SAkshay Bhat "if run loadimage; then " \ 173f9162b15SAkshay Bhat "run doboot; " \ 174f9162b15SAkshay Bhat "fi; " \ 175f9162b15SAkshay Bhat "fi;\0" \ 176f9162b15SAkshay Bhat "doboot=echo Booting from ${dev}:${devnum}:${partnum} ...; " \ 177f9162b15SAkshay Bhat "run setargs; " \ 178f9162b15SAkshay Bhat "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ 179f9162b15SAkshay Bhat "if run loadfdt; then " \ 180f9162b15SAkshay Bhat "bootm ${loadaddr} - ${fdt_addr}; " \ 181f9162b15SAkshay Bhat "else " \ 182f9162b15SAkshay Bhat "if test ${boot_fdt} = try; then " \ 183f9162b15SAkshay Bhat "bootm; " \ 184f9162b15SAkshay Bhat "else " \ 185f9162b15SAkshay Bhat "echo WARN: Cannot load the DT; " \ 186f9162b15SAkshay Bhat "fi; " \ 187f9162b15SAkshay Bhat "fi; " \ 188f9162b15SAkshay Bhat "else " \ 189f9162b15SAkshay Bhat "bootm; " \ 190f9162b15SAkshay Bhat "fi;\0" \ 191f9162b15SAkshay Bhat "netargs=setenv bootargs console=${console},${baudrate} " \ 192f9162b15SAkshay Bhat "root=/dev/nfs " \ 193f9162b15SAkshay Bhat "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ 194f9162b15SAkshay Bhat "netboot=echo Booting from net ...; " \ 195f9162b15SAkshay Bhat "run netargs; " \ 196f9162b15SAkshay Bhat "if test ${ip_dyn} = yes; then " \ 197f9162b15SAkshay Bhat "setenv get_cmd dhcp; " \ 198f9162b15SAkshay Bhat "else " \ 199f9162b15SAkshay Bhat "setenv get_cmd tftp; " \ 200f9162b15SAkshay Bhat "fi; " \ 201f9162b15SAkshay Bhat "${get_cmd} ${image}; " \ 202f9162b15SAkshay Bhat "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ 203f9162b15SAkshay Bhat "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ 204f9162b15SAkshay Bhat "bootm ${loadaddr} - ${fdt_addr}; " \ 205f9162b15SAkshay Bhat "else " \ 206f9162b15SAkshay Bhat "if test ${boot_fdt} = try; then " \ 207f9162b15SAkshay Bhat "bootm; " \ 208f9162b15SAkshay Bhat "else " \ 209f9162b15SAkshay Bhat "echo WARN: Cannot load the DT; " \ 210f9162b15SAkshay Bhat "fi; " \ 211f9162b15SAkshay Bhat "fi; " \ 212f9162b15SAkshay Bhat "else " \ 213f9162b15SAkshay Bhat "bootm; " \ 214f9162b15SAkshay Bhat "fi;\0" \ 215f9162b15SAkshay Bhat 216fc44902aSAndrew Shadura #define CONFIG_MMCBOOTCOMMAND \ 217f9162b15SAkshay Bhat "setenv dev mmc; " \ 218f6825e4aSKimmo Surakka "setenv rootdev mmcblk0p${partnum}; " \ 219f9162b15SAkshay Bhat \ 220f9162b15SAkshay Bhat "setenv devnum ${sddev}; " \ 221f9162b15SAkshay Bhat "if mmc dev ${devnum}; then " \ 222f9162b15SAkshay Bhat "run tryboot; " \ 223f6825e4aSKimmo Surakka "setenv rootdev mmcblk1p${partnum}; " \ 224f9162b15SAkshay Bhat "fi; " \ 225f9162b15SAkshay Bhat \ 226f9162b15SAkshay Bhat "setenv devnum ${emmcdev}; " \ 227f9162b15SAkshay Bhat "if mmc dev ${devnum}; then " \ 228f9162b15SAkshay Bhat "run tryboot; " \ 229f9162b15SAkshay Bhat "fi; " \ 230fc44902aSAndrew Shadura 231fc44902aSAndrew Shadura #define CONFIG_USBBOOTCOMMAND \ 232fc44902aSAndrew Shadura "usb start; " \ 233fc44902aSAndrew Shadura "setenv dev usb; " \ 234fc44902aSAndrew Shadura "setenv devnum 0; " \ 235f6825e4aSKimmo Surakka "setenv rootdev sda${partnum}; " \ 236fc44902aSAndrew Shadura "run tryboot; " \ 237f9162b15SAkshay Bhat \ 238fc44902aSAndrew Shadura CONFIG_MMCBOOTCOMMAND \ 239f9162b15SAkshay Bhat "bmode usb; " \ 240f9162b15SAkshay Bhat 241fc44902aSAndrew Shadura #ifdef CONFIG_CMD_USB 242fc44902aSAndrew Shadura #define CONFIG_BOOTCOMMAND CONFIG_USBBOOTCOMMAND 243fc44902aSAndrew Shadura #else 244fc44902aSAndrew Shadura #define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND 245fc44902aSAndrew Shadura #endif 246fc44902aSAndrew Shadura 247f9162b15SAkshay Bhat #define CONFIG_ARP_TIMEOUT 200UL 248f9162b15SAkshay Bhat 249f9162b15SAkshay Bhat /* Miscellaneous configurable options */ 250f9162b15SAkshay Bhat #define CONFIG_SYS_LONGHELP 251f9162b15SAkshay Bhat #define CONFIG_AUTO_COMPLETE 252f9162b15SAkshay Bhat 253f9162b15SAkshay Bhat /* Print Buffer Size */ 254f9162b15SAkshay Bhat #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 255f9162b15SAkshay Bhat #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 256f9162b15SAkshay Bhat 257f9162b15SAkshay Bhat #define CONFIG_SYS_MEMTEST_START 0x10000000 258f9162b15SAkshay Bhat #define CONFIG_SYS_MEMTEST_END 0x10010000 259f9162b15SAkshay Bhat #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 260f9162b15SAkshay Bhat 261f9162b15SAkshay Bhat #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR 262f9162b15SAkshay Bhat 263f9162b15SAkshay Bhat #define CONFIG_CMDLINE_EDITING 264f9162b15SAkshay Bhat #define CONFIG_STACKSIZE (128 * 1024) 265f9162b15SAkshay Bhat 266f9162b15SAkshay Bhat /* Physical Memory Map */ 267f9162b15SAkshay Bhat #define CONFIG_NR_DRAM_BANKS 1 268f9162b15SAkshay Bhat #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 269f9162b15SAkshay Bhat 270f9162b15SAkshay Bhat #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 271f9162b15SAkshay Bhat #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 272f9162b15SAkshay Bhat #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 273f9162b15SAkshay Bhat 274f9162b15SAkshay Bhat #define CONFIG_SYS_INIT_SP_OFFSET \ 275f9162b15SAkshay Bhat (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 276f9162b15SAkshay Bhat #define CONFIG_SYS_INIT_SP_ADDR \ 277f9162b15SAkshay Bhat (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 278f9162b15SAkshay Bhat 279*e856bdcfSMasahiro Yamada /* environment organization */ 280f9162b15SAkshay Bhat #define CONFIG_ENV_IS_IN_SPI_FLASH 281f9162b15SAkshay Bhat #define CONFIG_ENV_SIZE (8 * 1024) 282f9162b15SAkshay Bhat #define CONFIG_ENV_OFFSET (768 * 1024) 283f9162b15SAkshay Bhat #define CONFIG_ENV_SECT_SIZE (64 * 1024) 284f9162b15SAkshay Bhat #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS 285f9162b15SAkshay Bhat #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS 286f9162b15SAkshay Bhat #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE 287f9162b15SAkshay Bhat #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED 288f9162b15SAkshay Bhat 289f9162b15SAkshay Bhat #ifndef CONFIG_SYS_DCACHE_OFF 290f9162b15SAkshay Bhat #endif 291f9162b15SAkshay Bhat 292f9162b15SAkshay Bhat #define CONFIG_SYS_FSL_USDHC_NUM 3 293f9162b15SAkshay Bhat 294f9162b15SAkshay Bhat /* Framebuffer */ 29507aa030aSAndrew Shadura #ifdef CONFIG_VIDEO 296f9162b15SAkshay Bhat #define CONFIG_VIDEO_IPUV3 297f9162b15SAkshay Bhat #define CONFIG_VIDEO_BMP_RLE8 298f9162b15SAkshay Bhat #define CONFIG_SPLASH_SCREEN 299f9162b15SAkshay Bhat #define CONFIG_SPLASH_SCREEN_ALIGN 300f9162b15SAkshay Bhat #define CONFIG_BMP_16BPP 301f9162b15SAkshay Bhat #define CONFIG_VIDEO_LOGO 302f9162b15SAkshay Bhat #define CONFIG_VIDEO_BMP_LOGO 303f9162b15SAkshay Bhat #define CONFIG_IPUV3_CLK 260000000 304f9162b15SAkshay Bhat #define CONFIG_IMX_HDMI 305f9162b15SAkshay Bhat #define CONFIG_IMX_VIDEO_SKIP 30607aa030aSAndrew Shadura #endif 307f9162b15SAkshay Bhat 30854971ac6SAkshay Bhat #define CONFIG_PWM_IMX 30954971ac6SAkshay Bhat #define CONFIG_IMX6_PWM_PER_CLK 66000000 31054971ac6SAkshay Bhat 311f9162b15SAkshay Bhat #undef CONFIG_CMD_PCI 312f9162b15SAkshay Bhat #ifdef CONFIG_CMD_PCI 313f9162b15SAkshay Bhat #define CONFIG_PCI_SCAN_SHOW 314f9162b15SAkshay Bhat #define CONFIG_PCIE_IMX 315f9162b15SAkshay Bhat #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12) 316f9162b15SAkshay Bhat #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(1, 5) 317f9162b15SAkshay Bhat #endif 318f9162b15SAkshay Bhat 319f9162b15SAkshay Bhat /* I2C Configs */ 320f9162b15SAkshay Bhat #define CONFIG_SYS_I2C 321f9162b15SAkshay Bhat #define CONFIG_SYS_I2C_MXC 322f9162b15SAkshay Bhat #define CONFIG_SYS_I2C_SPEED 100000 323f9162b15SAkshay Bhat #define CONFIG_SYS_I2C_MXC_I2C1 324f9162b15SAkshay Bhat #define CONFIG_SYS_I2C_MXC_I2C2 325f9162b15SAkshay Bhat #define CONFIG_SYS_I2C_MXC_I2C3 326f9162b15SAkshay Bhat 327f9162b15SAkshay Bhat #endif /* __GE_BX50V3_CONFIG_H */ 328