blob: 084cb4def667317d022a73555988e729320ed58c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Bo Shenf1960442014-11-10 15:46:22 +08002/*
3 * Configuration settings for the SAMA5D4 Xplained ultra board.
4 *
5 * Copyright (C) 2014 Atmel
6 * Bo Shen <voice.shen@atmel.com>
Bo Shenf1960442014-11-10 15:46:22 +08007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Wu, Joshb2d387b2015-03-30 14:51:19 +080012#include "at91-sama5_common.h"
Bo Shenf1960442014-11-10 15:46:22 +080013
Bo Shenf1960442014-11-10 15:46:22 +080014/* SDRAM */
Tom Riniaa6e94d2022-11-16 13:10:37 -050015#define CFG_SYS_SDRAM_BASE 0x20000000
16#define CFG_SYS_SDRAM_SIZE 0x20000000
Bo Shenf1960442014-11-10 15:46:22 +080017
Bo Shenf1960442014-11-10 15:46:22 +080018/* NAND flash */
Bo Shenf1960442014-11-10 15:46:22 +080019#ifdef CONFIG_CMD_NAND
Tom Rini4e590942022-11-12 17:36:51 -050020#define CFG_SYS_NAND_BASE 0x80000000
Bo Shenf1960442014-11-10 15:46:22 +080021/* our ALE is AD21 */
Tom Rini4e590942022-11-12 17:36:51 -050022#define CFG_SYS_NAND_MASK_ALE (1 << 21)
Bo Shenf1960442014-11-10 15:46:22 +080023/* our CLE is AD22 */
Tom Rini4e590942022-11-12 17:36:51 -050024#define CFG_SYS_NAND_MASK_CLE (1 << 22)
Bo Shenf1960442014-11-10 15:46:22 +080025#endif
26
Bo Shen0b2a9822014-12-15 13:24:39 +080027/* SPL */
Bo Shen0b2a9822014-12-15 13:24:39 +080028
Bo Shenf1960442014-11-10 15:46:22 +080029#endif