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-19 07:23:31 +01:00
|
|
|
|
2018-04-12 03:29:35 +01:00
|
|
|
#ifndef FUSEE_MASTERKEY_H
|
|
|
|
#define FUSEE_MASTERKEY_H
|
|
|
|
|
|
|
|
/* This is glue code to enable master key support across versions. */
|
|
|
|
|
2019-09-12 09:18:58 +01:00
|
|
|
/* TODO: Update to 0xB on release of new master key. */
|
|
|
|
#define MASTERKEY_REVISION_MAX 0xA
|
2018-04-12 03:29:35 +01:00
|
|
|
|
|
|
|
#define MASTERKEY_REVISION_100_230 0x00
|
|
|
|
#define MASTERKEY_REVISION_300 0x01
|
|
|
|
#define MASTERKEY_REVISION_301_302 0x02
|
|
|
|
#define MASTERKEY_REVISION_400_410 0x03
|
2018-09-20 20:02:10 +01:00
|
|
|
#define MASTERKEY_REVISION_500_510 0x04
|
2018-11-26 06:37:24 +00:00
|
|
|
#define MASTERKEY_REVISION_600_610 0x05
|
2019-01-30 12:14:00 +00:00
|
|
|
#define MASTERKEY_REVISION_620 0x06
|
2019-06-19 07:23:31 +01:00
|
|
|
#define MASTERKEY_REVISION_700_800 0x07
|
2019-09-12 09:18:58 +01:00
|
|
|
#define MASTERKEY_REVISION_810 0x08
|
|
|
|
#define MASTERKEY_REVISION_900_CURRENT 0x09
|
2018-04-12 03:29:35 +01:00
|
|
|
|
2018-05-17 14:56:02 +01:00
|
|
|
#define MASTERKEY_NUM_NEW_DEVICE_KEYS (MASTERKEY_REVISION_MAX - MASTERKEY_REVISION_400_410)
|
|
|
|
|
2018-09-20 20:02:10 +01:00
|
|
|
/* This should be called early on in initialization. */
|
|
|
|
int mkey_detect_revision(bool is_retail);
|
2018-04-12 03:29:35 +01:00
|
|
|
|
|
|
|
unsigned int mkey_get_revision(void);
|
|
|
|
unsigned int mkey_get_keyslot(unsigned int revision);
|
2018-09-20 20:02:10 +01:00
|
|
|
void set_old_devkey(unsigned int revision, const uint8_t *key);
|
|
|
|
unsigned int devkey_get_keyslot(unsigned int revision);
|
2018-04-12 03:29:35 +01:00
|
|
|
|
2018-09-20 20:02:10 +01:00
|
|
|
#endif
|