|
|
|
@ -12,7 +12,7 @@
|
|
|
|
|
|
|
|
|
|
#define PAYLOAD_SIZE (16 << 11)
|
|
|
|
|
|
|
|
|
|
#define F_CLK 50000000UL
|
|
|
|
|
#define F_CLK 60000000UL
|
|
|
|
|
|
|
|
|
|
static volatile uint32_t * const spi = (void *)(SPI_CTRL_ADDR);
|
|
|
|
|
|
|
|
|
@ -160,7 +160,8 @@ static int copy(void)
|
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
|
|
dputs("CMD18");
|
|
|
|
|
kprintf("LOADING ");
|
|
|
|
|
//~ kprintf("LOADING ");
|
|
|
|
|
kprintf("READ: ");
|
|
|
|
|
|
|
|
|
|
REG32(spi, SPI_REG_SCKDIV) = (F_CLK / 20000000UL);
|
|
|
|
|
if (sd_cmd(0x52, 0, 0xE1) != 0x00) {
|
|
|
|
@ -172,14 +173,18 @@ static int copy(void)
|
|
|
|
|
long n;
|
|
|
|
|
|
|
|
|
|
crc = 0;
|
|
|
|
|
n = 512;
|
|
|
|
|
//~ n = 512;
|
|
|
|
|
n = 50;
|
|
|
|
|
while (sd_dummy() != 0xFE);
|
|
|
|
|
do {
|
|
|
|
|
uint8_t x = sd_dummy();
|
|
|
|
|
*p++ = x;
|
|
|
|
|
crc = crc16_round(crc, x);
|
|
|
|
|
kputc(x);
|
|
|
|
|
//~ *p++ = x;
|
|
|
|
|
//~ crc = crc16_round(crc, x);
|
|
|
|
|
} while (--n > 0);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
crc_exp = ((uint16_t)sd_dummy() << 8);
|
|
|
|
|
crc_exp |= sd_dummy();
|
|
|
|
|
|
|
|
|
@ -202,10 +207,60 @@ static int copy(void)
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// leave room for 2 MiB stack (SP = 8FFFF000)
|
|
|
|
|
#define RAMTEST_START (uint32_t*)(0x80000000)
|
|
|
|
|
#define RAMTEST_END (uint32_t*)(0x8FDFF000)
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
|
{
|
|
|
|
|
REG32(uart, UART_REG_TXCTRL) = UART_TXEN;
|
|
|
|
|
//REG32(uart, UART_REG_TXCTRL) = UART_TXEN;
|
|
|
|
|
|
|
|
|
|
//GPIO_REG(GPIO_INPUT_EN) = 0xFF;
|
|
|
|
|
GPIO_REG(GPIO_OUTPUT_EN) = 0xFF;
|
|
|
|
|
GPIO_REG(GPIO_OUTPUT_VAL) = 0xFF;
|
|
|
|
|
|
|
|
|
|
kprintf("\nFilling RAM from %lx to %lx...\n", RAMTEST_START, RAMTEST_END);
|
|
|
|
|
|
|
|
|
|
uint32_t counter = 0;
|
|
|
|
|
for(uint32_t* ram = RAMTEST_START; ram < RAMTEST_END; ++ram) {
|
|
|
|
|
*ram = counter++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kprintf("\rChecking RAM...\n");
|
|
|
|
|
|
|
|
|
|
counter = 0;
|
|
|
|
|
uint32_t correct = 0;
|
|
|
|
|
uint32_t wrong = 0;
|
|
|
|
|
for(uint32_t* ram = RAMTEST_START; ram < RAMTEST_END; ++ram) {
|
|
|
|
|
if(*ram != counter) {
|
|
|
|
|
kprintf("\rMismatch at %lx: read %x, expected %x\n", ram, *ram, counter);
|
|
|
|
|
++wrong;
|
|
|
|
|
} else {
|
|
|
|
|
++correct;
|
|
|
|
|
}
|
|
|
|
|
++counter;
|
|
|
|
|
}
|
|
|
|
|
kprintf("\rSummary: %x matches, %x mismatches.\n", correct, wrong);
|
|
|
|
|
|
|
|
|
|
kprintf("\nTrying to read from SD card...\n");
|
|
|
|
|
|
|
|
|
|
kputs("POWERON");
|
|
|
|
|
sd_poweron();
|
|
|
|
|
kprintf("sd_cmd0: %hx\n", sd_cmd0());
|
|
|
|
|
kprintf("sd_cmd8: %hx\n", sd_cmd8());
|
|
|
|
|
kprintf("sd_acmd41: %hx\n", sd_acmd41());
|
|
|
|
|
kprintf("sd_cmd58: %hx\n", sd_cmd58());
|
|
|
|
|
kprintf("sd_cmd16: %hx\n", sd_cmd16());
|
|
|
|
|
kprintf("\ncopy: %hx\n", copy());
|
|
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
|
//uint8_t dip_value = GPIO_REG(GPIO_INPUT_VAL) & 0b01111111;
|
|
|
|
|
//kprintf("dip value: %hx, ram value: %c\n", dip_value, ram[dip_value]);
|
|
|
|
|
|
|
|
|
|
GPIO_REG(GPIO_OUTPUT_VAL) ^= 0xFF;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
/*
|
|
|
|
|
kputs("INIT");
|
|
|
|
|
sd_poweron();
|
|
|
|
|
if (sd_cmd0() ||
|
|
|
|
@ -221,5 +276,5 @@ int main(void)
|
|
|
|
|
kputs("BOOT");
|
|
|
|
|
|
|
|
|
|
__asm__ __volatile__ ("fence.i" : : : "memory");
|
|
|
|
|
return 0;
|
|
|
|
|
return 0;*/
|
|
|
|
|
}
|
|
|
|
|