2012-05-25 17:28:09 +00:00
|
|
|
/*
|
2012-05-24 10:52:45 +00:00
|
|
|
* \brief Driver for the OMAP4 PandaBoard revision A2
|
|
|
|
* \author Martin stein
|
|
|
|
* \date 2011-11-03
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2012 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.
|
|
|
|
*/
|
|
|
|
|
2012-05-25 17:28:09 +00:00
|
|
|
#ifndef _INCLUDE__DRIVERS__BOARD__PANDA_A2_H_
|
|
|
|
#define _INCLUDE__DRIVERS__BOARD__PANDA_A2_H_
|
2012-05-24 10:52:45 +00:00
|
|
|
|
|
|
|
namespace Genode
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Driver for the OMAP4 PandaBoard revision A2
|
|
|
|
*/
|
|
|
|
struct Panda_a2
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
2012-05-30 18:13:09 +00:00
|
|
|
/* interconnect domains */
|
2012-05-24 10:52:45 +00:00
|
|
|
L4_PER_BASE = 0x48000000,
|
|
|
|
L4_PER_SIZE = 0x01000000,
|
2012-05-30 18:13:09 +00:00
|
|
|
L4_CFG_BASE = 0x4a000000,
|
|
|
|
L4_CFG_SIZE = 0x01000000,
|
2012-05-24 10:52:45 +00:00
|
|
|
|
2012-05-25 17:28:09 +00:00
|
|
|
/* clocks */
|
2012-05-24 10:52:45 +00:00
|
|
|
MPU_DPLL_CLOCK = 200*1000*1000,
|
|
|
|
|
|
|
|
/* UART */
|
|
|
|
TL16C750_3_MMIO_BASE = L4_PER_BASE + 0x20000,
|
|
|
|
TL16C750_3_MMIO_SIZE = 0x2000,
|
|
|
|
TL16C750_3_CLOCK = 48*1000*1000,
|
|
|
|
TL16C750_3_IRQ = 74,
|
|
|
|
|
|
|
|
/* CPU */
|
|
|
|
CORTEX_A9_PRIVATE_MEM_BASE = L4_PER_BASE + 0x240000,
|
|
|
|
CORTEX_A9_PRIVATE_MEM_SIZE = 0x2000,
|
|
|
|
CORTEX_A9_CLOCK = MPU_DPLL_CLOCK,
|
|
|
|
CORTEX_A9_SECURITY_EXTENSION = 0,
|
|
|
|
|
|
|
|
/* RAM */
|
|
|
|
EMIF1_EMIF2_CS0_SDRAM_BASE = 0x80000000,
|
|
|
|
EMIF1_EMIF2_CS0_SDRAM_SIZE = 0x40000000,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-05-25 17:28:09 +00:00
|
|
|
#endif /* _INCLUDE__DRIVERS__BOARD__PANDA_A2_H_ */
|
2012-05-24 10:52:45 +00:00
|
|
|
|