soc: apple: Add basic support for Apple T7000 (aka A8)

Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
This commit is contained in:
ivoszbg 2022-06-12 17:55:59 +03:00
parent 6b4830e362
commit abb3a2cf4a
3 changed files with 24 additions and 0 deletions

9
include/soc/t7000.h Normal file
View File

@ -0,0 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
*/
#ifndef T7000_H_ /* Include guard */
#define T7000_H_
#endif // T7000_H_

View File

@ -32,6 +32,11 @@ ifeq ($(SOC),exynos8895)
brand_name=exynos
endif
# Apple
ifeq ($(SOC),t7000)
brand_name=apple
endif
all: $(brand_name)/$(SOC).o copy-soc
copy-soc:

10
soc/apple/t7000.c Normal file
View File

@ -0,0 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
*/
#include <soc/t7000.h>
void soc_init(void) {
}