updates tgc_vp by adding bsp specific r/w and updates platform.h paths
This commit is contained in:
parent
890d4478a3
commit
427f8e8b0b
19
env/moonlight/bsp_read.c
vendored
Normal file
19
env/moonlight/bsp_read.c
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
ssize_t _bsp_read(int fd, void *ptr, size_t len) {
|
||||
uint8_t *current = (uint8_t *)ptr;
|
||||
volatile uint32_t *uart_rx = (uint32_t *)0xFFFF0000;
|
||||
ssize_t result = 0;
|
||||
if (isatty(fd)) {
|
||||
for (current = (uint8_t *)ptr; (current < ((uint8_t *)ptr) + len);
|
||||
current++) {
|
||||
*current = *uart_rx;
|
||||
result++;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
return EOF;
|
||||
}
|
18
env/moonlight/bsp_write.c
vendored
Normal file
18
env/moonlight/bsp_write.c
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
/* See LICENSE of license details. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
|
||||
const uint8_t *current = (const uint8_t *)ptr;
|
||||
if (isatty(fd)) {
|
||||
for (size_t jj = 0; jj < len; jj++) {
|
||||
*((uint32_t *)0xFFFF0000) = current[jj];
|
||||
}
|
||||
return len;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
19
env/moonlight/platform.h
vendored
19
env/moonlight/platform.h
vendored
@ -13,15 +13,15 @@
|
||||
|
||||
#define APB_BUS
|
||||
|
||||
#include "ehrenberg/devices/gpio.h"
|
||||
#include "ehrenberg/devices/uart.h"
|
||||
#include "ehrenberg/devices/timer.h"
|
||||
#include "ehrenberg/devices/aclint.h"
|
||||
#include "ehrenberg/devices/qspi.h"
|
||||
#include "ehrenberg/devices/i2s.h"
|
||||
#include "ehrenberg/devices/camera.h"
|
||||
#include "ehrenberg/devices/dma.h"
|
||||
#include "ehrenberg/devices/msg_if.h"
|
||||
#include "minres/devices/aclint.h"
|
||||
#include "minres/devices/camera.h"
|
||||
#include "minres/devices/dma.h"
|
||||
#include "minres/devices/gpio.h"
|
||||
#include "minres/devices/i2s.h"
|
||||
#include "minres/devices/msg_if.h"
|
||||
#include "minres/devices/qspi.h"
|
||||
#include "minres/devices/timer.h"
|
||||
#include "minres/devices/uart.h"
|
||||
|
||||
#define PERIPH(TYPE, ADDR) ((volatile TYPE *)(ADDR))
|
||||
|
||||
@ -38,7 +38,6 @@
|
||||
#define dma PERIPH(dma_t, APB_BASE + 0xB0000)
|
||||
#define msgif PERIPH(msgif_t, APB_BASE + 0xC0000)
|
||||
|
||||
|
||||
#define XIP_START_LOC 0xE0040000
|
||||
#define RAM_START_LOC 0x80000000
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user