2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-11-10 07:24:02 +00:00
|
|
|
/*
|
|
|
|
* Configuration settings for the SAMA5D4EK board.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Atmel
|
|
|
|
* Bo Shen <voice.shen@atmel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2015-03-30 06:51:19 +00:00
|
|
|
#include "at91-sama5_common.h"
|
2014-11-10 07:24:02 +00:00
|
|
|
|
|
|
|
/* SDRAM */
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x20000000
|
|
|
|
#define CFG_SYS_SDRAM_SIZE 0x20000000
|
2014-11-10 07:24:02 +00:00
|
|
|
|
|
|
|
/* NAND flash */
|
|
|
|
#ifdef CONFIG_CMD_NAND
|
2022-11-12 22:36:51 +00:00
|
|
|
#define CFG_SYS_NAND_BASE 0x80000000
|
2014-11-10 07:24:02 +00:00
|
|
|
/* our ALE is AD21 */
|
2022-11-12 22:36:51 +00:00
|
|
|
#define CFG_SYS_NAND_MASK_ALE (1 << 21)
|
2014-11-10 07:24:02 +00:00
|
|
|
/* our CLE is AD22 */
|
2022-11-12 22:36:51 +00:00
|
|
|
#define CFG_SYS_NAND_MASK_CLE (1 << 22)
|
2014-11-10 07:24:02 +00:00
|
|
|
#endif
|
|
|
|
|
2014-12-15 05:24:38 +00:00
|
|
|
/* SPL */
|
|
|
|
|
2014-11-10 07:24:02 +00:00
|
|
|
#endif
|