2018-03-26 23:04:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
|
|
|
* 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-03-07 01:11:46 +00:00
|
|
|
#ifndef _TYPES_H_
|
|
|
|
#define _TYPES_H_
|
|
|
|
|
2018-05-01 05:15:48 +00:00
|
|
|
#define NULL ((void *)0)
|
|
|
|
|
|
|
|
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
|
|
|
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
|
|
|
|
#define OFFSET_OF(t, m) ((u32)&((t *)NULL)->m)
|
|
|
|
#define CONTAINER_OF(mp, t, mn) ((t *)((u32)mp - OFFSET_OF(t, mn)))
|
|
|
|
|
2019-04-13 23:19:04 +00:00
|
|
|
typedef signed char s8;
|
2018-06-08 09:42:24 +00:00
|
|
|
typedef short s16;
|
2018-08-13 08:58:24 +00:00
|
|
|
typedef short SHORT;
|
2018-06-08 09:42:24 +00:00
|
|
|
typedef int s32;
|
2018-08-13 08:58:24 +00:00
|
|
|
typedef int INT;
|
|
|
|
typedef long LONG;
|
2018-06-08 09:42:24 +00:00
|
|
|
typedef long long int s64;
|
2018-03-07 01:11:46 +00:00
|
|
|
typedef unsigned char u8;
|
2018-08-13 08:58:24 +00:00
|
|
|
typedef unsigned char BYTE;
|
2018-03-07 01:11:46 +00:00
|
|
|
typedef unsigned short u16;
|
2018-08-13 08:58:24 +00:00
|
|
|
typedef unsigned short WORD;
|
|
|
|
typedef unsigned short WCHAR;
|
2018-03-07 01:11:46 +00:00
|
|
|
typedef unsigned int u32;
|
2018-08-13 08:58:24 +00:00
|
|
|
typedef unsigned int UINT;
|
|
|
|
typedef unsigned long DWORD;
|
|
|
|
typedef unsigned long long QWORD;
|
2018-05-01 05:15:48 +00:00
|
|
|
typedef unsigned long long int u64;
|
|
|
|
typedef volatile unsigned char vu8;
|
|
|
|
typedef volatile unsigned short vu16;
|
2018-03-07 01:11:46 +00:00
|
|
|
typedef volatile unsigned int vu32;
|
|
|
|
|
2018-08-13 09:12:53 +00:00
|
|
|
typedef int bool;
|
|
|
|
#define true 1
|
|
|
|
#define false 0
|
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
#define BOOT_CFG_AUTOBOOT_EN (1 << 0)
|
|
|
|
#define BOOT_CFG_FROM_LAUNCH (1 << 1)
|
2019-02-24 01:03:17 +00:00
|
|
|
#define BOOT_CFG_SEPT_RUN (1 << 7)
|
2019-02-24 00:43:13 +00:00
|
|
|
|
2019-03-07 21:41:07 +00:00
|
|
|
#define EXTRA_CFG_KEYS (1 << 0)
|
|
|
|
#define EXTRA_CFG_PAYLOAD (1 << 1)
|
|
|
|
#define EXTRA_CFG_MODULE (1 << 2)
|
|
|
|
|
2019-06-30 00:55:19 +00:00
|
|
|
#define EXTRA_CFG_NYX_RELOAD (1 << 6)
|
|
|
|
#define EXTRA_CFG_NYX_DUMP (1 << 7)
|
|
|
|
|
2019-02-24 00:43:13 +00:00
|
|
|
typedef struct __attribute__((__packed__)) _boot_cfg_t
|
|
|
|
{
|
|
|
|
u8 boot_cfg;
|
|
|
|
u8 autoboot;
|
|
|
|
u8 autoboot_list;
|
2019-03-07 21:41:07 +00:00
|
|
|
u8 extra_cfg;
|
|
|
|
u8 rsvd[128];
|
2019-02-24 00:43:13 +00:00
|
|
|
} boot_cfg_t;
|
|
|
|
|
2019-03-07 21:41:07 +00:00
|
|
|
typedef struct __attribute__((__packed__)) _ipl_ver_meta_t
|
|
|
|
{
|
|
|
|
u32 magic;
|
|
|
|
u32 version;
|
|
|
|
u16 rsvd0;
|
|
|
|
u16 rsvd1;
|
|
|
|
} ipl_ver_meta_t;
|
|
|
|
|
2019-03-07 21:53:58 +00:00
|
|
|
typedef struct __attribute__((__packed__)) _reloc_meta_t
|
|
|
|
{
|
|
|
|
u32 start;
|
|
|
|
u32 stack;
|
|
|
|
u32 end;
|
|
|
|
u32 ep;
|
|
|
|
} reloc_meta_t;
|
|
|
|
|
2018-03-07 01:11:46 +00:00
|
|
|
#endif
|