mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-22 12:10:09 +00:00
cc694062ec
Signed-off-by: David Wronek <w.david0@protonmail.com>
12 lines
259 B
C
12 lines
259 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2022, David Wronek <w.david0@protonmail.com>
|
|
*/
|
|
|
|
#include <soc/exynos7885.h>
|
|
|
|
void soc_init(void) {
|
|
/* Allow framebuffer to be written to */
|
|
*(int*) (DECON_F_BASE + HW_SW_TRIG_CONTROL) = 0x1281;
|
|
}
|