mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-19 05:17:22 +01:00
34 lines
840 B
C
34 lines
840 B
C
|
#ifndef FUSEE_HWINIT_H
|
||
|
#define FUSEE_HWINIT_H
|
||
|
|
||
|
/* Symbols from hwinit that we're using, but w/o importing macro definitions that may clash with ours */
|
||
|
|
||
|
#include "hwinit/types.h"
|
||
|
#include "hwinit/hwinit.h"
|
||
|
#include "hwinit/i2c.h"
|
||
|
|
||
|
#define UART_A 0
|
||
|
#define UART_B 1
|
||
|
#define UART_C 2
|
||
|
#define BAUD_115200 115200
|
||
|
|
||
|
void uart_init(u32 idx, u32 baud);
|
||
|
void uart_wait_idle(u32 idx, u32 which);
|
||
|
void uart_send(u32 idx, u8 *buf, u32 len);
|
||
|
void uart_recv(u32 idx, u8 *buf, u32 len);
|
||
|
|
||
|
void display_init();
|
||
|
void display_end();
|
||
|
|
||
|
void clock_enable_fuse(u32 enable);
|
||
|
|
||
|
/*! Show one single color on the display. */
|
||
|
void display_color_screen(u32 color);
|
||
|
|
||
|
/*! Init display in full 1280x720 resolution (32bpp, line stride 768, framebuffer size = 1280*768*4 bytes). */
|
||
|
u32 *display_init_framebuffer();
|
||
|
|
||
|
void cluster_boot_cpu0(u64 entry, u32 ns_disable);
|
||
|
|
||
|
#endif
|