[v0.90][ARM] Add most of Qualcomm SoCs

This commit is contained in:
Dr-Noob
2020-11-25 11:34:49 +01:00
parent 37e849978a
commit 4f1dd82bba
3 changed files with 159 additions and 44 deletions

View File

@@ -1,10 +1,21 @@
#ifndef __SOC__
#define __SOC__
typedef int SOC;
#include <stdint.h>
typedef int32_t SOC;
enum {
SOC_UNKNOWN,
SOC_SNAPDRAGON,
SOC_MEDIATEK,
SOC_EXYNOS,
};
struct system_on_chip {
SOC soc;
SOC soc_vendor;
int32_t process;
char* soc_name;
char* raw_name;
};