mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
140 lines
4.3 KiB
C
140 lines
4.3 KiB
C
#include <stdint.h>
|
|
|
|
#include "bootconfig.h"
|
|
#include "configitem.h"
|
|
#include "interrupt.h"
|
|
#include "package2.h"
|
|
#include "se.h"
|
|
#include "fuse.h"
|
|
#include "utils.h"
|
|
#include "masterkey.h"
|
|
#include "exocfg.h"
|
|
|
|
static bool g_battery_profile = false;
|
|
|
|
uint32_t configitem_set(ConfigItem item, uint64_t value) {
|
|
if (item != CONFIGITEM_BATTERYPROFILE) {
|
|
return 2;
|
|
}
|
|
|
|
g_battery_profile = (value != 0);
|
|
return 0;
|
|
}
|
|
|
|
bool configitem_is_recovery_boot(void) {
|
|
uint64_t is_recovery_boot;
|
|
if (configitem_get(CONFIGITEM_ISRECOVERYBOOT, &is_recovery_boot) != 0) {
|
|
generic_panic();
|
|
}
|
|
|
|
return is_recovery_boot != 0;
|
|
}
|
|
|
|
bool configitem_is_retail(void) {
|
|
uint64_t is_retail;
|
|
if (configitem_get(CONFIGITEM_ISRETAIL, &is_retail) != 0) {
|
|
generic_panic();
|
|
}
|
|
|
|
return is_retail != 0;
|
|
}
|
|
|
|
bool configitem_should_profile_battery(void) {
|
|
return g_battery_profile;
|
|
}
|
|
|
|
uint64_t configitem_get_hardware_type(void) {
|
|
uint64_t hardware_type;
|
|
if (configitem_get(CONFIGITEM_HARDWARETYPE, &hardware_type) != 0) {
|
|
generic_panic();
|
|
}
|
|
return hardware_type;
|
|
}
|
|
|
|
uint32_t configitem_get(ConfigItem item, uint64_t *p_outvalue) {
|
|
uint32_t result = 0;
|
|
switch (item) {
|
|
case CONFIGITEM_DISABLEPROGRAMVERIFICATION:
|
|
*p_outvalue = (int)(bootconfig_disable_program_verification());
|
|
break;
|
|
case CONFIGITEM_DRAMID:
|
|
*p_outvalue = fuse_get_dram_id();
|
|
break;
|
|
case CONFIGITEM_SECURITYENGINEIRQ:
|
|
/* SE is interrupt #0x2C. */
|
|
*p_outvalue = INTERRUPT_ID_USER_SECURITY_ENGINE;
|
|
break;
|
|
case CONFIGITEM_VERSION:
|
|
/* Always returns maxver - 1 on hardware. */
|
|
*p_outvalue = PACKAGE2_MAXVER_400_CURRENT - 1;
|
|
break;
|
|
case CONFIGITEM_HARDWARETYPE:
|
|
*p_outvalue = fuse_get_hardware_type();
|
|
break;
|
|
case CONFIGITEM_ISRETAIL:
|
|
*p_outvalue = fuse_get_retail_type();
|
|
break;
|
|
case CONFIGITEM_ISRECOVERYBOOT:
|
|
*p_outvalue = (int)(bootconfig_is_recovery_boot());
|
|
break;
|
|
case CONFIGITEM_DEVICEID:
|
|
*p_outvalue = fuse_get_device_id();
|
|
break;
|
|
case CONFIGITEM_BOOTREASON:
|
|
/* For some reason, Nintendo removed it on 4.0 */
|
|
if (exosphere_get_target_firmware() < EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
*p_outvalue = bootconfig_get_boot_reason();
|
|
} else {
|
|
result = 2;
|
|
}
|
|
break;
|
|
case CONFIGITEM_MEMORYARRANGE:
|
|
*p_outvalue = bootconfig_get_memory_arrangement();
|
|
break;
|
|
case CONFIGITEM_ISDEBUGMODE:
|
|
*p_outvalue = (int)(bootconfig_is_debug_mode());
|
|
break;
|
|
case CONFIGITEM_KERNELMEMORYCONFIGURATION:
|
|
*p_outvalue = bootconfig_get_kernel_memory_configuration();
|
|
break;
|
|
case CONFIGITEM_BATTERYPROFILE:
|
|
*p_outvalue = (int)g_battery_profile;
|
|
break;
|
|
case CONFIGITEM_ODM4BIT10_4X:
|
|
/* Added on 4.x ... where is it being used? */
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_400) {
|
|
*p_outvalue = (fuse_get_reserved_odm(4) >> 10) & 1;
|
|
} else {
|
|
result = 2;
|
|
}
|
|
break;
|
|
case CONFIGITEM_NEWHARDWARETYPE_5X:
|
|
/* Added in 5.x, currently hardcoded to 0. */
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_500) {
|
|
*p_outvalue = 0;
|
|
} else {
|
|
result = 2;
|
|
}
|
|
break;
|
|
case CONFIGITEM_NEWKEYGENERATION_5X:
|
|
/* Added in 5.x. */
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_500) {
|
|
*p_outvalue = fuse_get_5x_key_generation();
|
|
} else {
|
|
result = 2;
|
|
}
|
|
break;
|
|
case CONFIGITEM_PACKAGE2HASH_5X:
|
|
/* Added in 5.x. */
|
|
if (exosphere_get_target_firmware() >= EXOSPHERE_TARGET_FIRMWARE_500 && bootconfig_is_recovery_boot()) {
|
|
bootconfig_get_package2_hash_for_recovery(p_outvalue);
|
|
} else {
|
|
result = 2;
|
|
}
|
|
break;
|
|
default:
|
|
result = 2;
|
|
break;
|
|
}
|
|
return result;
|
|
}
|