mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-24 04:09:15 +01:00
3d2363bd78
-set optimize level of booter from -Os to -O1 -added back name addition for gamecube game disc 2 -made gprintf, fmt and sfmt a bit more safe -removed unneeded char for list check, just wastes memory
167 lines
3.4 KiB
C
167 lines
3.4 KiB
C
//Enable the line below to always write SD log
|
|
//#define sd_write_log
|
|
|
|
#include <gccore.h>
|
|
#include <malloc.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/iosupport.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "gecko.h"
|
|
#include "wifi_gecko.h"
|
|
#include "memory/mem2.hpp"
|
|
|
|
/* init-globals */
|
|
bool geckoinit = false;
|
|
bool textVideoInit = false;
|
|
bool bufferMessages = true;
|
|
bool WriteToSD = false;
|
|
#define SDWRITE_SIZE 1024
|
|
char sdwritebuffer[SDWRITE_SIZE];
|
|
|
|
static ssize_t __out_write(struct _reent *r __attribute__((unused)), int fd __attribute__((unused)), const char *ptr, size_t len)
|
|
{
|
|
if(geckoinit && ptr)
|
|
{
|
|
u32 level;
|
|
level = IRQ_Disable();
|
|
usb_sendbuffer_safe(1, ptr, len);
|
|
IRQ_Restore(level);
|
|
}
|
|
return len;
|
|
}
|
|
|
|
static const devoptab_t gecko_out = {
|
|
"stdout", // device name
|
|
0, // size of file structure
|
|
NULL, // device open
|
|
NULL, // device close
|
|
__out_write, // device write
|
|
NULL, // device read
|
|
NULL, // device seek
|
|
NULL, // device fstat
|
|
NULL, // device stat
|
|
NULL, // device link
|
|
NULL, // device unlink
|
|
NULL, // device chdir
|
|
NULL, // device rename
|
|
NULL, // device mkdir
|
|
0, // dirStateSize
|
|
NULL, // device diropen_r
|
|
NULL, // device dirreset_r
|
|
NULL, // device dirnext_r
|
|
NULL, // device dirclose_r
|
|
NULL, // device statvfs_r
|
|
NULL, // device ftruncate_r
|
|
NULL, // device fsync_r
|
|
NULL, // device deviceData
|
|
NULL, // device chmod_r
|
|
NULL, // device fchmod_r
|
|
};
|
|
|
|
static void USBGeckoOutput()
|
|
{
|
|
devoptab_list[STD_OUT] = &gecko_out;
|
|
devoptab_list[STD_ERR] = &gecko_out;
|
|
}
|
|
|
|
static void WriteToFile(const char* tmp, size_t len)
|
|
{
|
|
if(!bufferMessages)
|
|
return;
|
|
|
|
if((strlen(sdwritebuffer) + len) < SDWRITE_SIZE)
|
|
strcat(sdwritebuffer, tmp);
|
|
|
|
if(WriteToSD)
|
|
{
|
|
FILE *outfile = fopen("sd:/wiiflow.log", "a");
|
|
if(outfile)
|
|
{
|
|
fwrite(sdwritebuffer, 1, strlen(sdwritebuffer), outfile);
|
|
memset(sdwritebuffer, 0, SDWRITE_SIZE);
|
|
fclose(outfile);
|
|
}
|
|
}
|
|
}
|
|
|
|
#define GPRINTF_SIZE 256
|
|
static char gprintfBuffer[GPRINTF_SIZE];
|
|
void gprintf(const char *format, ...)
|
|
{
|
|
va_list va;
|
|
va_start(va, format);
|
|
size_t len = vsnprintf(gprintfBuffer, GPRINTF_SIZE - 1, format, va);
|
|
gprintfBuffer[GPRINTF_SIZE - 1] = '\0';
|
|
va_end(va);
|
|
|
|
__out_write(NULL, 0, gprintfBuffer, len);
|
|
WifiGecko_Send(gprintfBuffer, len);
|
|
WriteToFile(gprintfBuffer, len);
|
|
}
|
|
|
|
char ascii(char s)
|
|
{
|
|
if(s < 0x20)
|
|
return '.';
|
|
if(s > 0x7E)
|
|
return '.';
|
|
return s;
|
|
}
|
|
|
|
void ghexdump(void *d, int len)
|
|
{
|
|
u8 *data;
|
|
int i, off;
|
|
data = (u8*)d;
|
|
|
|
gprintf("\n 0 1 2 3 4 5 6 7 8 9 A B C D E F 0123456789ABCDEF");
|
|
gprintf("\n==== =============================================== ================\n");
|
|
|
|
for (off = 0; off < len; off += 16)
|
|
{
|
|
gprintf("%04x ",off);
|
|
for(i = 0; i < 16; i++)
|
|
{
|
|
if((i+off)>=len)
|
|
gprintf(" ");
|
|
else
|
|
gprintf("%02x ",data[off+i]);
|
|
}
|
|
gprintf(" ");
|
|
for(i = 0; i < 16; i++)
|
|
{
|
|
if((i+off)>=len)
|
|
gprintf(" ");
|
|
else
|
|
gprintf("%c",ascii(data[off+i]));
|
|
}
|
|
gprintf("\n");
|
|
}
|
|
}
|
|
|
|
static const char *initstr = "USB Gecko inited.\n";
|
|
bool InitGecko()
|
|
{
|
|
if(geckoinit)
|
|
return geckoinit;
|
|
|
|
USBGeckoOutput();
|
|
memset(sdwritebuffer, 0, SDWRITE_SIZE);
|
|
memset(gprintfBuffer, 0, GPRINTF_SIZE);
|
|
|
|
#ifdef sd_write_log
|
|
WriteToSD = true;
|
|
#endif
|
|
|
|
u32 geckoattached = usb_isgeckoalive(EXI_CHANNEL_1);
|
|
if(geckoattached)
|
|
{
|
|
geckoinit = true;
|
|
usb_flush(EXI_CHANNEL_1);
|
|
__out_write(NULL, 0, initstr, strlen(initstr));
|
|
}
|
|
return geckoinit;
|
|
}
|