2018-03-15 15:14:41 +00:00
|
|
|
#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"
|
|
|
|
|
2018-04-03 11:15:48 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2018-03-15 15:14:41 +00:00
|
|
|
#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). */
|
2018-05-07 22:32:45 +01:00
|
|
|
u32 *display_init_framebuffer(void *address);
|
2018-03-15 15:14:41 +00:00
|
|
|
|
2018-04-03 10:56:50 +01:00
|
|
|
/*! Enable or disable the backlight. Should only be called when the screen is completely set up, to avoid flickering. */
|
|
|
|
void display_enable_backlight(bool on);
|
|
|
|
|
2018-05-04 18:47:05 +01:00
|
|
|
void cluster_enable_cpu0(u64 entry, u32 ns_disable);
|
2018-03-15 15:14:41 +00:00
|
|
|
|
|
|
|
#endif
|