Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007-2008 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 4 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 5 | * Lead Tech Design <www.leadtechdesign.com> |
| 6 | * |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 7 | * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards. |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 13 | /* |
| 14 | * SoC must be defined first, before hardware.h is included. |
| 15 | * In this case SoC is defined in boards.cfg. |
| 16 | */ |
| 17 | #include <asm/hardware.h> |
Jens Scharsig | 128ecd0 | 2010-02-03 22:45:42 +0100 | [diff] [blame] | 18 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 19 | /* |
| 20 | * Warning: changing CONFIG_SYS_TEXT_BASE requires |
| 21 | * adapting the initial boot program. |
| 22 | * Since the linker has to swallow that define, we must use a pure |
| 23 | * hex number here! |
| 24 | */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 25 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 26 | /* ARM asynchronous clock */ |
| 27 | #define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */ |
| 28 | #define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* main clock xtal */ |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 29 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 30 | /* |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 31 | * SDRAM: 1 bank, min 32, max 128 MB |
| 32 | * Initialized before u-boot gets started. |
| 33 | */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 34 | #define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1 |
| 35 | #define CONFIG_SYS_SDRAM_SIZE 0x04000000 |
| 36 | |
| 37 | /* |
| 38 | * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM, |
| 39 | * leaving the correct space for initial global data structure above |
| 40 | * that address while providing maximum stack area below. |
| 41 | */ |
| 42 | #ifdef CONFIG_AT91SAM9XE |
| 43 | # define CONFIG_SYS_INIT_SP_ADDR \ |
Wenyou Yang | 9c4fbd5 | 2017-04-18 15:18:47 +0800 | [diff] [blame] | 44 | (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE) |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 45 | #else |
| 46 | # define CONFIG_SYS_INIT_SP_ADDR \ |
Wenyou Yang | 9c4fbd5 | 2017-04-18 15:18:47 +0800 | [diff] [blame] | 47 | (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE) |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 48 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 49 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 50 | /* NAND flash */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 51 | #ifdef CONFIG_CMD_NAND |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 52 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 53 | #define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3 |
| 54 | #define CONFIG_SYS_NAND_DBW_8 |
| 55 | #define CONFIG_SYS_NAND_MASK_ALE (1 << 21) |
| 56 | #define CONFIG_SYS_NAND_MASK_CLE (1 << 22) |
| 57 | #define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14 |
| 58 | #define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13 |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 59 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 60 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 61 | /* USB */ |
Jean-Christophe PLAGNIOL-VILLARD | d42643f | 2009-03-27 23:26:44 +0100 | [diff] [blame] | 62 | #define CONFIG_USB_ATMEL |
Bo Shen | 4a985df | 2013-10-21 16:14:00 +0800 | [diff] [blame] | 63 | #define CONFIG_USB_ATMEL_CLK_SEL_PLLB |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 64 | #define CONFIG_USB_OHCI_NEW 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | #define CONFIG_SYS_USB_OHCI_CPU_INIT 1 |
| 66 | #define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000 /* AT91SAM9260_UHP_BASE */ |
| 67 | #define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260" |
| 68 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 69 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 70 | #endif |