2019-07-28 18:57:00 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* 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 "utils.h"
|
|
|
|
|
|
|
|
typedef struct CoreCtx {
|
2019-08-01 23:47:48 +01:00
|
|
|
u64 kernelArgument; // @0x00
|
|
|
|
uintptr_t kernelEntrypoint; // @0x08
|
|
|
|
u8 *crashStack; // @0x10
|
|
|
|
u64 scratch; // @0x18
|
|
|
|
u32 coreId; // @0x20
|
|
|
|
bool isColdbootCore; // @0x24
|
2019-07-28 18:57:00 +01:00
|
|
|
} CoreCtx;
|
|
|
|
|
2019-07-29 00:25:50 +01:00
|
|
|
extern CoreCtx g_coreCtxs[4];
|
|
|
|
register CoreCtx *currentCoreCtx asm("x18");
|
2019-07-31 23:46:16 +01:00
|
|
|
|
|
|
|
void coreCtxInit(u32 coreId, bool isColdbootCore, u64 argument);
|