2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-19 00:41:19 -08:00
|
|
|
#ifndef EXOSPHERE_CFG_ITEM_H
|
|
|
|
#define EXOSPHERE_CFG_ITEM_H
|
|
|
|
|
2018-02-22 22:58:39 -05:00
|
|
|
#include <stdbool.h>
|
2018-02-19 00:41:19 -08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-03-05 23:59:46 +01:00
|
|
|
typedef enum {
|
2018-02-19 00:41:19 -08:00
|
|
|
CONFIGITEM_DISABLEPROGRAMVERIFICATION = 1,
|
2018-02-25 01:21:52 -08:00
|
|
|
CONFIGITEM_DRAMID = 2,
|
2018-02-19 00:41:19 -08:00
|
|
|
CONFIGITEM_SECURITYENGINEIRQ = 3,
|
2018-02-24 07:25:38 -08:00
|
|
|
CONFIGITEM_VERSION = 4,
|
2018-02-19 00:41:19 -08:00
|
|
|
CONFIGITEM_HARDWARETYPE = 5,
|
|
|
|
CONFIGITEM_ISRETAIL = 6,
|
|
|
|
CONFIGITEM_ISRECOVERYBOOT = 7,
|
|
|
|
CONFIGITEM_DEVICEID = 8,
|
|
|
|
CONFIGITEM_BOOTREASON = 9,
|
|
|
|
CONFIGITEM_MEMORYARRANGE = 10,
|
|
|
|
CONFIGITEM_ISDEBUGMODE = 11,
|
|
|
|
CONFIGITEM_KERNELMEMORYCONFIGURATION = 12,
|
2018-03-09 11:54:36 +01:00
|
|
|
CONFIGITEM_BATTERYPROFILE = 13,
|
2018-09-20 13:47:20 -07:00
|
|
|
CONFIGITEM_ISQUESTUNIT = 14,
|
2018-03-25 15:05:08 -06:00
|
|
|
CONFIGITEM_NEWHARDWARETYPE_5X = 15,
|
|
|
|
CONFIGITEM_NEWKEYGENERATION_5X = 16,
|
2018-05-09 06:29:56 -06:00
|
|
|
CONFIGITEM_PACKAGE2HASH_5X = 17,
|
|
|
|
|
|
|
|
/* These are unofficial, for usage by Exosphere. */
|
|
|
|
CONFIGITEM_EXOSPHERE_VERSION = 65000
|
2018-03-05 23:59:46 +01:00
|
|
|
} ConfigItem;
|
2018-02-19 00:41:19 -08:00
|
|
|
|
2018-03-05 23:59:46 +01:00
|
|
|
uint32_t configitem_set(ConfigItem item, uint64_t value);
|
|
|
|
uint32_t configitem_get(ConfigItem item, uint64_t *p_outvalue);
|
2018-02-19 00:41:19 -08:00
|
|
|
|
2018-02-22 22:58:39 -05:00
|
|
|
bool configitem_is_recovery_boot(void);
|
|
|
|
bool configitem_is_retail(void);
|
2018-02-26 02:00:02 -08:00
|
|
|
bool configitem_should_profile_battery(void);
|
2018-02-20 01:02:01 -08:00
|
|
|
|
2018-03-02 12:16:30 -08:00
|
|
|
uint64_t configitem_get_hardware_type(void);
|
|
|
|
|
2018-02-25 20:00:50 +01:00
|
|
|
#endif
|