Newer
Older
barebox / arch / openrisc / boards / generic / config.h
@Antony Pavlov Antony Pavlov on 9 Sep 2014 659 bytes openrisc: generic board: reduce platform code
#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

/* 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