UDI/16c550 - Init, not tested yet
authorJohn Hodge <[email protected]>
Sat, 1 Feb 2014 13:54:32 +0000 (21:54 +0800)
committerJohn Hodge <[email protected]>
Sat, 1 Feb 2014 13:54:32 +0000 (21:54 +0800)
UDI/drivers/uart_16c550/uart16c550.c
UDI/drivers/uart_16c550/uart16c550_common.h
UDI/drivers/uart_16c550/uart16c550_pio.h

index d4637ff..b9d6e08 100644 (file)
 
 #define __EXPJOIN(a,b) a##b
 #define _EXPJOIN(a,b)  __EXPJOIN(a,b)
-#define CONTIN(suffix, call, params, args...)  extern void _EXPJOIN(suffix##__,__LINE__) params;\
-       call(_EXPJOIN(suffix##__,__LINE__), gcb,## args); } \
-       void _EXPJOIN(suffix##__,__LINE__) params { \
+#define _EXPLODE(params...)    params
+#define _ADDGCB(params...)     (udi_cb_t *gcb, params)
+#define CONTIN(suffix, call, args, params)     extern void _EXPJOIN(suffix##__,__LINE__) _ADDGCB params;\
+       call( _EXPJOIN(suffix##__,__LINE__), gcb, _EXPLODE args); } \
+       void _EXPJOIN(suffix##__,__LINE__) _ADDGCB params { \
        rdata_t *rdata = gcb->context;
 
 // --- Management Metalang
@@ -38,7 +40,7 @@ void uart_enumerate_req(udi_enumerate_cb_t *cb, udi_ubit8_t enumeration_level)
        {
        case UDI_ENUMERATE_START:
        case UDI_ENUMERATE_START_RESCAN:
-               DPT_SET_ATTR_STRING(attr_list, "if_num", "uart", 4);
+               DPT_SET_ATTR_STRING(attr_list, "gio_type", "uart", 4);
                attr_list ++;
                cb->attr_valid_length = attr_list - cb->attr_list;
                udi_enumerate_ack(cb, UDI_ENUMERATE_OK, UART_OPS_GIO);
@@ -109,22 +111,15 @@ void uart_bus_dev_bind__pio_map(udi_cb_t *gcb, udi_pio_handle_t new_pio_handle)
                return ;
        }
 
-       CONTIN( uart_bus_dev_bind, udi_channel_spawn, (udi_cb_t *gcb, udi_channel_t new_channel), gcb->channel, 0, UART_OPS_IRQ, rdata)
-//     udi_channel_spawn(uart_bus_dev_bind__intr_chanel, gcb, gcb->channel, 0, UART_OPS_IRQ, rdata);
-//}
-//void uart_bus_dev_bind__intr_chanel(udi_cb_t *gcb, udi_channel_t new_channel)
-//{
-//     rdata_t *rdata = gcb->context;
+       CONTIN( uart_bus_dev_bind, udi_channel_spawn, (gcb->channel, 0, UART_OPS_IRQ, rdata),
+               (udi_channel_t new_channel))
+       // new function
        
        rdata->interrupt_channel = new_channel;
        
-       CONTIN( uart_bus_dev_bind, udi_cb_alloc, (udi_cb_t *gcb, udi_cb_t *new_cb), UART_CB_INTR, gcb->channel)
-//     udi_cb_alloc(uart_bus_dev_bind__intr_attach, gcb, NE2K_CB_INTR, gcb->channel);
-//     // V V V V
-//}
-//void uart_bus_dev_bind__intr_attach(udi_cb_t *gcb, udi_cb_t *new_cb)
-//{
-//     rdata_t *rdata = gcb->context;
+       CONTIN( uart_bus_dev_bind, udi_cb_alloc, (UART_CB_INTR, gcb->channel),
+               (udi_cb_t *new_cb))
+       // new function
        if( !new_cb )
        {
                // Oh...
@@ -163,17 +158,72 @@ void uart_bus_irq_intr_event_ind(udi_intr_event_cb_t *cb, udi_ubit8_t flags)
        udi_intr_event_rdy(cb);
 }
 // ---
+void uart_gio_prov_channel_event_ind(udi_channel_event_cb_t *cb);
+void uart_gio_prov_bind_req(udi_gio_bind_cb_t *cb);
+void uart_gio_prov_xfer_req(udi_gio_xfer_cb_t *cb);
+void uart_gio_read_complete(udi_cb_t *gcb, udi_buf_t *new_buf);
+void uart_gio_write_complete(udi_cb_t *gcb, udi_buf_t *new_buf, udi_status_t status, udi_ubit16_t res);
+void uart_gio_prov_event_res(udi_gio_event_cb_t *cb);
+
 void uart_gio_prov_channel_event_ind(udi_channel_event_cb_t *cb)
 {
 }
 void uart_gio_prov_bind_req(udi_gio_bind_cb_t *cb)
 {
+       udi_gio_bind_ack(cb, 0, 0, UDI_OK);
 }
 void uart_gio_prov_unbind_req(udi_gio_bind_cb_t *cb)
 {
+       udi_gio_unbind_ack(cb);
 }
 void uart_gio_prov_xfer_req(udi_gio_xfer_cb_t *cb)
 {
+       udi_cb_t        *gcb = UDI_GCB(cb);
+       rdata_t *rdata = gcb->context;
+       switch(cb->op)
+       {
+       case UDI_GIO_OP_READ:
+               // Read from local FIFO
+               if( rdata->rx_buffer->buf_size < cb->data_buf->buf_size ) {
+                       // Local FIFO was empty
+                       udi_gio_xfer_nak(cb, UDI_STAT_DATA_UNDERRUN);
+               }
+               else {
+                       udi_buf_copy(uart_gio_read_complete, gcb,
+                               rdata->rx_buffer,
+                               0, cb->data_buf->buf_size,
+                               cb->data_buf,
+                               0, cb->data_buf->buf_size,
+                               UDI_NULL_BUF_PATH);
+               }
+               break;
+       case UDI_GIO_OP_WRITE:
+               // Send to device
+               udi_pio_trans(uart_gio_write_complete, gcb,
+                       rdata->pio_handles[PIO_TX], 0, cb->data_buf, NULL);
+               break;
+       default:
+               udi_gio_xfer_nak(cb, UDI_STAT_NOT_SUPPORTED);
+               break;
+       }
+}
+void uart_gio_read_complete(udi_cb_t *gcb, udi_buf_t *new_buf)
+{
+       rdata_t *rdata = gcb->context;
+       udi_gio_xfer_cb_t       *cb = UDI_MCB(gcb, udi_gio_xfer_cb_t);
+       cb->data_buf = new_buf;
+       // Delete read bytes from the RX buffer
+       CONTIN(uart_gio_read_complete, udi_buf_write, (NULL, 0, rdata->rx_buffer, 0, cb->data_buf->buf_size, UDI_NULL_BUF_PATH),
+               (udi_buf_t *new_buf))
+       udi_gio_xfer_cb_t       *cb = UDI_MCB(gcb, udi_gio_xfer_cb_t);
+       rdata->rx_buffer = new_buf;
+       udi_gio_xfer_ack(cb);
+}
+void uart_gio_write_complete(udi_cb_t *gcb, udi_buf_t *new_buf, udi_status_t status, udi_ubit16_t res)
+{
+       udi_gio_xfer_cb_t       *cb = UDI_MCB(gcb, udi_gio_xfer_cb_t);
+       cb->data_buf = new_buf;
+       udi_gio_xfer_ack(cb);
 }
 void uart_gio_prov_event_res(udi_gio_event_cb_t *cb)
 {
index 6f051e2..1c70277 100644 (file)
@@ -28,6 +28,7 @@ typedef struct {
        
        udi_pio_handle_t        pio_handles[N_PIO];
        udi_channel_t   interrupt_channel;
+       udi_buf_t       *rx_buffer;
 } rdata_t;
 
 // === MACROS ===
index 7a4e227..dc3f307 100644 (file)
@@ -1,5 +1,7 @@
 #define PIO_op_RI(op, reg, sz, val)    {UDI_PIO_##op+UDI_PIO_DIRECT+UDI_PIO_##reg, UDI_PIO_##sz##BYTE, val}
-#define PIO_MOV_RI1(reg, val)  PIO_op_RI(LOAD_IMM, reg, 2, val)
+#define PIO_MOV_RI2(reg, val)  PIO_op_RI(LOAD_IMM, reg, 2, val)
+#define PIO_ADD_RI2(reg, val)  PIO_op_RI(ADD, reg, 2, val)
+#define PIO_SUB_RI2(reg, val)  PIO_op_RI(SUB, reg, 2, val)
 #define PIO_OUT_RI1(reg, ofs)  PIO_op_RI(OUT, reg, 1, ofs)
 #define PIO_IN_RI1(reg, ofs)   PIO_op_RI(IN, reg, 1, ofs)
 
@@ -7,18 +9,41 @@
 // Reset
 // 
 udi_pio_trans_t        uart_pio_reset[] = {
+       // TODO: Programmable baud rate
+       //PIO_MOV_RI2(R0, 0x3F8),       // TODO: programmable port number
+       PIO_ADD_RI2(R0, 1),
+       PIO_OUT_RI1(R0, 0x00),  // +1 = 0x00 - Disable interrupts
+       PIO_ADD_RI2(R0, 2),
+       PIO_OUT_RI1(R0, 0x80),  // +3 = 0x80 - Enable DLAB
+       PIO_SUB_RI2(R0, 3),
+       PIO_OUT_RI1(R0, 0x01),  // +0 = 0x01 - Divisor low      (115200 baud)
+       PIO_ADD_RI2(R0, 1),
+       PIO_OUT_RI1(R0, 0x00),  // +1 = 0x00 - Divisor high
+       PIO_ADD_RI2(R0, 2),
+       PIO_OUT_RI1(R0, 0x03),  // +3 = 0x03 - 8n1
+       PIO_SUB_RI2(R0, 1),
+       PIO_OUT_RI1(R0, 0xC7),  // +2 = 0xC7 - Clear FIFO, 14-byte threshold
+       PIO_ADD_RI2(R0, 2),
+       PIO_OUT_RI1(R0, 0x0B),  // +4 = 0x0B - IRQs enabled, RTS/DSR set
+       PIO_SUB_RI2(R0, 3),
+       PIO_OUT_RI1(R0, 0x0B),  // +1 = 0x05 - Enable ERBFI (Rx Full), ELSI (Line Status)
        {UDI_PIO_END, UDI_PIO_2BYTE, 0}
 };
 //
 // Transmit
 //
 udi_pio_trans_t        uart_pio_tx[] = {
+       // while( (inb(SERIAL_PORT + 5) & 0x20) == 0 );
+       // outb(SERIAL_PORT, ch);
        {UDI_PIO_END, UDI_PIO_2BYTE, 0}
 };
 //
 // Recieve (interrupt)
 //
 udi_pio_trans_t        uart_pio_rx[] = {
+       // if( (inb(SERIAL_PORT+5) & 0x01) == 0 )
+       //      return -1;
+       // return inb(SERIAL_PORT); 
        {UDI_PIO_END, UDI_PIO_2BYTE, 0}
 };
 

UCC git Repository :: git.ucc.asn.au