2019-12-17 08:37:55 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) 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
|
2020-02-08 11:18:08 +00:00
|
|
|
#include <mesosphere/kern_common.hpp>
|
2019-12-17 08:37:55 +00:00
|
|
|
|
|
|
|
#ifdef ATMOSPHERE_ARCH_ARM64
|
2020-01-30 23:29:51 +00:00
|
|
|
#include <mesosphere/arch/arm64/kern_cpu.hpp>
|
2019-12-17 08:37:55 +00:00
|
|
|
|
|
|
|
namespace ams::kern::cpu {
|
|
|
|
|
2020-02-15 02:22:55 +00:00
|
|
|
using namespace ams::kern::arch::arm64::cpu;
|
2019-12-17 08:37:55 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "Unknown architecture for CPU"
|
|
|
|
#endif
|
2020-12-01 23:54:31 +00:00
|
|
|
|
|
|
|
#ifdef ATMOSPHERE_BOARD_NINTENDO_NX
|
|
|
|
|
|
|
|
#include <mesosphere/board/nintendo/nx/kern_cpu_map.hpp>
|
|
|
|
|
|
|
|
namespace ams::kern::cpu {
|
|
|
|
|
|
|
|
using namespace ams::kern::board::nintendo::nx::impl::cpu;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#error "Unknown board for CPU Map"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
2021-02-05 22:59:03 +00:00
|
|
|
namespace cpu {
|
|
|
|
|
|
|
|
static constexpr inline size_t NumVirtualCores = BITSIZEOF(u64);
|
|
|
|
|
|
|
|
static constexpr inline u64 VirtualCoreMask = [] {
|
|
|
|
u64 mask = 0;
|
|
|
|
for (size_t i = 0; i < NumVirtualCores; ++i) {
|
|
|
|
mask |= (UINT64_C(1) << i);
|
|
|
|
}
|
|
|
|
return mask;
|
|
|
|
}();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static_assert(cpu::NumCores <= cpu::NumVirtualCores);
|
|
|
|
static_assert(util::size(cpu::VirtualToPhysicalCoreMap) == cpu::NumVirtualCores);
|
2020-12-01 23:54:31 +00:00
|
|
|
|
|
|
|
}
|