#include #include #include #include #include #include #include "conio.h" #include "config.h" #include "settings.h" #include "chipset.h" #include "spi.h" #include "fv.h" void readspi_callback(UINT32 spibase_addr, UINT32 spi_size, UINT32 spiaddr) { static int prev_step = 0; static int next_step = 0; static int progress = 0; if (spiaddr == spibase_addr) { prev_step = 0; next_step = spibase_addr + (spi_size / 100); progress = 0; printf("Reading %dkb...\n", spi_size / 1024); } if (spiaddr > next_step) { next_step = next_step + (spi_size / 100); progress++; textcolor(RED); printf("\rReading %d%%\n", progress); textcolor(WHITE); } } void writespi_callback(UINT32 spibase_addr, UINT32 spi_size, UINT32 spiaddr) { static int prev_step = 0; static int next_step = 0; static int progress = 0; if (spiaddr == spibase_addr) { prev_step = 0; next_step = spibase_addr + (spi_size / 100); progress = 0; printf("Writing %dkb...\n", spi_size / 1024); } if (spiaddr > next_step) { next_step = next_step + (spi_size / 100); progress++; textcolor(RED); printf("\rWriting %d%%\n", progress); textcolor(WHITE); } } void erasespi_callback(UINT32 spibase_addr, UINT32 spi_size, UINT32 spiaddr) { static int prev_step = 0; static int next_step = 0; static int progress = 0; if (spiaddr == spibase_addr) { prev_step = 0; next_step = spibase_addr + (spi_size / 100); progress = 0; printf("Erasing %dkb...\n", spi_size / 1024); } if (spiaddr > next_step) { next_step = next_step + (spi_size / 100); progress++; textcolor(RED); printf("\rErasing %d%%\n", progress); textcolor(WHITE); } } void errorspi_callback(UINT32 spiaddr, UINT16 command) { textcolor(RED); printf("Error at SPI address %06x processing %d\n", spiaddr, command); textcolor(WHITE); } .