/* * Copyright (c) 2018 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 . */ #ifndef EXOSPHERE_CFG_ITEM_H #define EXOSPHERE_CFG_ITEM_H #include #include typedef enum { CONFIGITEM_DISABLEPROGRAMVERIFICATION = 1, CONFIGITEM_DRAMID = 2, CONFIGITEM_SECURITYENGINEIRQ = 3, CONFIGITEM_VERSION = 4, CONFIGITEM_HARDWARETYPE = 5, CONFIGITEM_ISRETAIL = 6, CONFIGITEM_ISRECOVERYBOOT = 7, CONFIGITEM_DEVICEID = 8, CONFIGITEM_BOOTREASON = 9, CONFIGITEM_MEMORYARRANGE = 10, CONFIGITEM_ISDEBUGMODE = 11, CONFIGITEM_KERNELMEMORYCONFIGURATION = 12, CONFIGITEM_BATTERYPROFILE = 13, CONFIGITEM_ISQUESTUNIT = 14, CONFIGITEM_NEWHARDWARETYPE_5X = 15, CONFIGITEM_NEWKEYGENERATION_5X = 16, CONFIGITEM_PACKAGE2HASH_5X = 17, /* These are unofficial, for usage by Exosphere. */ CONFIGITEM_EXOSPHERE_VERSION = 65000, CONFIGITEM_NEEDS_REBOOT_TO_RCM = 65001, } ConfigItem; uint32_t configitem_set(bool privileged, ConfigItem item, uint64_t value); uint32_t configitem_get(bool privileged, ConfigItem item, uint64_t *p_outvalue); bool configitem_is_recovery_boot(void); bool configitem_is_retail(void); bool configitem_should_profile_battery(void); void configitem_set_debugmode_override(bool user, bool priv); uint64_t configitem_get_hardware_type(void); #endif