summaryrefslogtreecommitdiffstats
path: root/arch/openrisc/boards/generic/config.h
blob: 10c33a12f97d0409728178a3d4f1c5602399c417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _GENERIC_NAMES_H_
#define _GENERIC_NAMES_H_

#define CONFIG_SYS_CLK_FREQ		50000000

#define OPENRISC_TIMER_FREQ		CONFIG_SYS_CLK_FREQ

#define OPENRISC_SOPC_MEMORY_BASE	0x00000000
#define OPENRISC_SOPC_MEMORY_SIZE	0x02000000

#define OPENRISC_SOPC_UART_FREQ		CONFIG_SYS_CLK_FREQ
#define OPENRISC_SOPC_UART_BASE		0x90000000

#define OPENRISC_SOPC_ETHOC_BASE	0x92000000

/* We reserve 512K for barebox */
#define BAREBOX_RESERVED_SIZE		0x80000

/* Barebox will be at top of main memory */
#define OPENRISC_SOPC_TEXT_BASE		(OPENRISC_SOPC_MEMORY_BASE + OPENRISC_SOPC_MEMORY_SIZE - BAREBOX_RESERVED_SIZE)

/*
* TEXT_BASE is defined here because STACK_BASE definition
*  in include/asm-generic/memory_layout.h uses this name
*/

#define TEXT_BASE                       OPENRISC_SOPC_TEXT_BASE

#endif