mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-22 00:31:00 +00:00
Add new FPGA test firmware by Sylvain Munaut
This commit is contained in:
parent
7aec4e289c
commit
dda9973372
3 changed files with 8726 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
unsigned char proto2_bin[] = {
|
const unsigned char proto2_bin[] = {
|
||||||
0xff, 0x00, 0x00, 0xff, 0x7e, 0xaa, 0x99, 0x7e, 0x51, 0x00, 0x01, 0x05,
|
0xff, 0x00, 0x00, 0xff, 0x7e, 0xaa, 0x99, 0x7e, 0x51, 0x00, 0x01, 0x05,
|
||||||
0x92, 0x00, 0x20, 0x62, 0x02, 0xb3, 0x82, 0x00, 0x00, 0x72, 0x01, 0x50,
|
0x92, 0x00, 0x20, 0x62, 0x02, 0xb3, 0x82, 0x00, 0x00, 0x72, 0x01, 0x50,
|
||||||
0x11, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
0x11, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <freertos/FreeRTOS.h>
|
#include <freertos/FreeRTOS.h>
|
||||||
#include <freertos/queue.h>
|
#include <freertos/queue.h>
|
||||||
#include "fpga.h"
|
#include "fpga.h"
|
||||||
|
#include "selftest.h"
|
||||||
#include "ili9341.h"
|
#include "ili9341.h"
|
||||||
#include "ice40.h"
|
#include "ice40.h"
|
||||||
#include "rp2040.h"
|
#include "rp2040.h"
|
||||||
|
@ -113,9 +114,43 @@ esp_err_t verify_file_in_psram(ICE40* ice40, FILE* fd) {
|
||||||
return ESP_OK;
|
return ESP_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void test_spi(ICE40* ice40) {
|
||||||
|
esp_err_t res;
|
||||||
|
uint8_t r1[8], r2[8];
|
||||||
|
uint8_t data0[8] = {0x01, 0x23, 0x45, 0x67, 0x01, 0x23, 0x45, 0x67};
|
||||||
|
uint8_t data1[8] = {0x89, 0xab, 0xcd, 0xef, 0x89, 0xab, 0xcd, 0xef};
|
||||||
|
|
||||||
|
res = ice40_send(ice40, data0, 8);
|
||||||
|
if (res != ESP_OK) {
|
||||||
|
ESP_LOGE(TAG, "Transaction 1 failed");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
res = ice40_transaction(ice40, data1, 8, r1, 8);
|
||||||
|
if (res != ESP_OK) {
|
||||||
|
ESP_LOGE(TAG, "Transaction 2 failed");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Transaction 2 result: ");
|
||||||
|
for (uint8_t i = 0; i < 8; i++) printf("%02X ", r1[i]);
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
|
res = ice40_receive(ice40, r2, 8);
|
||||||
|
if (res != ESP_OK) {
|
||||||
|
ESP_LOGE(TAG, "Transaction 3 failed");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Transaction 3 result: ");
|
||||||
|
for (uint8_t i = 0; i < 8; i++) printf("%02X ", r2[i]);
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
|
||||||
void fpga_test(ILI9341* ili9341, ICE40* ice40, xQueueHandle buttonQueue) {
|
void fpga_test(ILI9341* ili9341, ICE40* ice40, xQueueHandle buttonQueue) {
|
||||||
esp_err_t res;
|
esp_err_t res;
|
||||||
bool reload_fpga = false;
|
bool reload_fpga = false;
|
||||||
|
bool load_old_bitstream = false;
|
||||||
do {
|
do {
|
||||||
printf("Start FPGA test...\n");
|
printf("Start FPGA test...\n");
|
||||||
reload_fpga = false;
|
reload_fpga = false;
|
||||||
|
@ -129,13 +164,19 @@ void fpga_test(ILI9341* ili9341, ICE40* ice40, xQueueHandle buttonQueue) {
|
||||||
ili9341_select(ili9341, true);
|
ili9341_select(ili9341, true);
|
||||||
|
|
||||||
printf("FPGA load...\n");
|
printf("FPGA load...\n");
|
||||||
res = ice40_load_bitstream(ice40, proto2_bin, proto2_bin_len);
|
if (load_old_bitstream) {
|
||||||
|
res = ice40_load_bitstream(ice40, proto2_bin, sizeof(proto2_bin));
|
||||||
|
} else {
|
||||||
|
res = ice40_load_bitstream(ice40, selftest_sw_bin, sizeof(selftest_sw_bin));
|
||||||
|
}
|
||||||
if (res != ESP_OK) {
|
if (res != ESP_OK) {
|
||||||
printf("Failed to load app bitstream into FPGA (%d)\n", res);
|
printf("Failed to load app bitstream into FPGA (%d)\n", res);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
printf("Bitstream loaded succesfully!\n");
|
printf("Bitstream loaded succesfully!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_spi(ice40);
|
||||||
|
|
||||||
bool waitForChoice = true;
|
bool waitForChoice = true;
|
||||||
while (waitForChoice) {
|
while (waitForChoice) {
|
||||||
|
@ -147,11 +188,16 @@ void fpga_test(ILI9341* ili9341, ICE40* ice40, xQueueHandle buttonQueue) {
|
||||||
switch(buttonMessage.input) {
|
switch(buttonMessage.input) {
|
||||||
case RP2040_INPUT_BUTTON_HOME:
|
case RP2040_INPUT_BUTTON_HOME:
|
||||||
case RP2040_INPUT_BUTTON_MENU:
|
case RP2040_INPUT_BUTTON_MENU:
|
||||||
|
waitForChoice = false;
|
||||||
|
break;
|
||||||
case RP2040_INPUT_BUTTON_BACK:
|
case RP2040_INPUT_BUTTON_BACK:
|
||||||
|
reload_fpga = true;
|
||||||
|
load_old_bitstream = true;
|
||||||
waitForChoice = false;
|
waitForChoice = false;
|
||||||
break;
|
break;
|
||||||
case RP2040_INPUT_BUTTON_ACCEPT:
|
case RP2040_INPUT_BUTTON_ACCEPT:
|
||||||
reload_fpga = true;
|
reload_fpga = true;
|
||||||
|
load_old_bitstream = false;
|
||||||
waitForChoice = false;
|
waitForChoice = false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
8678
main/selftest.h
Normal file
8678
main/selftest.h
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue