blob: bb6cc957261a82a6ee15eaf6a637b8264169244d [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
Rob Herring37fc0ed2011-10-24 08:50:20 +000017/*
18 * Miscellaneous configurable options
19 */
Rob Herring37fc0ed2011-10-24 08:50:20 +000020
Jason Hobbsa34e8542012-02-01 16:57:56 +000021/* Environment data setup
22*/
Jason Hobbsa34e8542012-02-01 16:57:56 +000023#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
24#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
Rob Herring37fc0ed2011-10-24 08:50:20 +000025
26#define CONFIG_SYS_SDRAM_BASE 0x00000000
Rob Herring37fc0ed2011-10-24 08:50:20 +000027
Andre Przywara84b2cd72021-04-12 01:04:50 +010028#define CONFIG_EXTRA_ENV_SETTINGS \
29 "fdt_high=0x20000000\0" \
30 "initrd_high=0x20000000\0"
31
Rob Herring37fc0ed2011-10-24 08:50:20 +000032#endif