2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01: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/>.
|
|
|
|
*/
|
2019-06-22 08:10:21 +01:00
|
|
|
#include "boot_boot_reason.hpp"
|
|
|
|
#include "boot_change_voltage.hpp"
|
|
|
|
#include "boot_check_battery.hpp"
|
|
|
|
#include "boot_check_clock.hpp"
|
|
|
|
#include "boot_clock_initial_configuration.hpp"
|
|
|
|
#include "boot_fan_enable.hpp"
|
|
|
|
#include "boot_repair_boot_images.hpp"
|
|
|
|
#include "boot_splash_screen.hpp"
|
|
|
|
#include "boot_wake_pins.hpp"
|
|
|
|
|
2019-06-22 19:34:18 +01:00
|
|
|
#include "gpio/gpio_initial_configuration.hpp"
|
|
|
|
#include "pinmux/pinmux_initial_configuration.hpp"
|
|
|
|
|
2019-06-22 08:10:21 +01:00
|
|
|
#include "boot_power_utils.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
using namespace ams;
|
2019-04-29 15:22:49 +01:00
|
|
|
|
2018-04-25 21:35:02 +01:00
|
|
|
extern "C" {
|
|
|
|
extern u32 __start__;
|
|
|
|
|
|
|
|
u32 __nx_applet_type = AppletType_None;
|
|
|
|
|
2019-10-19 05:30:26 +01:00
|
|
|
/* TODO: Evaluate to what extent this can be reduced further. */
|
|
|
|
#define INNER_HEAP_SIZE 0x20000
|
2018-04-25 21:35:02 +01:00
|
|
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
|
|
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2018-04-25 21:35:02 +01:00
|
|
|
void __libnx_initheap(void);
|
|
|
|
void __appInit(void);
|
|
|
|
void __appExit(void);
|
2019-04-12 23:28:46 +01:00
|
|
|
|
|
|
|
/* Exception handling. */
|
2019-12-06 07:41:33 +00:00
|
|
|
alignas(16) u8 __nx_exception_stack[ams::os::MemoryPageSize];
|
2019-04-12 23:28:46 +01:00
|
|
|
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
|
|
|
|
void __libnx_exception_handler(ThreadExceptionDump *ctx);
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams {
|
2019-10-20 01:42:53 +01:00
|
|
|
|
2019-10-28 04:43:01 +00:00
|
|
|
ncm::ProgramId CurrentProgramId = ncm::ProgramId::Boot;
|
2019-10-20 01:42:53 +01:00
|
|
|
|
|
|
|
void ExceptionHandler(FatalErrorContext *ctx) {
|
|
|
|
/* We're boot sysmodule, so manually reboot to fatal error. */
|
|
|
|
boot::RebootForFatalError(ctx);
|
|
|
|
}
|
2019-07-03 04:54:16 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace result {
|
2018-04-25 21:35:02 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
bool CallFatalOnResultAssertion = false;
|
2019-10-24 09:40:44 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
}
|
2019-10-24 09:40:44 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
using namespace ams;
|
2019-10-20 01:42:53 +01:00
|
|
|
|
|
|
|
void __libnx_exception_handler(ThreadExceptionDump *ctx) {
|
|
|
|
ams::CrashHandler(ctx);
|
2019-05-03 01:55:50 +01:00
|
|
|
}
|
|
|
|
|
2018-04-25 21:35:02 +01:00
|
|
|
void __libnx_initheap(void) {
|
2018-05-03 22:34:45 +01:00
|
|
|
void* addr = nx_inner_heap;
|
|
|
|
size_t size = nx_inner_heap_size;
|
2018-04-25 21:35:02 +01:00
|
|
|
|
2018-05-03 22:34:45 +01:00
|
|
|
/* Newlib */
|
|
|
|
extern char* fake_heap_start;
|
|
|
|
extern char* fake_heap_end;
|
2018-04-25 21:35:02 +01:00
|
|
|
|
2018-05-03 22:34:45 +01:00
|
|
|
fake_heap_start = (char*)addr;
|
|
|
|
fake_heap_end = (char*)addr + size;
|
2018-04-25 21:35:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __appInit(void) {
|
2019-10-16 22:28:19 +01:00
|
|
|
hos::SetVersionForLibnx();
|
2018-04-25 21:35:02 +01:00
|
|
|
|
2018-05-08 22:48:43 +01:00
|
|
|
/* Initialize services we need (TODO: NCM) */
|
2019-10-20 01:42:53 +01:00
|
|
|
sm::DoWithSession([&]() {
|
2019-06-20 10:00:59 +01:00
|
|
|
R_ASSERT(fsInitialize());
|
|
|
|
R_ASSERT(splInitialize());
|
|
|
|
R_ASSERT(pmshellInitialize());
|
2019-04-22 20:40:53 +01:00
|
|
|
});
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
ams::CheckApiVersion();
|
2018-04-25 21:35:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __appExit(void) {
|
|
|
|
/* Cleanup services. */
|
2018-05-09 17:07:53 +01:00
|
|
|
fsdevUnmountAll();
|
2019-05-03 14:20:50 +01:00
|
|
|
pmshellExit();
|
2018-05-08 22:48:43 +01:00
|
|
|
splExit();
|
2018-04-25 21:35:02 +01:00
|
|
|
fsExit();
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2019-04-29 15:22:49 +01:00
|
|
|
/* Change voltage from 3.3v to 1.8v for select devices. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::ChangeGpioVoltageTo1_8v();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-04-29 17:43:48 +01:00
|
|
|
/* Setup GPIO. */
|
2019-06-22 19:34:18 +01:00
|
|
|
gpio::SetInitialConfiguration();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-03 02:10:07 +01:00
|
|
|
/* Check USB PLL/UTMIP clock. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::CheckClock();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-03 03:33:12 +01:00
|
|
|
/* Talk to PMIC/RTC, set boot reason with SPL. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::DetectBootReason();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-06-22 19:34:18 +01:00
|
|
|
const auto hw_type = spl::GetHardwareType();
|
2019-06-22 08:10:21 +01:00
|
|
|
if (hw_type != spl::HardwareType::Copper) {
|
2019-05-07 09:18:54 +01:00
|
|
|
/* Display splash screen for two seconds. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::ShowSplashScreen();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-07 09:18:54 +01:00
|
|
|
/* Check that the battery has enough to boot. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::CheckBatteryCharge();
|
2019-05-07 09:18:54 +01:00
|
|
|
}
|
2019-05-03 14:20:50 +01:00
|
|
|
|
|
|
|
/* Configure pinmux + drive pads. */
|
2019-06-22 19:34:18 +01:00
|
|
|
pinmux::SetInitialConfiguration();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-07 17:32:37 +01:00
|
|
|
/* Configure the PMC wake pin settings. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::SetInitialWakePinConfiguration();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-09 09:17:56 +01:00
|
|
|
/* Configure output clock. */
|
2019-06-22 08:10:21 +01:00
|
|
|
if (hw_type != spl::HardwareType::Copper) {
|
|
|
|
boot::SetInitialClockConfiguration();
|
2019-05-07 09:18:54 +01:00
|
|
|
}
|
|
|
|
|
2019-05-09 09:17:56 +01:00
|
|
|
/* Set Fan enable config (Copper only). */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::SetFanEnabled();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-09 09:17:56 +01:00
|
|
|
/* Repair boot partitions in NAND if needed. */
|
2019-06-22 08:10:21 +01:00
|
|
|
boot::CheckAndRepairBootImages();
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-05-03 13:18:36 +01:00
|
|
|
/* Tell PM to start boot2. */
|
2019-06-22 08:10:21 +01:00
|
|
|
R_ASSERT(pmshellNotifyBootFinished());
|
2019-05-03 14:20:50 +01:00
|
|
|
|
2019-04-29 11:25:24 +01:00
|
|
|
return 0;
|
2018-05-03 22:34:45 +01:00
|
|
|
}
|