mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
soc: apple: Add basic support for Apple T8010 (aka A10)
Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
This commit is contained in:
parent
f7906fff57
commit
7ed7b2b902
9
include/soc/t8010.h
Normal file
9
include/soc/t8010.h
Normal file
@ -0,0 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (c) 2023, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef T8010_H_ /* Include guard */
|
||||
#define T8010_H_
|
||||
|
||||
#endif // T8010_H_
|
@ -20,6 +20,13 @@ config QUALCOMM
|
||||
help
|
||||
Say Y if your device uses Apple T7000 SoC
|
||||
|
||||
config APPLE_T8010
|
||||
bool "Support for Apple T8010"
|
||||
default n
|
||||
select APPLE_SILICON
|
||||
help
|
||||
Say Y if your device uses Apple T8010 SoC
|
||||
|
||||
config EXYNOS_7420
|
||||
bool "Support for Exynos 7420"
|
||||
default n
|
||||
|
@ -1,4 +1,5 @@
|
||||
lib-$(CONFIG_APPLE_T7000) += apple/t7000.o
|
||||
lib-$(CONFIG_APPLE_T8010) += apple/t8010.o
|
||||
lib-$(CONFIG_EXYNOS_7420) += exynos/exynos7420.o
|
||||
lib-$(CONFIG_EXYNOS_7570) += exynos/exynos7570.o
|
||||
lib-$(CONFIG_EXYNOS_7885) += exynos/exynos7885.o
|
||||
|
10
soc/apple/t8010.c
Normal file
10
soc/apple/t8010.c
Normal file
@ -0,0 +1,10 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (c) 2023, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
||||
*/
|
||||
|
||||
#include <soc/t8010.h>
|
||||
|
||||
void soc_init(void) {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user