1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-09 21:51:45 +00:00

warmboot: implement cluster_power_on_cpu

This commit is contained in:
Michael Scire 2018-12-17 17:17:19 -08:00
parent 7a704827f1
commit f6bc4abfd0

View file

@ -133,9 +133,16 @@ void cluster_initialize_cpu(void) {
/* Perform RAM repair if necessary. */ /* Perform RAM repair if necessary. */
flow_perform_ram_repair(); flow_perform_ram_repair();
/* TODO: This function is enormous */ /* Enable power to the C0NC partition. */
cluster_pmc_enable_partition(0x8000, 0x10F);
/* TODO: other shit */
} }
void cluster_power_on_cpu(void) { void cluster_power_on_cpu(void) {
/* TODO */ /* Enable power to CE0 partition. */
cluster_pmc_enable_partition(0x4000, 0x10E);
/* Clear CPU reset. */
CLK_RST_CONTROLLER_RST_CPUG_CMPLX_CLR_0 = 0x10001;
} }