mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-04 01:33:02 +00:00
This commit fixes the following issues regarding cache maintainance under ARM: * read out I-, and D-cache line size at runtime and use the correct one * remove 'update_data_region' call from unprivileged syscalls * rename 'update_instr_region' syscall to 'cache_coherent_region' to reflect what it doing, namely make I-, and D-cache coherent * restrict 'cache_coherent_region' syscall to one page at a time * lookup the region given in a 'cache_coherent_region' syscall in the page-table of the PD to prevent machine exceptions in the kernel * only clean D-cache lines, do not invalidate them when pages where added on Cortex-A8 and ARMv6 (MMU sees phys. memory here) * remove unused code relicts of cache maintainance In addition it introduces per architecture memory clearance functions used by core, when preparing new dataspaces. Thereby, it optimizes: * on ARMv7 using per-word assignments * on ARMv8 using cacheline zeroing * on x86_64 using 'rept stosq' assembler instruction Fix #3685
97 lines
2.3 KiB
C++
97 lines
2.3 KiB
C++
/*
|
|
* \brief MMIO and IRQ definitions for the OMAP4 PandaBoard revision A2
|
|
* \author Martin stein
|
|
* \date 2011-11-03
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-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__PANDA_H_
|
|
#define _INCLUDE__DRIVERS__DEFS__PANDA_H_
|
|
|
|
namespace Panda {
|
|
enum {
|
|
|
|
/* device IO memory */
|
|
MMIO_0_BASE = 0x48000000,
|
|
MMIO_0_SIZE = 0x01000000,
|
|
MMIO_1_BASE = 0x4a000000,
|
|
MMIO_1_SIZE = 0x01000000,
|
|
|
|
/* normal RAM */
|
|
RAM_0_BASE = 0x80000000,
|
|
RAM_0_SIZE = 0x40000000,
|
|
|
|
/* clocks */
|
|
SYS_CLK = 38400000,
|
|
|
|
/* UART controllers */
|
|
TL16C750_1_MMIO_BASE = MMIO_0_BASE + 0x6a000,
|
|
TL16C750_2_MMIO_BASE = MMIO_0_BASE + 0x6c000,
|
|
TL16C750_3_MMIO_BASE = MMIO_0_BASE + 0x20000,
|
|
TL16C750_4_MMIO_BASE = MMIO_0_BASE + 0x6e000,
|
|
TL16C750_MMIO_SIZE = 0x2000,
|
|
TL16C750_CLOCK = 48*1000*1000,
|
|
TL16C750_1_IRQ = 104,
|
|
TL16C750_2_IRQ = 105,
|
|
TL16C750_3_IRQ = 106,
|
|
TL16C750_4_IRQ = 102,
|
|
|
|
/* USB */
|
|
HSUSB_EHCI_IRQ = 109,
|
|
|
|
/* timer modules */
|
|
GP_TIMER_3_IRQ = 71,
|
|
|
|
/* CPU */
|
|
CORTEX_A9_PRIVATE_MEM_BASE = 0x48240000,
|
|
CORTEX_A9_PRIVATE_MEM_SIZE = 0x00002000,
|
|
CORTEX_A9_PRIVATE_TIMER_CLK = 400000000,
|
|
CORTEX_A9_PRIVATE_TIMER_DIV = 200,
|
|
CORTEX_A9_WUGEN_MMIO_BASE = 0x48281000,
|
|
CORTEX_A9_SCU_MMIO_BASE = 0x48240000,
|
|
|
|
/* L2 cache */
|
|
PL310_MMIO_BASE = 0x48242000,
|
|
PL310_MMIO_SIZE = 0x00001000,
|
|
|
|
/* display subsystem */
|
|
DSS_MMIO_BASE = 0x58000000,
|
|
DSS_MMIO_SIZE = 0x00001000,
|
|
DISPC_MMIO_BASE = 0x58001000,
|
|
DISPC_MMIO_SIZE = 0x00001000,
|
|
HDMI_MMIO_BASE = 0x58006000,
|
|
HDMI_MMIO_SIZE = 0x00001000,
|
|
|
|
/* GPIO */
|
|
GPIO1_MMIO_BASE = 0x4a310000,
|
|
GPIO1_MMIO_SIZE = 0x1000,
|
|
GPIO1_IRQ = 29 + 32,
|
|
GPIO2_MMIO_BASE = 0x48055000,
|
|
GPIO2_MMIO_SIZE = 0x1000,
|
|
GPIO2_IRQ = 30 + 32,
|
|
GPIO3_MMIO_BASE = 0x48057000,
|
|
GPIO3_MMIO_SIZE = 0x1000,
|
|
GPIO3_IRQ = 31 + 32,
|
|
GPIO4_MMIO_BASE = 0x48059000,
|
|
GPIO4_MMIO_SIZE = 0x1000,
|
|
GPIO4_IRQ = 32 + 32,
|
|
GPIO5_MMIO_BASE = 0x4805b000,
|
|
GPIO5_MMIO_SIZE = 0x1000,
|
|
GPIO5_IRQ = 33 + 32,
|
|
GPIO6_MMIO_BASE = 0x4805d000,
|
|
GPIO6_MMIO_SIZE = 0x1000,
|
|
GPIO6_IRQ = 34 + 32,
|
|
|
|
/* SD card */
|
|
HSMMC_IRQ = 115,
|
|
};
|
|
};
|
|
|
|
#endif /* _INCLUDE__DRIVERS__DEFS__PANDA_H_ */
|