4 Commits

Author SHA1 Message Date
hongyu 3042e0e124 uses tohost in bsp_write 2025-03-11 11:42:28 +01:00
hongyu 8bb7365819 changes the order of sdata and srodata 2025-03-11 11:35:06 +01:00
alex c83b10df38 corrects puts in libwrap 2025-01-17 13:16:49 +01:00
alex 24b64bce3e re-adds symbolic link for tgc_vp 2025-01-16 11:17:54 +01:00
4 changed files with 42 additions and 12 deletions
+24 -4
View File
@@ -5,12 +5,32 @@
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
extern volatile uint32_t tohost;
ssize_t _bsp_write(int fd, const void *ptr, size_t len) {
const uint8_t *current = (const uint8_t *)ptr;
// char string[] = "hello world in bsp_write";
// uint32_t payload_1[4] = {64, 0, (uintptr_t)string, strlen(string)};
// tohost = (uint32_t)payload_1;
// const uint32_t *current = (const uint32_t *)ptr;
if (isatty(fd)) {
for (size_t jj = 0; jj < len; jj++) {
*((uint32_t *)0xFFFF0000) = current[jj];
}
// uint32_t payload[4] = {64, 0, (uint32_t)((uint32_t *)ptr), len};
// tohost = (uint32_t)payload;
uint64_t payload[4] = {64, 0, (uintptr_t)((uint32_t *)ptr), len};
tohost = (uint32_t)payload;
/*
// accoring to my understading this part is used fot uart wrrite for later
for (size_t jj = 0; jj < len; jj++) {
*((uint32_t *)0xFFFF0000) = current[jj];
}
*/
return len;
}
+16 -6
View File
@@ -13,6 +13,7 @@ PHDRS
flash PT_LOAD;
ram_init PT_LOAD;
ram PT_NULL;
}
SECTIONS
@@ -123,22 +124,30 @@ SECTIONS
*(.gnu.linkonce.d.*)
} >ram AT>flash :ram_init
.sdata :
{
__SDATA_BEGIN__ = .;
*(.sdata .sdata.*)
*(.gnu.linkonce.s.*)
} >ram AT>flash :ram_init
.srodata :
{
PROVIDE( _gp = . + 0x800 );
*(.srodata.cst16)
*(.srodata.cst8)
*(.srodata.cst4)
*(.srodata.cst2)
*(.srodata .srodata.*)
} >ram AT>flash :ram_init
.sdata :
{
__SDATA_BEGIN__ = .;
*(.sdata .sdata.*)
*(.gnu.linkonce.s.*)
} >ram AT>flash :ram_init
. = ALIGN(4);
PROVIDE( _edata = . );
@@ -172,3 +181,4 @@ SECTIONS
PROVIDE( tohost = 0xfffffff0 );
PROVIDE( fromhost = 0xfffffff8 );
}
Vendored
+1 -1
View File
@@ -1 +1 @@
ehrenberg
moonlight/
+1 -1
View File
@@ -6,6 +6,6 @@ extern ssize_t _bsp_write(int, const void *, size_t);
int __wrap_puts(const char *s) {
int len = strlen(s);
return _bsp_write(0, s, len);
return _bsp_write(STDOUT_FILENO, s, len);
}
weak_under_alias(puts);