Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007-2008 |
Stelian Pop | c9e798d | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 4 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 5 | * Lead Tech Design <www.leadtechdesign.com> |
| 6 | * |
| 7 | * Configuation settings for the AT91SAM9RLEK board. |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 13 | #include <asm/hardware.h> |
| 14 | |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 15 | /* ARM asynchronous clock */ |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 16 | #define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */ |
| 17 | #define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* main clock xtal */ |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 18 | |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 19 | #define CONFIG_ATMEL_LEGACY |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 20 | |
| 21 | /* |
| 22 | * Hardware drivers |
| 23 | */ |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 24 | |
Stelian Pop | 761c70b | 2008-05-08 14:52:32 +0200 | [diff] [blame] | 25 | /* LCD */ |
Stelian Pop | 761c70b | 2008-05-08 14:52:32 +0200 | [diff] [blame] | 26 | #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 Pop | 761c70b | 2008-05-08 14:52:32 +0200 | [diff] [blame] | 31 | #define CONFIG_ATMEL_LCD 1 |
| 32 | #define CONFIG_ATMEL_LCD_RGB565 1 |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 33 | /* Let board_init_f handle the framebuffer allocation */ |
| 34 | #undef CONFIG_FB_ADDR |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 35 | |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 36 | /* SDRAM */ |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 37 | #define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1 |
| 38 | #define CONFIG_SYS_SDRAM_SIZE 0x04000000 |
| 39 | |
| 40 | #define CONFIG_SYS_INIT_SP_ADDR \ |
Wenyou Yang | 2011dca | 2017-04-18 15:28:27 +0800 | [diff] [blame] | 41 | (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE) |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 42 | |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 43 | /* NAND flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 74c076d | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 44 | #ifdef CONFIG_CMD_NAND |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Xu, Hong | 21d671d | 2011-08-01 03:56:53 +0000 | [diff] [blame] | 46 | #define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | #define CONFIG_SYS_NAND_DBW_8 1 |
Jean-Christophe PLAGNIOL-VILLARD | 74c076d | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 48 | /* 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 Denk | 2eb99ca | 2009-07-18 21:52:24 +0200 | [diff] [blame] | 54 | |
Jean-Christophe PLAGNIOL-VILLARD | 74c076d | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 55 | #endif |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 56 | |
| 57 | /* Ethernet - not present */ |
| 58 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 59 | #ifdef CONFIG_SYS_USE_DATAFLASH |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 60 | |
| 61 | /* bootstrap + u-boot + env + linux in dataflash on CS0 */ |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 62 | |
Wu, Josh | 0b12843 | 2015-02-02 17:51:01 +0800 | [diff] [blame] | 63 | #elif CONFIG_SYS_USE_NANDFLASH |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 64 | |
| 65 | /* bootstrap + u-boot + env + linux in nandflash */ |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 66 | |
Wu, Josh | 0b12843 | 2015-02-02 17:51:01 +0800 | [diff] [blame] | 67 | #else /* CONFIG_SYS_USE_MMC */ |
| 68 | |
| 69 | /* bootstrap + u-boot + env + linux in mmc */ |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 70 | #endif |
Stelian Pop | 2118ebb | 2008-05-08 18:52:25 +0200 | [diff] [blame] | 71 | #endif |