blob: 347b178633369ffd884da70701275fc6aefc001a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Paul Burtonad8783c2016-09-08 07:47:39 +01002/*
3 * Copyright (C) 2016 Imagination Technologies
Paul Burtonad8783c2016-09-08 07:47:39 +01004 */
5
6#ifndef __CONFIGS_BOSTON_H__
7#define __CONFIGS_BOSTON_H__
8
9/*
Paul Burtondc55db42017-04-30 21:22:43 +020010 * General board configuration
11 */
12#define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024)
13
14/*
Paul Burtonad8783c2016-09-08 07:47:39 +010015 * CPU
16 */
17#define CONFIG_SYS_MIPS_TIMER_FREQ 30000000
18
19/*
20 * PCI
21 */
Paul Burtonad8783c2016-09-08 07:47:39 +010022
23/*
24 * Memory map
25 */
26#ifdef CONFIG_64BIT
27# define CONFIG_SYS_SDRAM_BASE 0xffffffff80000000
28#else
29# define CONFIG_SYS_SDRAM_BASE 0x80000000
30#endif
31
32#define CONFIG_SYS_INIT_SP_OFFSET 0x400000
33
34#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
35
Paul Burtonad8783c2016-09-08 07:47:39 +010036/*
37 * Console
38 */
Paul Burtonad8783c2016-09-08 07:47:39 +010039
40/*
41 * Flash
42 */
Patrick Delaunay144fef82022-01-04 14:23:59 +010043
Paul Burtonad8783c2016-09-08 07:47:39 +010044#define CONFIG_SYS_MAX_FLASH_SECT 1024
45
46/*
47 * Environment
48 */
Paul Burtonad8783c2016-09-08 07:47:39 +010049
50#endif /* __CONFIGS_BOSTON_H__ */