blob: 30c2e41eec536b61655c3276d1fb1053f79fc1f2 [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
Gabor Juhos02c754a2013-05-22 03:57:37 +000016/*
17 * CPU Configuration
18 */
Gabor Juhos02c754a2013-05-22 03:57:37 +000019
Gabor Juhos02c754a2013-05-22 03:57:37 +000020/*
21 * Memory map
22 */
Gabor Juhos02c754a2013-05-22 03:57:37 +000023
Paul Burton825cfbd2016-05-26 14:49:36 +010024#ifdef CONFIG_64BIT
25# define CONFIG_SYS_SDRAM_BASE 0xffffffff80000000
26#else
27# define CONFIG_SYS_SDRAM_BASE 0x80000000
28#endif
Tom Rinib64ed1c2022-07-23 13:04:57 -040029#define CONFIG_SYS_SDRAM_SIZE 0x10000000 /* 256 MiB */
Gabor Juhos02c754a2013-05-22 03:57:37 +000030
31#define CONFIG_SYS_INIT_SP_OFFSET 0x400000
32
Gabor Juhos02c754a2013-05-22 03:57:37 +000033/*
34 * Serial driver
35 */
Paul Burton58ce2cc2016-05-17 07:43:27 +010036#define CONFIG_SYS_NS16550_PORT_MAPPED
Gabor Juhos02c754a2013-05-22 03:57:37 +000037
38/*
Gabor Juhos02c754a2013-05-22 03:57:37 +000039 * Flash configuration
40 */
Paul Burton825cfbd2016-05-26 14:49:36 +010041#ifdef CONFIG_64BIT
42# define CONFIG_SYS_FLASH_BASE 0xffffffffbe000000
43#else
44# define CONFIG_SYS_FLASH_BASE 0xbe000000
45#endif
Gabor Juhos02c754a2013-05-22 03:57:37 +000046
47/*
Paul Burton60465222013-11-08 11:18:56 +000048 * Environment
49 */
Paul Burton60465222013-11-08 11:18:56 +000050
51/*
Paul Burtonc6c38532015-01-29 10:38:20 +000052 * IDE/ATA
53 */
Paul Burtonc6c38532015-01-29 10:38:20 +000054
55/*
Gabor Juhos02c754a2013-05-22 03:57:37 +000056 * Commands
57 */
Gabor Juhos652ccee2013-05-22 03:57:42 +000058
Paul Burton10a74b52013-11-09 10:22:08 +000059#endif /* _MALTA_CONFIG_H */