blob: b55d2e3925532d7f77e2f8ddc170fdc646dd78da [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Sedji Gaouaou538566d2009-07-09 10:16:29 +02002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Sedji Gaouaou538566d2009-07-09 10:16:29 +02005 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * Configuation settings for the AT91SAM9M10G45EK board(and AT91SAM9G45EKES).
Sedji Gaouaou538566d2009-07-09 10:16:29 +02008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
13/* ARM asynchronous clock */
Thomas Petazzonia5e85762011-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 Gaouaou538566d2009-07-09 10:16:29 +020016
Thomas Petazzonia5e85762011-08-04 11:08:50 +000017/* general purpose I/O */
Thomas Petazzonia5e85762011-08-04 11:08:50 +000018
Sedji Gaouaou538566d2009-07-09 10:16:29 +020019/* LCD */
Sedji Gaouaou538566d2009-07-09 10:16:29 +020020#define LCD_BPP LCD_COLOR8
Sedji Gaouaou538566d2009-07-09 10:16:29 +020021
Sedji Gaouaou538566d2009-07-09 10:16:29 +020022/* SDRAM */
Wenyou Yangd19b9012017-09-14 11:07:42 +080023#define CONFIG_SYS_SDRAM_BASE 0x70000000
Thomas Petazzonia5e85762011-08-04 11:08:50 +000024#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Sedji Gaouaou538566d2009-07-09 10:16:29 +020025
Sedji Gaouaou538566d2009-07-09 10:16:29 +020026/* NAND flash */
27#ifdef CONFIG_CMD_NAND
Sedji Gaouaou538566d2009-07-09 10:16:29 +020028#define CONFIG_SYS_MAX_NAND_DEVICE 1
Thomas Petazzonia5e85762011-08-04 11:08:50 +000029#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
30#define CONFIG_SYS_NAND_DBW_8
Sedji Gaouaou538566d2009-07-09 10:16:29 +020031/* our ALE is AD21 */
32#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
33/* our CLE is AD22 */
34#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
35#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
36#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC8
Wolfgang Denk1f797742009-07-18 21:52:24 +020037
Sedji Gaouaou538566d2009-07-09 10:16:29 +020038#endif
39
Bo Shenc56e9f42015-03-27 14:23:34 +080040#define CONFIG_SYS_MONITOR_LEN 0x80000
41
Wenyou Yange035ea72017-09-14 11:07:44 +080042#ifdef CONFIG_SD_BOOT
Wenyou Yange035ea72017-09-14 11:07:44 +080043#elif CONFIG_NAND_BOOT
Bo Shenc56e9f42015-03-27 14:23:34 +080044#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
Bo Shenc56e9f42015-03-27 14:23:34 +080045
Bo Shenc56e9f42015-03-27 14:23:34 +080046#define CONFIG_SYS_NAND_ECCSIZE 256
47#define CONFIG_SYS_NAND_ECCBYTES 3
Bo Shenc56e9f42015-03-27 14:23:34 +080048#define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \
49 48, 49, 50, 51, 52, 53, 54, 55, \
50 56, 57, 58, 59, 60, 61, 62, 63, }
51#endif
52
Bo Shenc56e9f42015-03-27 14:23:34 +080053#define CONFIG_SYS_MASTER_CLOCK 132096000
54#define CONFIG_SYS_AT91_PLLA 0x20c73f03
55#define CONFIG_SYS_MCKR 0x1301
56#define CONFIG_SYS_MCKR_CSS 0x1302
57
Sedji Gaouaou538566d2009-07-09 10:16:29 +020058#endif