]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
fx2lafw: Delay start of GPIF until first BULK IN request is received
authorStefan Brüns <redacted>
Wed, 3 Jan 2018 22:59:41 +0000 (23:59 +0100)
committerUwe Hermann <redacted>
Wed, 17 Jan 2018 16:49:53 +0000 (17:49 +0100)
Apparently the host controller may issue the CONTROL transfer with
the START command earlier than any of the BULK IN requests. The result
is a filled up EP2 packet FIFO, which aborts the acquisition.

Waiting for the first BULK IN request matches the sample code in the
TRM, see e.g. Figure 10-30.

This fixes bug #655.

fx2lafw.c
gpif-acquisition.c
include/gpif-acquisition.h

index a1a486cd291b8d97bf91c5071d42d68dff2070f8..b99d77f4b559ef671510fec309e9f4b3721f6d2d 100644 (file)
--- a/fx2lafw.c
+++ b/fx2lafw.c
@@ -51,9 +51,7 @@
 volatile __bit got_sud;
 BYTE vendor_command;
 
 volatile __bit got_sud;
 BYTE vendor_command;
 
-volatile WORD ledcounter = 1000;
-
-extern __bit gpif_acquiring;
+volatile WORD ledcounter = 0;
 
 static void setup_endpoints(void)
 {
 
 static void setup_endpoints(void)
 {
@@ -127,6 +125,7 @@ BOOL handle_vendorcommand(BYTE cmd)
        /* Protocol implementation */
        switch (cmd) {
        case CMD_START:
        /* Protocol implementation */
        switch (cmd) {
        case CMD_START:
+               /* Tell hardware we are ready to receive data. */
                vendor_command = cmd;
                EP0BCL = 0;
                return TRUE;
                vendor_command = cmd;
                EP0BCL = 0;
                return TRUE;
@@ -193,6 +192,38 @@ void sudav_isr(void) __interrupt SUDAV_ISR
        CLEAR_SUDAV();
 }
 
        CLEAR_SUDAV();
 }
 
+/* IN BULK NAK - the host started requesting data. */
+void ibn_isr(void) __interrupt IBN_ISR
+{
+       /*
+        * If the IBN interrupt is not disabled, clearing
+        * does not work. See AN78446, 6.2.
+        */
+       BYTE ibnsave = IBNIE;
+       IBNIE = 0;
+       CLEAR_USBINT();
+
+       /*
+        * If the host sent the START command, start the GPIF
+        * engine. The host will repeat the BULK IN in the next
+        * microframe.
+        */
+       if ((IBNIRQ & bmEP2IBN) && (gpif_acquiring == PREPARED)) {
+               ledcounter = 1;
+               PA1 = 0;
+               gpif_acquisition_start();
+       }
+
+       /* Clear IBN flags for all EPs. */
+       IBNIRQ = 0xff;
+
+       NAKIRQ = bmIBN;
+       SYNCDELAY();
+
+       IBNIE = ibnsave;
+       SYNCDELAY();
+}
+
 void usbreset_isr(void) __interrupt USBRESET_ISR
 {
        handle_hispeed(FALSE);
 void usbreset_isr(void) __interrupt USBRESET_ISR
 {
        handle_hispeed(FALSE);
@@ -208,12 +239,12 @@ void hispeed_isr(void) __interrupt HISPEED_ISR
 void timer2_isr(void) __interrupt TF2_ISR
 {
        /* Blink LED during acquisition, keep it on otherwise. */
 void timer2_isr(void) __interrupt TF2_ISR
 {
        /* Blink LED during acquisition, keep it on otherwise. */
-       if (gpif_acquiring) {
+       if (gpif_acquiring == RUNNING) {
                if (--ledcounter == 0) {
                        PA1 = !PA1;
                        ledcounter = 1000;
                }
                if (--ledcounter == 0) {
                        PA1 = !PA1;
                        ledcounter = 1000;
                }
-       } else {
+       } else if (gpif_acquiring == STOPPED) {
                PA1 = 1; /* LED on. */
        }
        TF2 = 0;
                PA1 = 1; /* LED on. */
        }
        TF2 = 0;
@@ -236,6 +267,7 @@ void fx2lafw_init(void)
 
        /* TODO: Does the order of the following lines matter? */
        ENABLE_SUDAV();
 
        /* TODO: Does the order of the following lines matter? */
        ENABLE_SUDAV();
+       ENABLE_EP2IBN();
        ENABLE_HISPEED();
        ENABLE_USBRESET();
 
        ENABLE_HISPEED();
        ENABLE_USBRESET();
 
@@ -275,7 +307,7 @@ void fx2lafw_poll(void)
                                break;
 
                        if (EP0BCL == sizeof(struct cmd_start_acquisition)) {
                                break;
 
                        if (EP0BCL == sizeof(struct cmd_start_acquisition)) {
-                               gpif_acquisition_start(
+                               gpif_acquisition_prepare(
                                 (const struct cmd_start_acquisition *)EP0BUF);
                        }
 
                                 (const struct cmd_start_acquisition *)EP0BUF);
                        }
 
index 7d3dcb6d59d8c1c69048ce7b3efbca98d80e5d21..e98cbc54c27f73bed2e65c32ef0146b8570635e9 100644 (file)
@@ -26,7 +26,7 @@
 #include <fx2lafw.h>
 #include <gpif-acquisition.h>
 
 #include <fx2lafw.h>
 #include <gpif-acquisition.h>
 
-__bit gpif_acquiring;
+enum gpif_status gpif_acquiring = STOPPED;
 
 static void gpif_reset_waveforms(void)
 {
 
 static void gpif_reset_waveforms(void)
 {
@@ -125,7 +125,7 @@ void gpif_init_la(void)
        gpif_init_flowstates();
 
        /* Reset the status. */
        gpif_init_flowstates();
 
        /* Reset the status. */
-       gpif_acquiring = FALSE;
+       gpif_acquiring = STOPPED;
 }
 
 static void gpif_make_delay_state(volatile BYTE *pSTATE, uint8_t delay, uint8_t output)
 }
 
 static void gpif_make_delay_state(volatile BYTE *pSTATE, uint8_t delay, uint8_t output)
@@ -183,7 +183,7 @@ static void gpif_make_data_dp_state(volatile BYTE *pSTATE)
        pSTATE[24] = (6 << 3) | (6 << 0);
 }
 
        pSTATE[24] = (6 << 3) | (6 << 0);
 }
 
-bool gpif_acquisition_start(const struct cmd_start_acquisition *cmd)
+bool gpif_acquisition_prepare(const struct cmd_start_acquisition *cmd)
 {
        int i;
        volatile BYTE *pSTATE = &GPIF_WAVE_DATA;
 {
        int i;
        volatile BYTE *pSTATE = &GPIF_WAVE_DATA;
@@ -238,6 +238,14 @@ bool gpif_acquisition_start(const struct cmd_start_acquisition *cmd)
        /* Populate S1 - the decision point. */
        gpif_make_data_dp_state(pSTATE++);
 
        /* Populate S1 - the decision point. */
        gpif_make_data_dp_state(pSTATE++);
 
+       /* Update the status. */
+       gpif_acquiring = PREPARED;
+
+       return true;
+}
+
+void gpif_acquisition_start(void)
+{
        /* Execute the whole GPIF waveform once. */
        gpif_set_tc16(1);
 
        /* Execute the whole GPIF waveform once. */
        gpif_set_tc16(1);
 
@@ -245,15 +253,13 @@ bool gpif_acquisition_start(const struct cmd_start_acquisition *cmd)
        gpif_fifo_read(GPIF_EP2);
 
        /* Update the status. */
        gpif_fifo_read(GPIF_EP2);
 
        /* Update the status. */
-       gpif_acquiring = TRUE;
-
-       return true;
+       gpif_acquiring = RUNNING;
 }
 
 void gpif_poll(void)
 {
        /* Detect if acquisition has completed. */
 }
 
 void gpif_poll(void)
 {
        /* Detect if acquisition has completed. */
-       if (gpif_acquiring && (GPIFTRIG & 0x80)) {
+       if ((gpif_acquiring == RUNNING) && (GPIFTRIG & 0x80)) {
                /* Activate NAK-ALL to avoid race conditions. */
                FIFORESET = 0x80;
                SYNCDELAY();
                /* Activate NAK-ALL to avoid race conditions. */
                FIFORESET = 0x80;
                SYNCDELAY();
@@ -274,6 +280,6 @@ void gpif_poll(void)
                FIFORESET = 0x00;
                SYNCDELAY();
 
                FIFORESET = 0x00;
                SYNCDELAY();
 
-               gpif_acquiring = FALSE;
+               gpif_acquiring = STOPPED;
        }
 }
        }
 }
index 7b55b83b068ad94c749a5d7e39c9bdb11a5c36d7..a0c7af935a845a3cf1d527a927fccc40208b9e75 100644 (file)
 #include <stdbool.h>
 #include <command.h>
 
 #include <stdbool.h>
 #include <command.h>
 
+enum gpif_status {
+       STOPPED = 0,
+       PREPARED,
+       RUNNING,
+};
+extern enum gpif_status gpif_acquiring;
+
 void gpif_init_la(void);
 void gpif_init_la(void);
-bool gpif_acquisition_start(const struct cmd_start_acquisition *cmd);
+bool gpif_acquisition_prepare(const struct cmd_start_acquisition *cmd);
+void gpif_acquisition_start(void);
 void gpif_poll(void);
 
 #endif
 void gpif_poll(void);
 
 #endif