blob: 55c874bf6193deb7fa64d9b5db68d93b62e0ce34 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rob Herring73089ad2011-10-24 08:50:20 +00002/*
3 * Copyright 2010-2011 Calxeda, Inc.
Rob Herring73089ad2011-10-24 08:50:20 +00004 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
Rob Herring73089ad2011-10-24 08:50:20 +00009#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
10
Rob Herring8ba859a2013-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 Herring73089ad2011-10-24 08:50:20 +000015#define CONFIG_PL011_CLOCK 150000000
Rob Herring73089ad2011-10-24 08:50:20 +000016
Stefan Roese033848e2012-08-16 17:55:41 +000017#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
Rob Herring02fe7852012-02-01 16:57:54 +000018
Rob Herringfd5700b2013-06-12 22:24:51 -050019#define CONFIG_BOOT_RETRY_TIME -1
20#define CONFIG_RESET_TO_RETRY
Stefan Roese83da3f12015-05-18 14:08:23 +020021
Rob Herring73089ad2011-10-24 08:50:20 +000022/*
23 * Miscellaneous configurable options
24 */
Rob Herringb184c732013-06-12 22:24:47 -050025#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Rob Herring73089ad2011-10-24 08:50:20 +000026#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Rob Herring73089ad2011-10-24 08:50:20 +000027
Rob Herringb184c732013-06-12 22:24:47 -050028#define CONFIG_SYS_64BIT_LBA
29
Jason Hobbs209432a2012-02-01 16:57:56 +000030/* Environment data setup
31*/
Jason Hobbs209432a2012-02-01 16:57:56 +000032#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
33#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
Rob Herring73089ad2011-10-24 08:50:20 +000034
35#define CONFIG_SYS_SDRAM_BASE 0x00000000
Rob Herring73089ad2011-10-24 08:50:20 +000036#define CONFIG_SYS_INIT_SP_ADDR 0x01000000
Rob Herring73089ad2011-10-24 08:50:20 +000037
Andre Przywara36dd0792021-04-12 01:04:50 +010038#define CONFIG_EXTRA_ENV_SETTINGS \
39 "fdt_high=0x20000000\0" \
40 "initrd_high=0x20000000\0"
41
Rob Herring73089ad2011-10-24 08:50:20 +000042#endif