mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
The definition of CFG_MXC_USB_PORTSC as (PORT_PTS_UTMI | PORT_PTS_PTW) can be removed from mx5/mx6/mx7/mx8m board config files as it is the default in drivers/usb/host/ehci-mx5.c and drivers/usb/host/ehci-mx6.c. Suggested-by: Tim Harvey <tharvey@gateworks.com> Signed-off-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Tim Harvey <tharvey@gateworks.com>
28 lines
626 B
C
28 lines
626 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2012 Freescale Semiconductor, Inc.
|
|
*
|
|
* Configuration settings for the Freescale i.MX6Q SabreSD board.
|
|
*/
|
|
|
|
#ifndef __MX6SABRESD_CONFIG_H
|
|
#define __MX6SABRESD_CONFIG_H
|
|
|
|
#define CFG_MXC_UART_BASE UART1_BASE
|
|
#define CONSOLE_DEV "ttymxc0"
|
|
|
|
#include "mx6sabre_common.h"
|
|
|
|
/* Falcon Mode */
|
|
|
|
/* Falcon Mode - MMC support: args@1MB kernel@2MB */
|
|
|
|
#define CFG_SYS_FSL_USDHC_NUM 3
|
|
|
|
#ifdef CONFIG_CMD_PCI
|
|
#define CFG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
|
|
#define CFG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(3, 19)
|
|
#endif
|
|
|
|
#endif /* __MX6SABRESD_CONFIG_H */
|