mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 17:01:07 +00:00
6106e64aac
This commit moves the headers residing in `repos/base/include/spec/*/drivers` to `repos/base/include/drivers/defs` or repos/base/include/drivers/uart` respectively. The first one contains definitions about board-specific MMIO iand RAM addresses, or IRQ lines. While the latter contains device driver code for UART devices. Those definitions are used by driver implementations in `repos/base-hw`, `repos/os`, and `repos/dde-linux`, which now need to include them more explicitely. This work is a step in the direction of reducing 'SPEC' identifiers overall. Ref #2403
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
/*
|
|
* \brief MMIO and IRQ definitions common to Xilinx Zynq platforms
|
|
* \author Mark Albers
|
|
* \author Timo Wischer
|
|
* \author Johannes Schlatow
|
|
* \date 2014-12-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__DRIVERS__DEFS__ZYNQ_H_
|
|
#define _INCLUDE__DRIVERS__DEFS__ZYNQ_H_
|
|
|
|
namespace Zynq {
|
|
enum {
|
|
/* device IO memory */
|
|
MMIO_0_BASE = 0xe0000000, /* IOP devices */
|
|
MMIO_0_SIZE = 0x10000000,
|
|
MMIO_1_BASE = 0xF8000000, /* Programmable register via APB */
|
|
MMIO_1_SIZE = 0x02000000,
|
|
QSPI_MMIO_BASE = 0xFC000000, /* Quad-SPI */
|
|
QSPI_MMIO_SIZE = 0x01000000,
|
|
OCM_MMIO_BASE = 0xFFFC0000, /* OCM upper address range */
|
|
OCM_MMIO_SIZE = 0x00040000,
|
|
|
|
/* normal RAM */
|
|
RAM_0_BASE = 0x00000000,
|
|
RAM_0_SIZE = 0x40000000, /* 1GiB */
|
|
|
|
/* AXI */
|
|
AXI_0_MMIO_BASE = 0x40000000, /* PL AXI Slave port #0 */
|
|
AXI_0_MMIO_SIZE = 0x40000000,
|
|
AXI_1_MMIO_BASE = 0x80000000, /* PL AXI Slave port #1 */
|
|
AXI_1_MMIO_SIZE = 0x40000000,
|
|
|
|
/* UART controllers */
|
|
UART_0_MMIO_BASE = MMIO_0_BASE,
|
|
UART_SIZE = 0x1000,
|
|
UART_CLOCK = 50*1000*1000,
|
|
|
|
/* CPU */
|
|
CORTEX_A9_PRIVATE_MEM_BASE = 0xf8f00000,
|
|
CORTEX_A9_PRIVATE_MEM_SIZE = 0x00002000,
|
|
|
|
/* CPU cache */
|
|
PL310_MMIO_BASE = MMIO_1_BASE + 0xF02000,
|
|
PL310_MMIO_SIZE = 0x1000,
|
|
CACHE_LINE_SIZE_LOG2 = 2, /* FIXME get correct value from board spec */
|
|
|
|
/* TTC (triple timer counter) */
|
|
TTC0_MMIO_BASE = MMIO_1_BASE + 0x1000,
|
|
TTC0_MMIO_SIZE = 0xfff,
|
|
TTC0_IRQ_0 = 42,
|
|
|
|
/* Ethernet MAC PS */
|
|
EMAC_0_MMIO_BASE = 0xE000B000,
|
|
EMAC_0_MMIO_SIZE = 0x1000,
|
|
EMAC_0_IRQ = 54,
|
|
};
|
|
};
|
|
|
|
#endif /* _INCLUDE__DRIVERS__DEFS__ZYNQ_H_ */
|