blob: 5bc47d6442f9e6f4d1fdd7cbc7c63b3cc29ba82c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stelian Pop2118ebb2008-05-08 18:52:25 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop2118ebb2008-05-08 18:52:25 +02005 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * Configuation settings for the AT91SAM9RLEK board.
Stelian Pop2118ebb2008-05-08 18:52:25 +02008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Xu, Hong21d671d2011-08-01 03:56:53 +000013#include <asm/hardware.h>
14
Stelian Pop2118ebb2008-05-08 18:52:25 +020015/* ARM asynchronous clock */
Xu, Hong21d671d2011-08-01 03:56:53 +000016#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */
17#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* main clock xtal */
Stelian Pop2118ebb2008-05-08 18:52:25 +020018
Xu, Hong21d671d2011-08-01 03:56:53 +000019#define CONFIG_ATMEL_LEGACY
Stelian Pop2118ebb2008-05-08 18:52:25 +020020
21/*
22 * Hardware drivers
23 */
Xu, Hong21d671d2011-08-01 03:56:53 +000024
Stelian Pop761c70b2008-05-08 14:52:32 +020025/* LCD */
Stelian Pop761c70b2008-05-08 14:52:32 +020026#define LCD_BPP LCD_COLOR8
27#define CONFIG_LCD_LOGO 1
28#undef LCD_TEST_PATTERN
29#define CONFIG_LCD_INFO 1
30#define CONFIG_LCD_INFO_BELOW_LOGO 1
Stelian Pop761c70b2008-05-08 14:52:32 +020031#define CONFIG_ATMEL_LCD 1
32#define CONFIG_ATMEL_LCD_RGB565 1
Xu, Hong21d671d2011-08-01 03:56:53 +000033/* Let board_init_f handle the framebuffer allocation */
34#undef CONFIG_FB_ADDR
Xu, Hong21d671d2011-08-01 03:56:53 +000035
Stelian Pop2118ebb2008-05-08 18:52:25 +020036/* SDRAM */
Xu, Hong21d671d2011-08-01 03:56:53 +000037#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
38#define CONFIG_SYS_SDRAM_SIZE 0x04000000
39
40#define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang2011dca2017-04-18 15:28:27 +080041 (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Stelian Pop2118ebb2008-05-08 18:52:25 +020042
Stelian Pop2118ebb2008-05-08 18:52:25 +020043/* NAND flash */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010044#ifdef CONFIG_CMD_NAND
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#define CONFIG_SYS_MAX_NAND_DEVICE 1
Xu, Hong21d671d2011-08-01 03:56:53 +000046#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#define CONFIG_SYS_NAND_DBW_8 1
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010048/* our ALE is AD21 */
49#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
50/* our CLE is AD22 */
51#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
52#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PB6
53#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PD17
Wolfgang Denk2eb99ca2009-07-18 21:52:24 +020054
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010055#endif
Stelian Pop2118ebb2008-05-08 18:52:25 +020056
57/* Ethernet - not present */
58
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020059#ifdef CONFIG_SYS_USE_DATAFLASH
Stelian Pop2118ebb2008-05-08 18:52:25 +020060
61/* bootstrap + u-boot + env + linux in dataflash on CS0 */
Stelian Pop2118ebb2008-05-08 18:52:25 +020062
Wu, Josh0b128432015-02-02 17:51:01 +080063#elif CONFIG_SYS_USE_NANDFLASH
Stelian Pop2118ebb2008-05-08 18:52:25 +020064
65/* bootstrap + u-boot + env + linux in nandflash */
Stelian Pop2118ebb2008-05-08 18:52:25 +020066
Wu, Josh0b128432015-02-02 17:51:01 +080067#else /* CONFIG_SYS_USE_MMC */
68
69/* bootstrap + u-boot + env + linux in mmc */
Stelian Pop2118ebb2008-05-08 18:52:25 +020070#endif
Stelian Pop2118ebb2008-05-08 18:52:25 +020071#endif