mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-21 19:40:07 +00:00
Compare commits
2 Commits
1ca161a0a2
...
0fe1215b15
Author | SHA1 | Date | |
---|---|---|---|
|
0fe1215b15 | ||
|
8cb5c6501d |
@ -48,6 +48,13 @@ menu "Device Support"
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy S9
|
||||
|
||||
config SAMSUNG_R8S
|
||||
bool "Support for Samsung Galaxy S20 FE"
|
||||
default n
|
||||
depends on EXYNOS_990
|
||||
help
|
||||
Say Y if you want to include support for Samsung Galaxy S20 FE
|
||||
|
||||
config SAMSUNG_X1S
|
||||
bool "Support for Samsung Galaxy S20"
|
||||
default n
|
||||
@ -92,6 +99,7 @@ menu "Device Specific Addresses"
|
||||
default 0x090000000 if SAMSUNG_ZEROFLTE
|
||||
default 0x090000000 if SAMSUNG_DREAMLTE
|
||||
default 0x090000000 if SAMSUNG_STARLTE
|
||||
default 0x090000000 if SAMSUNG_R8S
|
||||
default 0x090000000 if SAMSUNG_X1S
|
||||
default 0x050000000 if SAMSUNG_J4LTE
|
||||
default 0x090000000 if SAMSUNG_J5LTE
|
||||
@ -101,6 +109,7 @@ menu "Device Specific Addresses"
|
||||
hex "Ramdisk Entry Address"
|
||||
default 0x082000000 if SAMSUNG_DREAMLTE
|
||||
default 0x084000000 if SAMSUNG_C1S
|
||||
default 0x084000000 if SAMSUNG_R8S
|
||||
default 0x084000000 if SAMSUNG_X1S
|
||||
|
||||
config FRAMEBUFFER_BASE
|
||||
@ -113,6 +122,7 @@ menu "Device Specific Addresses"
|
||||
default 0x0e2a00000 if SAMSUNG_ZEROFLTE
|
||||
default 0x0cc000000 if SAMSUNG_DREAMLTE
|
||||
default 0x0cc000000 if SAMSUNG_STARLTE
|
||||
default 0x0f1000000 if SAMSUNG_R8S
|
||||
default 0x0f1000000 if SAMSUNG_X1S
|
||||
default 0x067000000 if SAMSUNG_J4LTE
|
||||
default 0x08e000000 if SAMSUNG_J5LTE
|
||||
@ -128,6 +138,7 @@ menu "Device Specific Addresses"
|
||||
default 1440 if SAMSUNG_ZEROFLTE
|
||||
default 1440 if SAMSUNG_DREAMLTE
|
||||
default 1440 if SAMSUNG_STARLTE
|
||||
default 1080 if SAMSUNG_R8S
|
||||
default 1440 if SAMSUNG_X1S
|
||||
default 720 if SAMSUNG_J4LTE
|
||||
default 720 if SAMSUNG_J5LTE
|
||||
@ -143,6 +154,7 @@ menu "Device Specific Addresses"
|
||||
default 2560 if SAMSUNG_ZEROFLTE
|
||||
default 2960 if SAMSUNG_DREAMLTE
|
||||
default 2960 if SAMSUNG_STARLTE
|
||||
default 2400 if SAMSUNG_R8S
|
||||
default 3200 if SAMSUNG_X1S
|
||||
default 1280 if SAMSUNG_J4LTE
|
||||
default 1280 if SAMSUNG_J5LTE
|
||||
@ -158,6 +170,7 @@ menu "Device Specific Addresses"
|
||||
default 4 if SAMSUNG_ZEROFLTE
|
||||
default 4 if SAMSUNG_DREAMLTE
|
||||
default 4 if SAMSUNG_STARLTE
|
||||
default 4 if SAMSUNG_R8S
|
||||
default 4 if SAMSUNG_X1S
|
||||
default 4 if SAMSUNG_J4LTE
|
||||
default 3 if SAMSUNG_J5LTE
|
||||
|
@ -5,6 +5,7 @@ lib-$(CONFIG_SAMSUNG_JACKPOTLTE) += samsung/board-jackpotlte.o
|
||||
lib-$(CONFIG_SAMSUNG_ZEROFLTE) += samsung/board-zeroflte.o
|
||||
lib-$(CONFIG_SAMSUNG_DREAMLTE) += samsung/board-dreamlte.o
|
||||
lib-$(CONFIG_SAMSUNG_STARLTE) += samsung/board-starlte.o
|
||||
lib-$(CONFIG_SAMSUNG_R8S) += samsung/board-r8s.o
|
||||
lib-$(CONFIG_SAMSUNG_X1S) += samsung/board-x1s.o
|
||||
lib-$(CONFIG_SAMSUNG_J5LTE) += samsung/board-j5lte.o
|
||||
lib-$(CONFIG_SAMSUNG_J4LTE) += samsung/board-j4lte.o
|
||||
|
57
board/samsung/board-r8s.c
Normal file
57
board/samsung/board-r8s.c
Normal file
@ -0,0 +1,57 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (c) Sota4Ever <wachiturroxd150@gmail.com>
|
||||
* Copyright (c) 2024, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
||||
*/
|
||||
#include <board.h>
|
||||
#include <drivers/framework.h>
|
||||
#include <lib/simplefb.h>
|
||||
|
||||
#define DECON_F_BASE 0x19050000
|
||||
#define HW_SW_TRIG_CONTROL 0x70
|
||||
|
||||
void init_board_funcs(void *board)
|
||||
{
|
||||
/*
|
||||
* Parsing the struct directly without restructing is
|
||||
* broken as of Sep 29 2024
|
||||
*/
|
||||
struct {
|
||||
const char *name;
|
||||
int ops[BOARD_OP_EXIT];
|
||||
} *board_restruct = board;
|
||||
|
||||
board_restruct->name = "R8S";
|
||||
}
|
||||
|
||||
// Early initialization
|
||||
int board_init(void)
|
||||
{
|
||||
/* Allow framebuffer to be written to */
|
||||
*(int*) (DECON_F_BASE + HW_SW_TRIG_CONTROL) = 0x1281;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Late initialization
|
||||
int board_late_init(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_driver_setup(void)
|
||||
{
|
||||
struct {
|
||||
int width;
|
||||
int height;
|
||||
int stride;
|
||||
void *address;
|
||||
} simplefb_data = {
|
||||
.width = 1080,
|
||||
.height = 2400,
|
||||
.stride = 4,
|
||||
.address = (void *)0xf1000000
|
||||
};
|
||||
|
||||
REGISTER_DRIVER("simplefb", simplefb_probe, &simplefb_data);
|
||||
return 0;
|
||||
}
|
3
configs/r8s_defconfig
Normal file
3
configs/r8s_defconfig
Normal file
@ -0,0 +1,3 @@
|
||||
CONFIG_CROSS_COMPILE="aarch64-linux-gnu-"
|
||||
CONFIG_EXYNOS_990=y
|
||||
CONFIG_SAMSUNG_R8S=y
|
Loading…
Reference in New Issue
Block a user