2019-12-17 08:37:55 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-12-17 08:37:55 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vapours.hpp>
|
|
|
|
#include "kern_cpu_system_registers.hpp"
|
|
|
|
|
|
|
|
namespace ams::kern::arm64::cpu {
|
|
|
|
|
2020-01-24 08:47:43 +00:00
|
|
|
#if defined(ATMOSPHERE_CPU_ARM_CORTEX_A57) || defined(ATMOSPHERE_CPU_ARM_CORTEX_A53)
|
|
|
|
constexpr inline size_t InstructionCacheLineSize = 0x40;
|
|
|
|
constexpr inline size_t DataCacheLineSize = 0x40;
|
|
|
|
#else
|
|
|
|
#error "Unknown CPU for cache line sizes"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(ATMOSPHERE_BOARD_NINTENDO_SWITCH)
|
|
|
|
static constexpr size_t NumCores = 4;
|
|
|
|
#else
|
|
|
|
#error "Unknown Board for cpu::NumCores"
|
|
|
|
#endif
|
|
|
|
|
2019-12-17 08:37:55 +00:00
|
|
|
/* Helpers for managing memory state. */
|
|
|
|
ALWAYS_INLINE void DataSynchronizationBarrier() {
|
2019-12-17 15:07:35 +00:00
|
|
|
__asm__ __volatile__("dsb sy" ::: "memory");
|
2019-12-17 08:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE void DataSynchronizationBarrierInnerShareable() {
|
2019-12-17 15:07:35 +00:00
|
|
|
__asm__ __volatile__("dsb ish" ::: "memory");
|
2019-12-17 08:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE void DataMemoryBarrier() {
|
2019-12-17 15:07:35 +00:00
|
|
|
__asm__ __volatile__("dmb sy" ::: "memory");
|
2019-12-17 08:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE void InstructionMemoryBarrier() {
|
2019-12-17 15:07:35 +00:00
|
|
|
__asm__ __volatile__("isb" ::: "memory");
|
2019-12-17 08:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE void EnsureInstructionConsistency() {
|
|
|
|
DataSynchronizationBarrier();
|
|
|
|
InstructionMemoryBarrier();
|
|
|
|
}
|
|
|
|
|
|
|
|
ALWAYS_INLINE void InvalidateEntireInstructionCache() {
|
|
|
|
__asm__ __volatile__("ic iallu" ::: "memory");
|
|
|
|
EnsureInstructionConsistency();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cache management helpers. */
|
|
|
|
void FlushEntireDataCacheShared();
|
|
|
|
void FlushEntireDataCacheLocal();
|
|
|
|
|
|
|
|
ALWAYS_INLINE void InvalidateEntireTlb() {
|
|
|
|
__asm__ __volatile__("tlbi vmalle1is" ::: "memory");
|
|
|
|
EnsureInstructionConsistency();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|