mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
board: noblelte: Add support for Samsung Galaxy Note5
Signed-off-by: Faiz Faadhillah <faiz.faadhillah@gmail.com>
This commit is contained in:
parent
1f62b4e5ac
commit
e55d091dcc
@ -7,6 +7,13 @@ menu "Device Support"
|
|||||||
help
|
help
|
||||||
Say Y if you want to include support for iPhone 6
|
Say Y if you want to include support for iPhone 6
|
||||||
|
|
||||||
|
config SAMSUNG_NOBLELTE
|
||||||
|
bool "Support for Samsung Galaxy Note5"
|
||||||
|
default n
|
||||||
|
depends on EXYNOS_7420
|
||||||
|
help
|
||||||
|
Say Y if you want to include support for Samsung Galaxy Note5
|
||||||
|
|
||||||
config SAMSUNG_JACKPOTLTE
|
config SAMSUNG_JACKPOTLTE
|
||||||
bool "Support for Samsung Galaxy A8 (2018)"
|
bool "Support for Samsung Galaxy A8 (2018)"
|
||||||
default n
|
default n
|
||||||
@ -35,6 +42,7 @@ menu "Device Specific Addresses"
|
|||||||
config PAYLOAD_ENTRY
|
config PAYLOAD_ENTRY
|
||||||
hex "Payload Entry Address"
|
hex "Payload Entry Address"
|
||||||
default 0x830000000 if APPLE_N61AP
|
default 0x830000000 if APPLE_N61AP
|
||||||
|
default 0x050000000 if SAMSUNG_NOBLELTE
|
||||||
default 0x090000000 if SAMSUNG_JACKPOTLTE
|
default 0x090000000 if SAMSUNG_JACKPOTLTE
|
||||||
default 0x090000000 if SAMSUNG_DREAMLTE
|
default 0x090000000 if SAMSUNG_DREAMLTE
|
||||||
default 0x090000000 if SAMSUNG_STARLTE
|
default 0x090000000 if SAMSUNG_STARLTE
|
||||||
@ -43,6 +51,7 @@ menu "Device Specific Addresses"
|
|||||||
hex "Framebuffer Base Address (for SimpleFB)"
|
hex "Framebuffer Base Address (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 0x83e900000 if APPLE_N61AP
|
default 0x83e900000 if APPLE_N61AP
|
||||||
|
default 0x0e2a00000 if SAMSUNG_NOBLELTE
|
||||||
default 0x0ec000000 if SAMSUNG_JACKPOTLTE
|
default 0x0ec000000 if SAMSUNG_JACKPOTLTE
|
||||||
default 0x0cc000000 if SAMSUNG_DREAMLTE
|
default 0x0cc000000 if SAMSUNG_DREAMLTE
|
||||||
default 0x0cc000000 if SAMSUNG_STARLTE
|
default 0x0cc000000 if SAMSUNG_STARLTE
|
||||||
@ -51,6 +60,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Width (for SimpleFB)"
|
int "Framebuffer Width (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 752 if APPLE_N61AP
|
default 752 if APPLE_N61AP
|
||||||
|
default 1440 if SAMSUNG_NOBLELTE
|
||||||
default 1080 if SAMSUNG_JACKPOTLTE
|
default 1080 if SAMSUNG_JACKPOTLTE
|
||||||
default 1440 if SAMSUNG_DREAMLTE
|
default 1440 if SAMSUNG_DREAMLTE
|
||||||
default 1440 if SAMSUNG_STARLTE
|
default 1440 if SAMSUNG_STARLTE
|
||||||
@ -59,6 +69,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Height (for SimpleFB)"
|
int "Framebuffer Height (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 1334 if APPLE_N61AP
|
default 1334 if APPLE_N61AP
|
||||||
|
default 2560 if SAMSUNG_NOBLELTE
|
||||||
default 2220 if SAMSUNG_JACKPOTLTE
|
default 2220 if SAMSUNG_JACKPOTLTE
|
||||||
default 2960 if SAMSUNG_DREAMLTE
|
default 2960 if SAMSUNG_DREAMLTE
|
||||||
default 2960 if SAMSUNG_STARLTE
|
default 2960 if SAMSUNG_STARLTE
|
||||||
@ -67,6 +78,7 @@ menu "Device Specific Addresses"
|
|||||||
int "Framebuffer Stride (for SimpleFB)"
|
int "Framebuffer Stride (for SimpleFB)"
|
||||||
depends on SIMPLE_FB
|
depends on SIMPLE_FB
|
||||||
default 4 if APPLE_N61AP
|
default 4 if APPLE_N61AP
|
||||||
|
default 4 if SAMSUNG_NOBLELTE
|
||||||
default 4 if SAMSUNG_JACKPOTLTE
|
default 4 if SAMSUNG_JACKPOTLTE
|
||||||
default 4 if SAMSUNG_DREAMLTE
|
default 4 if SAMSUNG_DREAMLTE
|
||||||
default 4 if SAMSUNG_STARLTE
|
default 4 if SAMSUNG_STARLTE
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
lib-$(CONFIG_APPLE_N61AP) += apple/board-n61ap.o
|
lib-$(CONFIG_APPLE_N61AP) += apple/board-n61ap.o
|
||||||
|
lib-$(CONFIG_SAMSUNG_NOBLELTE) += samsung/board-noblelte.o
|
||||||
lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
||||||
lib-$(CONFIG_SAMSUNG_DREAMLTE) += samsung/board-dreamlte.o
|
lib-$(CONFIG_SAMSUNG_DREAMLTE) += samsung/board-dreamlte.o
|
||||||
lib-$(CONFIG_SAMSUNG_STARLTE) += samsung/board-starlte.o
|
lib-$(CONFIG_SAMSUNG_STARLTE) += samsung/board-starlte.o
|
||||||
|
8
board/samsung/board-noblelte.c
Normal file
8
board/samsung/board-noblelte.c
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022, Faiz Faadhillah <faiz.faadhillah@gmail.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
void board_init(void) {
|
||||||
|
|
||||||
|
}
|
3
configs/noblelte_defconfig
Normal file
3
configs/noblelte_defconfig
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
CONFIG_CROSS_COMPILE="aarch64-linux-gnu-"
|
||||||
|
CONFIG_EXYNOS_7420=y
|
||||||
|
CONFIG_SAMSUNG_NOBLELTE=y
|
Loading…
Reference in New Issue
Block a user