genode/repos/os/include/platform/vea9x4/bus.h
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

32 lines
684 B
C

/*
* \brief Bus definitions for the Versatile Express platform
* \author Stefan Kalkowski
* \date 2011-11-08
*/
/*
* Copyright (C) 2011-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _INCLUDE__PLATFORM__VEA9X4__BUS_H_
#define _INCLUDE__PLATFORM__VEA9X4__BUS_H_
/**
* Static Memory Bus (SMB) addresses
*/
enum {
SMB_CS0 = 0x40000000,
SMB_CS1 = 0x44000000,
SMB_CS2 = 0x48000000,
SMB_CS3 = 0x4c000000,
SMB_CS4 = 0x50000000,
SMB_CS5 = 0x54000000,
SMB_CS6 = 0x58000000,
SMB_CS7 = 0x10000000,
};
#endif /* _INCLUDE__PLATFORM__VEA9X4__BUS_H_ */