mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-17 23:37:01 +00: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>
23 lines
521 B
C
23 lines
521 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2017 Armadeus Systems
|
|
*
|
|
* Configuration settings for the OPOS6ULDev board
|
|
*/
|
|
|
|
#ifndef __OPOS6ULDEV_CONFIG_H
|
|
#define __OPOS6ULDEV_CONFIG_H
|
|
|
|
#include "mx6_common.h"
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
/* Physical Memory Map */
|
|
#define CFG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
|
|
#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
|
|
#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
|
|
|
|
/* LCD */
|
|
#define MXS_LCDIF_BASE MX6UL_LCDIF1_BASE_ADDR
|
|
|
|
#endif /* __OPOS6ULDEV_CONFIG_H */
|