mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 14:10:07 +00:00
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;
|
||
|
}
|