blob: 0ff70fdc668bd626a2002824009c1c03427e082b [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 Herring73089ad2011-10-24 08:50:20 +000019/*
20 * Miscellaneous configurable options
21 */
Rob Herringb184c732013-06-12 22:24:47 -050022#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Rob Herring73089ad2011-10-24 08:50:20 +000023#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Rob Herring73089ad2011-10-24 08:50:20 +000024
Rob Herringb184c732013-06-12 22:24:47 -050025#define CONFIG_SYS_64BIT_LBA
26
Jason Hobbs209432a2012-02-01 16:57:56 +000027/* Environment data setup
28*/
Jason Hobbs209432a2012-02-01 16:57:56 +000029#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
30#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
Rob Herring73089ad2011-10-24 08:50:20 +000031
32#define CONFIG_SYS_SDRAM_BASE 0x00000000
Rob Herring73089ad2011-10-24 08:50:20 +000033#define CONFIG_SYS_INIT_SP_ADDR 0x01000000
Rob Herring73089ad2011-10-24 08:50:20 +000034
Andre Przywara36dd0792021-04-12 01:04:50 +010035#define CONFIG_EXTRA_ENV_SETTINGS \
36 "fdt_high=0x20000000\0" \
37 "initrd_high=0x20000000\0"
38
Rob Herring73089ad2011-10-24 08:50:20 +000039#endif