blob: 01085476a4307722d159cd7682d56f5491df305f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02005 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * Configuation settings for the AT91SAM9M10G45EK board(and AT91SAM9G45EKES).
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
13/* ARM asynchronous clock */
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000014#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
15#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* from 12 MHz crystal */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020016
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020017/* SDRAM */
Wenyou Yange61ed482017-09-14 11:07:42 +080018#define CONFIG_SYS_SDRAM_BASE 0x70000000
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000019#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020020
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020021/* NAND flash */
22#ifdef CONFIG_CMD_NAND
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000023#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
24#define CONFIG_SYS_NAND_DBW_8
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020025/* our ALE is AD21 */
26#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
27/* our CLE is AD22 */
28#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
29#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
30#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC8
Wolfgang Denk2eb99ca2009-07-18 21:52:24 +020031
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020032#endif
33
Wenyou Yang55415432017-09-14 11:07:44 +080034#ifdef CONFIG_SD_BOOT
Wenyou Yang55415432017-09-14 11:07:44 +080035#elif CONFIG_NAND_BOOT
Bo Shen41d41a92015-03-27 14:23:34 +080036#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
Bo Shen41d41a92015-03-27 14:23:34 +080037
Bo Shen41d41a92015-03-27 14:23:34 +080038#define CONFIG_SYS_NAND_ECCSIZE 256
39#define CONFIG_SYS_NAND_ECCBYTES 3
Bo Shen41d41a92015-03-27 14:23:34 +080040#define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \
41 48, 49, 50, 51, 52, 53, 54, 55, \
42 56, 57, 58, 59, 60, 61, 62, 63, }
43#endif
44
Bo Shen41d41a92015-03-27 14:23:34 +080045#define CONFIG_SYS_MASTER_CLOCK 132096000
46#define CONFIG_SYS_AT91_PLLA 0x20c73f03
47#define CONFIG_SYS_MCKR 0x1301
48#define CONFIG_SYS_MCKR_CSS 0x1302
49
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020050#endif