blob: a77215d19becb60e82846ff28746c709e6ffddac [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocher44a93442015-06-29 09:10:48 +02002/*
3 * (C) Copyright 2007-2008
4 * Stelian Pop <stelian@popies.net>
5 * Lead Tech Design <www.leadtechdesign.com>
6 *
7 * (C) Copyright 2010
8 * Achim Ehrlich <aehrlich@taskit.de>
9 * taskit GmbH <www.taskit.de>
10 *
11 * (C) Copyright 2012
12 * Markus Hubig <mhubig@imko.de>
13 * IMKO GmbH <www.imko.de>
14 *
15 * (C) Copyright 2014
16 * Heiko Schocher <hs@denx.de>
17 * DENX Software Engineering GmbH
18 *
19 * Configuation settings for the smartweb.
Heiko Schocher44a93442015-06-29 09:10:48 +020020 */
21
22#ifndef __CONFIG_H
23#define __CONFIG_H
24
25/*
26 * SoC must be defined first, before hardware.h is included.
27 * In this case SoC is defined in boards.cfg.
28 */
29#include <asm/hardware.h>
Heiko Schochercf5137c2015-09-08 11:52:52 +020030#include <linux/sizes.h>
Heiko Schocher44a93442015-06-29 09:10:48 +020031
32/*
Simon Glass72cc5382022-10-20 18:22:39 -060033 * Warning: changing CONFIG_TEXT_BASE requires adapting the initial boot
Heiko Schocher44a93442015-06-29 09:10:48 +020034 * program. Since the linker has to swallow that define, we must use a pure
35 * hex number here!
36 */
Heiko Schocher44a93442015-06-29 09:10:48 +020037
38/* ARM asynchronous clock */
39#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */
40#define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* 18.432MHz crystal */
41
42/* misc settings */
Heiko Schocher44a93442015-06-29 09:10:48 +020043
Heiko Schocher44a93442015-06-29 09:10:48 +020044/*
45 * SDRAM: 1 bank, 64 MB, base address 0x20000000
46 * Already initialized before u-boot gets started.
47 */
Heiko Schocher44a93442015-06-29 09:10:48 +020048#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
Heiko Schochercf5137c2015-09-08 11:52:52 +020049#define CONFIG_SYS_SDRAM_SIZE (64 * SZ_1M)
Heiko Schocher44a93442015-06-29 09:10:48 +020050
51/*
52 * Perform a SDRAM Memtest from the start of SDRAM
53 * till the beginning of the U-Boot position in RAM.
54 */
Heiko Schocher44a93442015-06-29 09:10:48 +020055
Heiko Schocher44a93442015-06-29 09:10:48 +020056/* NAND flash settings */
Heiko Schocher44a93442015-06-29 09:10:48 +020057#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
58#define CONFIG_SYS_NAND_DBW_8
59#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
60#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
61#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
62#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13
63
Heiko Schocher44a93442015-06-29 09:10:48 +020064/* serial console */
Heiko Schocher44a93442015-06-29 09:10:48 +020065#define CONFIG_USART_BASE ATMEL_BASE_DBGU
66#define CONFIG_USART_ID ATMEL_ID_SYS
Heiko Schocher44a93442015-06-29 09:10:48 +020067
Heiko Schochercf5137c2015-09-08 11:52:52 +020068/* USB DFU support */
Heiko Schochercf5137c2015-09-08 11:52:52 +020069
Heiko Schochercf5137c2015-09-08 11:52:52 +020070#define CONFIG_USB_GADGET_AT91
71
72/* DFU class support */
Heiko Schochercf5137c2015-09-08 11:52:52 +020073#define DFU_MANIFEST_POLL_TIMEOUT 25000
Heiko Schocher44a93442015-06-29 09:10:48 +020074
75/* General Boot Parameter */
Heiko Schocher44a93442015-06-29 09:10:48 +020076
77/*
Heiko Schocher44a93442015-06-29 09:10:48 +020078 * Predefined environment variables.
79 * Usefull to define some easy to use boot commands.
80 */
81#define CONFIG_EXTRA_ENV_SETTINGS \
82 \
83 "basicargs=console=ttyS0,115200\0" \
84 \
Heiko Schocher44a93442015-06-29 09:10:48 +020085
Heiko Schocher44a93442015-06-29 09:10:48 +020086/*
87 * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
88 * leaving the correct space for initial global data structure above that
89 * address while providing maximum stack area below.
90 */
Tom Rini4ddbade2022-05-25 12:16:03 -040091#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
92#define CONFIG_SYS_INIT_RAM_ADDR ATMEL_BASE_SRAM1
Heiko Schocher44a93442015-06-29 09:10:48 +020093
Heiko Schocher44a93442015-06-29 09:10:48 +020094/* Defines for SPL */
Heiko Schocher44a93442015-06-29 09:10:48 +020095
Heiko Schocher44a93442015-06-29 09:10:48 +020096#define CONFIG_SYS_NAND_ENABLE_PIN_SPL (2*32 + 14)
Heiko Schochercf5137c2015-09-08 11:52:52 +020097#define CONFIG_SYS_NAND_U_BOOT_SIZE SZ_512K
Simon Glass72cc5382022-10-20 18:22:39 -060098#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_TEXT_BASE
99#define CONFIG_SYS_NAND_U_BOOT_DST CONFIG_TEXT_BASE
Heiko Schocher44a93442015-06-29 09:10:48 +0200100
Heiko Schochercf5137c2015-09-08 11:52:52 +0200101#define CONFIG_SYS_NAND_SIZE (SZ_256M)
Heiko Schocher44a93442015-06-29 09:10:48 +0200102#define CONFIG_SYS_NAND_ECCSIZE 256
103#define CONFIG_SYS_NAND_ECCBYTES 3
Heiko Schocher44a93442015-06-29 09:10:48 +0200104#define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \
105 48, 49, 50, 51, 52, 53, 54, 55, \
106 56, 57, 58, 59, 60, 61, 62, 63, }
107
Heiko Schocher44a93442015-06-29 09:10:48 +0200108#define CONFIG_SYS_MASTER_CLOCK (198656000/2)
109#define AT91_PLL_LOCK_TIMEOUT 1000000
110#define CONFIG_SYS_AT91_PLLA 0x2060bf09
111#define CONFIG_SYS_MCKR 0x100
112#define CONFIG_SYS_MCKR_CSS (0x02 | CONFIG_SYS_MCKR)
113#define CONFIG_SYS_AT91_PLLB 0x10483f0e
114
Heiko Schocher44a93442015-06-29 09:10:48 +0200115#endif /* __CONFIG_H */