2016-06-10 21:48:22 +02:00
|
|
|
/*
|
2016-07-05 16:05:53 +02:00
|
|
|
* This file is part of Luma3DS
|
|
|
|
* Copyright (C) 2016 Aurora Wright, TuxSH
|
2016-06-10 21:48:22 +02:00
|
|
|
*
|
2016-07-05 16:05:53 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Additional Terms 7.b of GPLv3 applies to this file: Requiring preservation of specified
|
|
|
|
* reasonable legal notices or author attributions in that material or in the Appropriate Legal
|
|
|
|
* Notices displayed by works containing it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-09-08 23:07:03 +02:00
|
|
|
* Screen init code by dark_samus, bil1s, Normmatt, delebile and others
|
|
|
|
* Screen deinit code by tiniVi
|
2016-06-10 21:48:22 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2016-09-02 14:14:19 +02:00
|
|
|
#define PDN_GPU_CNT (*(vu8 *)0x10141200)
|
2016-08-27 16:00:15 +02:00
|
|
|
|
2017-01-24 21:59:02 +01:00
|
|
|
#define ARESCREENSINITIALIZED (PDN_GPU_CNT != 1)
|
2016-10-16 23:34:26 +02:00
|
|
|
|
2017-04-17 03:59:45 +02:00
|
|
|
#define ARM11_STUB_ADDRESS 0x1FFFFF00
|
2016-09-02 14:14:19 +02:00
|
|
|
#define WAIT_FOR_ARM9() *arm11Entry = 0; while(!*arm11Entry); ((void (*)())*arm11Entry)();
|
2016-06-10 21:48:22 +02:00
|
|
|
|
2016-09-22 14:48:28 +02:00
|
|
|
#define SCREEN_TOP_WIDTH 400
|
|
|
|
#define SCREEN_BOTTOM_WIDTH 320
|
|
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
#define SCREEN_TOP_FBSIZE (3 * SCREEN_TOP_WIDTH * SCREEN_HEIGHT)
|
|
|
|
#define SCREEN_BOTTOM_FBSIZE (3 * SCREEN_BOTTOM_WIDTH * SCREEN_HEIGHT)
|
|
|
|
|
2016-07-03 20:53:13 +02:00
|
|
|
static volatile struct fb {
|
2016-07-18 15:06:35 +02:00
|
|
|
u8 *top_left;
|
|
|
|
u8 *top_right;
|
|
|
|
u8 *bottom;
|
2016-10-10 01:34:53 +02:00
|
|
|
} __attribute__((packed)) *const fbs = (volatile struct fb *)0x23FFFE00;
|
|
|
|
|
|
|
|
extern CfgData configData;
|
2016-06-10 21:48:22 +02:00
|
|
|
|
|
|
|
void deinitScreens(void);
|
2016-09-22 14:48:28 +02:00
|
|
|
void swapFramebuffers(bool isAlternate);
|
2016-07-18 15:06:35 +02:00
|
|
|
void updateBrightness(u32 brightnessIndex);
|
2016-11-15 14:08:58 +01:00
|
|
|
void clearScreens(bool isAlternate);
|
2017-01-24 21:59:02 +01:00
|
|
|
void initScreens(void);
|