mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-14 05:46:58 +00:00
These boards have not been converted to CONFIG_DM_USB by the deadline and is also missing conversion to CONFIG_DM. Remove them. As this is also the last SPEAR3XX platform, remove that symbol as well. Cc: Vipin Kumar <vipin.kumar@st.com> Signed-off-by: Tom Rini <trini@konsulko.com>
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2009, STMicroelectronics - All Rights Reserved
|
|
* Author(s): Vipin Kumar, <vipin.kumar@st.com> for STMicroelectronics.
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_HARDWARE_H
|
|
#define _ASM_ARCH_HARDWARE_H
|
|
|
|
#define CONFIG_SYS_USBD_BASE 0xE1100000
|
|
#define CONFIG_SYS_PLUG_BASE 0xE1200000
|
|
#define CONFIG_SYS_FIFO_BASE 0xE1000800
|
|
#define CONFIG_SYS_UHC0_EHCI_BASE 0xE1800000
|
|
#define CONFIG_SYS_UHC1_EHCI_BASE 0xE2000000
|
|
#define CONFIG_SYS_SMI_BASE 0xFC000000
|
|
#define CONFIG_SPEAR_SYSCNTLBASE 0xFCA00000
|
|
#define CONFIG_SPEAR_TIMERBASE 0xFC800000
|
|
#define CONFIG_SPEAR_MISCBASE 0xFCA80000
|
|
#define CONFIG_SPEAR_ETHBASE 0xE0800000
|
|
#define CONFIG_SPEAR_MPMCBASE 0xFC600000
|
|
#define CONFIG_SSP1_BASE 0xD0100000
|
|
#define CONFIG_SSP2_BASE 0xD0180000
|
|
#define CONFIG_SSP3_BASE 0xD8180000
|
|
#define CONFIG_GPIO_BASE 0xD8100000
|
|
|
|
#define CONFIG_SYS_NAND_CLE (1 << 16)
|
|
#define CONFIG_SYS_NAND_ALE (1 << 17)
|
|
|
|
#if defined(CONFIG_SPEAR600)
|
|
#define CONFIG_SYS_FSMC_BASE 0xD1800000
|
|
#define CONFIG_FSMC_NAND_BASE 0xD2000000
|
|
|
|
#define CONFIG_SPEAR_BOOTSTRAPCFG 0xFCA80000
|
|
#define CONFIG_SPEAR_BOOTSTRAPSHFT 16
|
|
#define CONFIG_SPEAR_BOOTSTRAPMASK 0xB
|
|
#define CONFIG_SPEAR_ONLYSNORBOOT 0xA
|
|
#define CONFIG_SPEAR_NORNANDBOOT 0xB
|
|
#define CONFIG_SPEAR_NORNAND8BOOT 0x8
|
|
#define CONFIG_SPEAR_NORNAND16BOOT 0x9
|
|
#define CONFIG_SPEAR_USBBOOT 0x8
|
|
|
|
#define CONFIG_SPEAR_MPMCREGS 100
|
|
|
|
#endif
|
|
#endif /* _ASM_ARCH_HARDWARE_H */
|