blob: 500c9ae3951e5bc8631dda90268736becfd3c248 [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
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000013#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
Jens Scharsig425de622010-02-03 22:45:42 +010014
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020015/* ARM asynchronous clock */
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000016#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
17#define CONFIG_SYS_AT91_MAIN_CLOCK 12000000 /* from 12 MHz crystal */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020018
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000019#define CONFIG_AT91SAM9M10G45EK
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020020
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000021/* general purpose I/O */
22#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020023
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020024/* LCD */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020025#define LCD_BPP LCD_COLOR8
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000026#define CONFIG_LCD_LOGO
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020027#undef LCD_TEST_PATTERN
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000028#define CONFIG_LCD_INFO
29#define CONFIG_LCD_INFO_BELOW_LOGO
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000030#define CONFIG_ATMEL_LCD
31#define CONFIG_ATMEL_LCD_RGB565
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020032/* board specific(not enough SRAM) */
33#define CONFIG_AT91SAM9G45_LCD_BASE 0x73E00000
34
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020035/*
36 * BOOTP options
37 */
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000038#define CONFIG_BOOTP_BOOTFILESIZE
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020039
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020040/* SDRAM */
Wenyou Yange61ed482017-09-14 11:07:42 +080041#define CONFIG_SYS_SDRAM_BASE 0x70000000
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000042#define CONFIG_SYS_SDRAM_SIZE 0x08000000
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020043
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000044#define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang59b37122017-04-18 15:15:48 +080045 (CONFIG_SYS_SDRAM_BASE + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020046
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020047/* NAND flash */
48#ifdef CONFIG_CMD_NAND
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020049#define CONFIG_SYS_MAX_NAND_DEVICE 1
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000050#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
51#define CONFIG_SYS_NAND_DBW_8
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020052/* our ALE is AD21 */
53#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
54/* our CLE is AD22 */
55#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
56#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
57#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC8
Wolfgang Denk2eb99ca2009-07-18 21:52:24 +020058
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020059#endif
60
61/* Ethernet */
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000062#define CONFIG_RESET_PHY_R
Heiko Schocher4535a242013-11-18 08:07:23 +010063#define CONFIG_AT91_WANTS_COMMON_PHY
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020064
Wenyou Yang55415432017-09-14 11:07:44 +080065#ifdef CONFIG_NAND_BOOT
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000066/* bootstrap + u-boot + env in nandflash */
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020067
Bo Shen0c58cfa2013-02-20 00:16:25 +000068#define CONFIG_BOOTCOMMAND \
69 "nand read 0x70000000 0x200000 0x300000;" \
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000070 "bootm 0x70000000"
Wenyou Yang55415432017-09-14 11:07:44 +080071#elif CONFIG_SD_BOOT
Wu, Josh9637a1b2014-05-21 10:42:16 +080072/* bootstrap + u-boot + env + linux in mmc */
Wu, Josh9637a1b2014-05-21 10:42:16 +080073
Wu, Josh9637a1b2014-05-21 10:42:16 +080074#define CONFIG_BOOTCOMMAND "fatload mmc 0:1 0x71000000 dtb; " \
75 "fatload mmc 0:1 0x72000000 zImage; " \
76 "bootz 0x72000000 - 0x71000000"
77#endif
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020078
Bo Shen41d41a92015-03-27 14:23:34 +080079/* Defines for SPL */
Bo Shen41d41a92015-03-27 14:23:34 +080080#define CONFIG_SPL_MAX_SIZE 0x010000
81#define CONFIG_SPL_STACK 0x310000
82
Bo Shen41d41a92015-03-27 14:23:34 +080083#define CONFIG_SYS_MONITOR_LEN 0x80000
84
Wenyou Yang55415432017-09-14 11:07:44 +080085#ifdef CONFIG_SD_BOOT
Bo Shen41d41a92015-03-27 14:23:34 +080086
87#define CONFIG_SPL_BSS_START_ADDR 0x70000000
88#define CONFIG_SPL_BSS_MAX_SIZE 0x00080000
89#define CONFIG_SYS_SPL_MALLOC_START 0x70080000
90#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00080000
91
Bo Shen41d41a92015-03-27 14:23:34 +080092#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
Bo Shen41d41a92015-03-27 14:23:34 +080093
Wenyou Yang55415432017-09-14 11:07:44 +080094#elif CONFIG_NAND_BOOT
Bo Shen41d41a92015-03-27 14:23:34 +080095#define CONFIG_SPL_NAND_SOFTECC
Bo Shen41d41a92015-03-27 14:23:34 +080096#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
Bo Shen41d41a92015-03-27 14:23:34 +080097
Bo Shen41d41a92015-03-27 14:23:34 +080098#define CONFIG_SYS_NAND_ECCSIZE 256
99#define CONFIG_SYS_NAND_ECCBYTES 3
Bo Shen41d41a92015-03-27 14:23:34 +0800100#define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \
101 48, 49, 50, 51, 52, 53, 54, 55, \
102 56, 57, 58, 59, 60, 61, 62, 63, }
103#endif
104
105#define CONFIG_SPL_ATMEL_SIZE
106#define CONFIG_SYS_MASTER_CLOCK 132096000
107#define CONFIG_SYS_AT91_PLLA 0x20c73f03
108#define CONFIG_SYS_MCKR 0x1301
109#define CONFIG_SYS_MCKR_CSS 0x1302
110
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200111#endif