23 lines
376 B
C
23 lines
376 B
C
#include "uart.h"
|
|
#include <libboot/devtree/devtree.h>
|
|
|
|
volatile uint32_t* output = NULL;
|
|
|
|
void uart_init()
|
|
{
|
|
devtree_entry_t* dev = devtree_find_device("uart");
|
|
if (!dev) {
|
|
while (1) { };
|
|
}
|
|
output = (uint32_t*)(uint32_t)dev->region_base;
|
|
}
|
|
|
|
int uart_write(uint8_t data)
|
|
{
|
|
if (!output) {
|
|
return 1;
|
|
}
|
|
|
|
*output = data;
|
|
return 0;
|
|
} |