blob: d8e712693661871315759492807ce43b3677b7a1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rob Herring37fc0ed2011-10-24 08:50:20 +00002/*
3 * Copyright 2010-2011 Calxeda, Inc.
Rob Herring37fc0ed2011-10-24 08:50:20 +00004 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
Rob Herring37fc0ed2011-10-24 08:50:20 +00009#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
10
Rob Herring9df1bd42013-10-04 10:22:43 -050011#define CONFIG_SYS_TIMER_RATE (150000000/256)
12#define CONFIG_SYS_TIMER_COUNTER (0xFFF34000 + 0x4)
13#define CONFIG_SYS_TIMER_COUNTS_DOWN
14
Rob Herring37fc0ed2011-10-24 08:50:20 +000015#define CONFIG_PL011_CLOCK 150000000
Rob Herring37fc0ed2011-10-24 08:50:20 +000016
Stefan Roese0044c422012-08-16 17:55:41 +000017#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
Rob Herring877012d2012-02-01 16:57:54 +000018
Rob Herring37fc0ed2011-10-24 08:50:20 +000019/*
20 * Miscellaneous configurable options
21 */
Rob Herring37fc0ed2011-10-24 08:50:20 +000022
Rob Herring185a5bb2013-06-12 22:24:47 -050023#define CONFIG_SYS_64BIT_LBA
24
Jason Hobbsa34e8542012-02-01 16:57:56 +000025/* Environment data setup
26*/
Jason Hobbsa34e8542012-02-01 16:57:56 +000027#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
28#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
Rob Herring37fc0ed2011-10-24 08:50:20 +000029
30#define CONFIG_SYS_SDRAM_BASE 0x00000000
Rob Herring37fc0ed2011-10-24 08:50:20 +000031
Andre Przywara84b2cd72021-04-12 01:04:50 +010032#define CONFIG_EXTRA_ENV_SETTINGS \
33 "fdt_high=0x20000000\0" \
34 "initrd_high=0x20000000\0"
35
Rob Herring37fc0ed2011-10-24 08:50:20 +000036#endif