altos/stmf0: Add IN3 alternate endpoint support
[fw/altos] / src / stmf0 / ao_usb_stm.c
index 3d227f20641d740eeeb9cf58a72176befa936495..a99b4cffd09c6ad4ca89be7317d894127802c834 100644 (file)
@@ -113,6 +113,12 @@ static uint8_t     ao_usb_in_tx2_which;
 static uint8_t ao_usb_tx2_count;
 #endif
 
+#if AO_USB_HAS_IN3
+static uint16_t ao_usb_in_tx3_offset;
+static uint8_t ao_usb_in_tx3_which;
+static uint8_t ao_usb_tx3_count;
+#endif
+
 /*
  * End point register indices
  */
@@ -122,6 +128,7 @@ static uint8_t      ao_usb_tx2_count;
 #define AO_USB_OUT_EPR         2
 #define AO_USB_IN_EPR          3
 #define AO_USB_IN2_EPR         4
+#define AO_USB_IN3_EPR         5
 
 /* Marks when we don't need to send an IN packet.
  * This happens only when the last IN packet is not full,
@@ -146,6 +153,16 @@ static uint16_t    in2_count;
 static uint8_t ao_usb_in2_flushed;
 #endif
 
+#if AO_USB_HAS_IN3
+/* Marks when we have delivered an IN packet to the hardware
+ * and it has not been received yet. ao_sleep on this address
+ * to wait for it to be delivered.
+ */
+static uint8_t ao_usb_in3_pending;
+static uint16_t        in3_count;
+static uint8_t ao_usb_in3_flushed;
+#endif
+
 /* Marks when an OUT packet has been received by the hardware
  * but not pulled to the shadow buffer.
  */
@@ -423,6 +440,11 @@ ao_usb_alloc_buffers(void)
        ao_usb_in_tx2_offset = sram_addr;
        sram_addr += AO_USB_IN_SIZE * 2;
 #endif
+#if AO_USB_HAS_IN3
+       sram_addr += (sram_addr & 1);
+       ao_usb_in_tx3_offset = sram_addr;
+       sram_addr += AO_USB_IN_SIZE * 2;
+#endif
 }
 
 static void
@@ -558,6 +580,25 @@ ao_usb_set_configuration(void)
        ao_usb_in_tx2_which = 0;
 #endif
 
+#if AO_USB_HAS_IN3
+       /* Set up the IN3 end point */
+       stm_usb_bdt[AO_USB_IN3_EPR].double_tx[0].addr = ao_usb_in_tx3_offset;
+       stm_usb_bdt[AO_USB_IN3_EPR].double_tx[0].count = 0;
+       stm_usb_bdt[AO_USB_IN3_EPR].double_tx[1].addr = ao_usb_in_tx3_offset + AO_USB_IN_SIZE;
+       stm_usb_bdt[AO_USB_IN3_EPR].double_tx[1].count = 0;
+
+       ao_usb_init_ep(AO_USB_IN3_EPR,
+                      AO_USB_IN3_EP,
+                      STM_USB_EPR_EP_TYPE_BULK,
+                      STM_USB_EPR_STAT_RX_DISABLED,
+                      STM_USB_EPR_STAT_TX_NAK,
+                      STM_USB_EPR_EP_KIND_DBL_BUF,
+                      0, 1);
+
+       /* First transmit data goes to buffer 0 */
+       ao_usb_in_tx3_which = 0;
+#endif
+
        ao_usb_in_flushed = 0;
        ao_usb_in_pending = 0;
        ao_wakeup(&ao_usb_in_pending);
@@ -567,6 +608,12 @@ ao_usb_set_configuration(void)
        ao_wakeup(&ao_usb_in2_pending);
 #endif
 
+#if AO_USB_HAS_IN3
+       ao_usb_in3_flushed = 0;
+       ao_usb_in3_pending = 0;
+       ao_wakeup(&ao_usb_in3_pending);
+#endif
+
        ao_usb_out_avail = 0;
        ao_usb_configuration = 0;
 
@@ -995,6 +1042,16 @@ stm_usb_isr(void)
                                ao_wakeup(&ao_usb_in2_pending);
                        }
                        break;
+#endif
+#if AO_USB_HAS_IN3
+               case AO_USB_IN3_EPR:
+                       ++in3_count;
+                       _tx_dbg1("TX3 ISR", epr);
+                       if (ao_usb_epr_ctr_tx(epr)) {
+                               ao_usb_in3_pending = 0;
+                               ao_wakeup(&ao_usb_in3_pending);
+                       }
+                       break;
 #endif
                case AO_USB_INT_EPR:
 #if USB_STATUS
@@ -1202,6 +1259,94 @@ ao_usb_putchar2(char c)
 }
 #endif
 
+#if AO_USB_HAS_IN3
+/* Queue the current IN buffer for transmission */
+static void
+_ao_usb_in3_send(void)
+{
+       _tx_dbg0("in3_send start");
+       debug ("send3 %d\n", ao_usb_tx3_count);
+       while (ao_usb_in3_pending)
+               ao_sleep(&ao_usb_in3_pending);
+       ao_usb_in3_pending = 1;
+       if (ao_usb_tx3_count != AO_USB_IN_SIZE)
+               ao_usb_in3_flushed = 1;
+       stm_usb_bdt[AO_USB_IN3_EPR].double_tx[ao_usb_in_tx3_which].count = ao_usb_tx3_count;
+       ao_usb_tx3_count = 0;
+
+       /* Toggle our usage */
+       ao_usb_in_tx3_which = 1 - ao_usb_in_tx3_which;
+
+       /* Toggle the SW_BUF flag */
+       _ao_usb_toggle_dtog(AO_USB_IN3_EPR, 1, 0);
+
+       /* Mark the outgoing buffer as valid */
+       _ao_usb_set_stat_tx(AO_USB_IN3_EPR, STM_USB_EPR_STAT_TX_VALID);
+
+       _tx_dbg0("in3_send end");
+}
+
+/* Wait for a free IN buffer. Interrupts are blocked */
+static void
+_ao_usb_in3_wait(void)
+{
+       for (;;) {
+               /* Check if the current buffer is writable */
+               if (ao_usb_tx3_count < AO_USB_IN_SIZE)
+                       break;
+
+               _tx_dbg0("in3_wait top");
+               /* Wait for an IN buffer to be ready */
+               while (ao_usb_in3_pending)
+                       ao_sleep(&ao_usb_in3_pending);
+               _tx_dbg0("in_wait bottom");
+       }
+}
+
+void
+ao_usb_flush3(void)
+{
+       if (!ao_usb_running)
+               return;
+
+       /* Anytime we've sent a character since
+        * the last time we flushed, we'll need
+        * to send a packet -- the only other time
+        * we would send a packet is when that
+        * packet was full, in which case we now
+        * want to send an empty packet
+        */
+       ao_arch_block_interrupts();
+       while (!ao_usb_in3_flushed) {
+               _tx_dbg0("flush3 top");
+               _ao_usb_in3_send();
+               _tx_dbg0("flush3 end");
+       }
+       ao_arch_release_interrupts();
+}
+
+void
+ao_usb_putchar3(char c)
+{
+       if (!ao_usb_running)
+               return;
+
+       ao_arch_block_interrupts();
+       _ao_usb_in3_wait();
+
+       ao_usb_in3_flushed = 0;
+       ao_usb_tx_byte(ao_usb_in_tx3_offset + AO_USB_IN_SIZE * ao_usb_in_tx3_which + ao_usb_tx3_count++, c);
+
+       /* Send the packet when full */
+       if (ao_usb_tx3_count == AO_USB_IN_SIZE) {
+               _tx_dbg0("putchar3 full");
+               _ao_usb_in3_send();
+               _tx_dbg0("putchar3 flushed");
+       }
+       ao_arch_release_interrupts();
+}
+#endif
+
 #if AO_USB_HAS_OUT
 static void
 _ao_usb_out_recv(void)