mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
dd11fdc31f
Perform simple renames of: CONFIG_MXC_USB_FLAGS to CFG_MXC_USB_FLAGS CONFIG_MXC_USB_PORT to CFG_MXC_USB_PORT CONFIG_MXC_USB_PORTSC to CFG_MXC_USB_PORTSC Signed-off-by: Tom Rini <trini@konsulko.com>
29 lines
654 B
C
29 lines
654 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
|
|
|
|
/* USB */
|
|
#ifdef CONFIG_USB_EHCI_MX6
|
|
#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
#define CFG_MXC_USB_FLAGS 0
|
|
#endif
|
|
|
|
/* LCD */
|
|
#define MXS_LCDIF_BASE MX6UL_LCDIF1_BASE_ADDR
|
|
|
|
#endif /* __OPOS6ULDEV_CONFIG_H */
|