2013-04-08 17:05:44 +00:00
|
|
|
/*
|
|
|
|
* \brief Board definitions for the Raspberry Pi
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2013-04-05
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 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.
|
|
|
|
*/
|
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#ifndef _INCLUDE__SPEC__RPI__DRIVERS__BOARD_BASE_H_
|
|
|
|
#define _INCLUDE__SPEC__RPI__DRIVERS__BOARD_BASE_H_
|
2013-04-08 17:05:44 +00:00
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <util/mmio.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Genode { struct Board_base; }
|
|
|
|
|
|
|
|
|
|
|
|
struct Genode::Board_base
|
2013-04-08 17:05:44 +00:00
|
|
|
{
|
2015-03-04 20:12:14 +00:00
|
|
|
enum {
|
|
|
|
RAM_0_BASE = 0x00000000,
|
|
|
|
RAM_0_SIZE = 0x10000000, /* XXX ? */
|
|
|
|
|
|
|
|
MMIO_0_BASE = 0x20000000,
|
|
|
|
MMIO_0_SIZE = 0x02000000,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IRQ numbers 0..7 refer to the basic IRQs.
|
|
|
|
* IRQ numbers 8..39 refer to GPU IRQs 0..31.
|
|
|
|
* IRQ numbers 40..71 refer to GPU IRQs 32..63.
|
|
|
|
*/
|
|
|
|
GPU_IRQ_BASE = 8,
|
|
|
|
|
|
|
|
SYSTEM_TIMER_IRQ = GPU_IRQ_BASE + 1,
|
|
|
|
SYSTEM_TIMER_MMIO_BASE = 0x20003000,
|
|
|
|
SYSTEM_TIMER_MMIO_SIZE = 0x1000,
|
|
|
|
SYSTEM_TIMER_CLOCK = 1000000,
|
|
|
|
|
|
|
|
PL011_0_IRQ = 57,
|
|
|
|
PL011_0_MMIO_BASE = 0x20201000,
|
|
|
|
PL011_0_MMIO_SIZE = 0x1000,
|
|
|
|
PL011_0_CLOCK = 3000000,
|
|
|
|
|
|
|
|
IRQ_CONTROLLER_BASE = 0x2000b200,
|
|
|
|
IRQ_CONTROLLER_SIZE = 0x100,
|
|
|
|
|
2015-08-24 20:29:15 +00:00
|
|
|
GPIO_CONTROLLER_BASE = 0x20200000,
|
|
|
|
GPIO_CONTROLLER_SIZE = 0x1000,
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
USB_DWC_OTG_BASE = 0x20980000,
|
|
|
|
USB_DWC_OTG_SIZE = 0x20000,
|
|
|
|
|
|
|
|
/* timer */
|
|
|
|
TIMER_IRQ = 0,
|
|
|
|
|
|
|
|
/* USB host controller */
|
|
|
|
DWC_IRQ = 17,
|
|
|
|
|
|
|
|
SECURITY_EXTENSION = 0,
|
|
|
|
|
|
|
|
/* CPU cache */
|
|
|
|
CACHE_LINE_SIZE_LOG2 = 5,
|
2013-04-08 17:05:44 +00:00
|
|
|
};
|
2015-03-04 20:12:14 +00:00
|
|
|
|
|
|
|
enum Videocore_cache_policy { NON_COHERENT = 0,
|
|
|
|
COHERENT = 1,
|
|
|
|
L2_ONLY = 2,
|
|
|
|
UNCACHED = 3 };
|
|
|
|
};
|
2013-04-08 17:05:44 +00:00
|
|
|
|
2015-09-03 12:55:05 +00:00
|
|
|
#endif /* _INCLUDE__SPEC__RPI__DRIVERS__BOARD_BASE_H_ */
|