blob: ff70a5972a50b1919ef88f82130db6b19f9d182e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Gabor Juhos02c754a2013-05-22 03:57:37 +00002/*
3 * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
Gabor Juhos02c754a2013-05-22 03:57:37 +00004 */
5
Paul Burton10a74b52013-11-09 10:22:08 +00006#ifndef _MALTA_CONFIG_H
7#define _MALTA_CONFIG_H
Gabor Juhos02c754a2013-05-22 03:57:37 +00008
Gabor Juhos02c754a2013-05-22 03:57:37 +00009/*
10 * System configuration
11 */
Paul Burton10a74b52013-11-09 10:22:08 +000012#define CONFIG_MALTA
Gabor Juhos02c754a2013-05-22 03:57:37 +000013
Gabor Juhos5e195152013-10-24 14:32:00 +020014#define CONFIG_MEMSIZE_IN_BYTES
15
Paul Burtonc028f9b2013-11-08 11:18:55 +000016#define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
17
Gabor Juhos02c754a2013-05-22 03:57:37 +000018/*
19 * CPU Configuration
20 */
Gabor Juhos02c754a2013-05-22 03:57:37 +000021
Gabor Juhos02c754a2013-05-22 03:57:37 +000022/*
23 * Memory map
24 */
Gabor Juhos02c754a2013-05-22 03:57:37 +000025
Paul Burton825cfbd2016-05-26 14:49:36 +010026#ifdef CONFIG_64BIT
27# define CONFIG_SYS_SDRAM_BASE 0xffffffff80000000
28#else
29# define CONFIG_SYS_SDRAM_BASE 0x80000000
30#endif
Tom Rinib64ed1c2022-07-23 13:04:57 -040031#define CONFIG_SYS_SDRAM_SIZE 0x10000000 /* 256 MiB */
Gabor Juhos02c754a2013-05-22 03:57:37 +000032
33#define CONFIG_SYS_INIT_SP_OFFSET 0x400000
34
Gabor Juhos02c754a2013-05-22 03:57:37 +000035/*
36 * Serial driver
37 */
Paul Burton58ce2cc2016-05-17 07:43:27 +010038#define CONFIG_SYS_NS16550_PORT_MAPPED
Gabor Juhos02c754a2013-05-22 03:57:37 +000039
40/*
Gabor Juhos02c754a2013-05-22 03:57:37 +000041 * Flash configuration
42 */
Paul Burton825cfbd2016-05-26 14:49:36 +010043#ifdef CONFIG_64BIT
44# define CONFIG_SYS_FLASH_BASE 0xffffffffbe000000
45#else
46# define CONFIG_SYS_FLASH_BASE 0xbe000000
47#endif
Gabor Juhos02c754a2013-05-22 03:57:37 +000048
49/*
Paul Burton60465222013-11-08 11:18:56 +000050 * Environment
51 */
Paul Burton60465222013-11-08 11:18:56 +000052
53/*
Paul Burtonc6c38532015-01-29 10:38:20 +000054 * IDE/ATA
55 */
Paul Burtonc6c38532015-01-29 10:38:20 +000056
57/*
Gabor Juhos02c754a2013-05-22 03:57:37 +000058 * Commands
59 */
Gabor Juhos652ccee2013-05-22 03:57:42 +000060
Paul Burton10a74b52013-11-09 10:22:08 +000061#endif /* _MALTA_CONFIG_H */