OSDev.org

The Place to Start for Operating System Developers
It is currently Sat Apr 27, 2024 1:28 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: rtl8169 descriptor problem
PostPosted: Wed Nov 22, 2023 11:49 pm 
Offline

Joined: Thu May 04, 2023 7:54 pm
Posts: 7
Hi guys! when I am trying to develop driver for my nic rtl8169(the code is based on osdev topic rtl8169), I found some issues.

- whenever I send one packet ,there always be an interrupt status 0x84 coming. Datasheet says 8 means tx descriptor unavailable, and 4 means tx ok. But I dont understand how to fix tx descriptor unavailable, because the packet is sent successfully.

- for Transmit Priority Polling register, should I check the NPQ bit is 0 before or after set this bit? When I am enable the checking , it will never get out of the while after send a lot of packets. But if I dont check it. sending packet will be fine.

- If I receive the packet in the ISR, one packet will be divided to 2 or 3 descriptors. But if I receive the packet in the task, one packet will be divided to at most few hundreds descriptors. And after some time, the interrupt status 0x50 will happen. it means RX descriptor unavailabe and RX buffer Overflow. what should I do if the sender send a lot of data in the very short time?




below is my code :


Code:
#define BUFFER_SIZE 2000
#define RX_DES_LEN 1024
#define TX_DES_LEN 256
#define OWN (1<<31)
#define EOR (1<<30)
#define FS  (1<<29)
#define LS  (1<<28)
#define LGSEN (1<<27)
#define IPCS (1<<18)
#define UDPCS (1<<17)
#define TCPCS (1<<16)

#define USE_SEMA 0

#define outportw(port, val) rtems_outw(port,val)
#define inportw(port)  rtems_inw(port)


static inline unsigned int inportl(unsigned short port)
{
   unsigned int ret = 0;
   __asm__ __volatile__(   "inl   %%dx,   %0   \n\t"
            "mfence         \n\t"
            :"=a"(ret)
            :"d"(port)
            :"memory");
   return ret;
}

static inline void outportl(unsigned short port,unsigned int val)
{
   __asm__ __volatile__(   "outl   %0,   %%dx   \n\t"
            "mfence         \n\t"
            :
            :"a"(val),"d"(port)
            :"memory");
}

typedef struct
{
    uint32_t command;  /* command/status uint32_t */
    uint32_t vlan;     /* currently unused */
    uint32_t low_buf;  /* low 32-bits of physical buffer address */
    uint32_t high_buf; /* high 32-bits of physical buffer address */
}Descriptor;


typedef struct
{
    uint32_t     base_io;
    int          IRQ;
    BYTE         mac_address[6];
    int          Cur_tx;
    int          Cur_rx;
    Descriptor*  rx_desc;
    Descriptor*  tx_desc;
    uint8_t*     rx_buffer;
    uint8_t*     tx_buffer;
    uint16_t     status;
    #if USE_SEMA
    sys_sem_t sem_rx;
    #else
    rtems_id    rx_msgbox;
    #endif
}rtl8169_nic;


uint32_t rtl8168_recv_packet(rtl8169_nic* nic, unsigned char* buff);
void rtl8168_send_packet(rtl8169_nic* nic, unsigned char* buff, int len, uint32_t flags);
void rtl8168_send_NPQ(rtl8169_nic* nic);
void rtl8168_reset(rtl8169_nic* nic);

extern rtl8169_nic rtl[2];



Code:

extern void* aligned_malloc(size_t required_bytes, size_t alignment);
extern void aligned_free(void *p2) ;


rtl8169_nic rtl[2];




void realse_sem(void* ignored);

void setup_rx_descriptors(rtl8169_nic* nic)
{
    /* rx_buffer_len is the size (in bytes) that is reserved for incoming packets */
    nic->rx_desc = (Descriptor *)aligned_malloc(sizeof(Descriptor)*RX_DES_LEN, 256);
    nic->rx_buffer = malloc(RX_DES_LEN * BUFFER_SIZE);
    memset(nic->rx_desc, 0, sizeof(Descriptor)*RX_DES_LEN);
    memset(nic->rx_buffer, 0, RX_DES_LEN * BUFFER_SIZE);
    int i;
    for(i = 0; i < RX_DES_LEN; i++) /* num_of_rx_descriptors can be up to 1024 */
    {
        if(i == (RX_DES_LEN - 1)) /* Last descriptor? if so, set the EOR bit  | (0x7FF0000)*/
            nic->rx_desc[i].command = (OWN | EOR | (BUFFER_SIZE | 0x3FFF) );
        else
            nic->rx_desc[i].command = (OWN | (BUFFER_SIZE | 0x3FFF) );

        /** packet_buffer_address is the *physical* address for the buffer */
        nic->rx_desc[i].low_buf = (uint32_t)(nic->rx_buffer + i*BUFFER_SIZE);
        nic->rx_desc[i].high_buf = 0;
        /* If you are programming for a 64-bit OS, put the high memory location in the 'high_buf' descriptor area */
    }
}

void setup_tx_descriptors(rtl8169_nic* nic)
{
    nic->tx_desc = (Descriptor *)aligned_malloc(sizeof(Descriptor)*TX_DES_LEN, 256);
    nic->tx_buffer = malloc(TX_DES_LEN * BUFFER_SIZE);
    memset(nic->tx_desc, 0, sizeof(Descriptor)*TX_DES_LEN);
    memset(nic->tx_buffer, 0, TX_DES_LEN * BUFFER_SIZE);
    int i;
    for(i = 0; i < TX_DES_LEN; i++) /* num_of_tx_descriptors can be up to 1024 */
    {
        if(i == (TX_DES_LEN - 1)) /* Last descriptor? if so, set the EOR bit */
            nic->tx_desc[i].command = (EOR | (BUFFER_SIZE | 0x3FFF));
        else
            nic->tx_desc[i].command = ((BUFFER_SIZE | 0x3FFF));

        /** packet_buffer_address is the *physical* address for the buffer */
        nic->tx_desc[i].low_buf = (uint32_t)(nic->tx_buffer + i*BUFFER_SIZE);
        nic->tx_desc[i].high_buf = 0;
        /* If you are programming for a 64-bit OS, put the high memory location in the 'high_buf' descriptor area */
    }   
}

void rtl8168_reset(rtl8169_nic* nic)
{
    unsigned int i;
    uint32_t ioaddr = nic->base_io;   
    rtems_status_code sc;
    #if USE_SEMA
    if(sys_sem_new(&nic->sem_rx, 0) == ERR_OK)
        printk("sem created ok\n");
    #else
    //create msgbox
   
    sc = rtems_message_queue_create(
        rtems_build_name('R', 'M', 'S', 'G'),
        512,
        sizeof(void*),
        RTEMS_DEFAULT_ATTRIBUTES,
        &nic->rx_msgbox);
    #endif

    sc = rtems_interrupt_handler_install(
      nic->IRQ,
      "lwip rx",
     RTEMS_INTERRUPT_SHARED,
     realse_sem,
      (void*)nic);

   if(sc != RTEMS_SUCCESSFUL)
   {
      LOGMSG("lwip install isr falied,%s\n", rtems_status_text(sc));
      return ;
   } 

    outportb(ioaddr + 0x37, 0x10); /* Send the Reset bit to the Command register */
    while(inportb(ioaddr + 0x37) & 0x10){} /* Wait for the chip to finish resetting */

    for (i = 0; i < 6; i++)
        nic->mac_address[i] = inportb(ioaddr + i);

    setup_tx_descriptors(nic);
    setup_rx_descriptors(nic);
    outportb(ioaddr + 0x50, 0xC0); /* Unlock config registers */

    //init rx
    outportl(ioaddr + 0x44, 0xE71F); /* RxConfig = RXFTH: unlimited, MXDMA: unlimited, AAP: set (promisc. mode set) 0x0000E70F */
    outportw(ioaddr + 0xDA, 0x1FFF); /* Max rx packet size */
    outportl(ioaddr + 0xE4, (unsigned long)&nic->rx_desc[0]); /* Tell the NIC where the first Rx descriptor is. NOTE: If writing a 64-bit address, split it into two 32-bit writes.*/
    outportl(ioaddr + 0xE8, 0);

    //init tx
    outportb(ioaddr + 0x37, 0x04); /* Enable Tx in the Command register, required before setting TxConfig */
    outportb(ioaddr + 0xEC, 0x3F); //no early transmit
    outportl(ioaddr + 0x40, 0x03000700); /* TxConfig = IFG: normal, MXDMA: unlimited */
    outportl(ioaddr + 0x20, (unsigned long)&nic->tx_desc[0]); /* Tell the NIC where the first Tx descriptor is. NOTE: If writing a 64-bit address, split it into two 32-bit writes.*/
    outportl(ioaddr + 0x24, 0);   
    outportl(ioaddr + 0x28, 0);
    outportl(ioaddr + 0x2C, 0);

    outportb(ioaddr + 0x37, 0x0C); /* Enable Rx/Tx in the Command register */
    outportb(ioaddr + 0x50, 0x00); /* Lock config registers */

    /* enable rx interrupts */
    outportw(ioaddr + 0x3C, 0xFFFF);   

    uint32_t hwrev = inportl(ioaddr + 0x40);
    uint8_t rev = ((hwrev >> 25) & 0x3E) | ((hwrev >> 23) & 0x1);
    printk("HWRev=0x%x, 0x%x\n", rev, hwrev);
}

void realse_sem(void* ignored)
{
    rtl8169_nic* nic = (rtl8169_nic*)ignored;
    struct pbuf *p;
    nic->status = inportw(nic->base_io + 0x3E);
   
    if((nic->status & 1) == 1)
    {   
        #if USE_SEMA
        //outportw(nic->base_io + 0x3C, 0);
        sys_sem_signal(&nic->sem_rx);
        #else
        while(p = low_level_input(nic))
        {
            rtems_status_code sc = rtems_message_queue_send(
                nic->rx_msgbox, ( void * )&p, sizeof(p) );
            if(sc != RTEMS_SUCCESSFUL)   
            {
                printk("send rx msg failed:%s\n", rtems_status_text(sc));
            }
        }   
        #endif     
    }

    outportw(nic->base_io + 0x3E, nic->status);
   
    if(nic->status & 0x70)
    {
        printk("status=0x%x\n", nic->status);
    }

}



uint32_t rtl8168_recv_packet(rtl8169_nic* nic, unsigned char* buff)
{
    int frames = 0;
    int total_len = 0;
    uint32_t status;

    do
    {
        status = (nic->rx_desc[nic->Cur_rx].command & (OWN | FS | LS));
        if((status & OWN) == OWN)
        {
            //printk("no packets\n");
            break;
        }
           
        #if DEBUG_RTL
            printk("RX cmd=0x%x\n", status);
        #endif   
        if(status == (FS | LS))
        {   
            int len = nic->rx_desc[nic->Cur_rx].command & 0x3FFF;
            memcpy(buff, nic->rx_desc[nic->Cur_rx].low_buf, len);
            nic->rx_desc[nic->Cur_rx].command |= OWN; 
            buff += len;
            total_len += len;
            nic->Cur_rx++;
            nic->Cur_rx %= RX_DES_LEN;
            frames++;
            break;
        }
        else if(status == FS)
        {   
            int len = nic->rx_desc[nic->Cur_rx].command & 0x3FFF;
            memcpy(buff, nic->rx_desc[nic->Cur_rx].low_buf, len);
            nic->rx_desc[nic->Cur_rx].command |= OWN; 
            buff += len;
            total_len += len;
            nic->Cur_rx++;
            nic->Cur_rx %= RX_DES_LEN;
            frames++;
            //printk("FS:%d\n", len);
         }
        else if(status == LS)
        {
            int len = nic->rx_desc[nic->Cur_rx].command & 0x3FFF;
            memcpy(buff, nic->rx_desc[nic->Cur_rx].low_buf, len);
            nic->rx_desc[nic->Cur_rx].command |= OWN; 
            total_len += len;
            nic->Cur_rx++;
            nic->Cur_rx %= RX_DES_LEN;
            frames++;
            //printk("LS:%d\n", len);
            break; 
        }
        else if(status == 0)
        {
            int len = nic->rx_desc[nic->Cur_rx].command & 0x3FFF; 
            memcpy(buff, nic->rx_desc[nic->Cur_rx].low_buf, len);
            nic->rx_desc[nic->Cur_rx].command |= OWN; 
            buff += len;
            total_len += len;
            nic->Cur_rx++;
            nic->Cur_rx %= RX_DES_LEN;
            frames++;
            //printk("MID:%d\n", len);
        }
        else
        {
            nic->rx_desc[nic->Cur_rx].command |= OWN; 
            nic->Cur_rx++;
            nic->Cur_rx %= RX_DES_LEN;
            printk("RX unavailable:0x%x\n", status);
        }
         

    }while(1);   

    #if 0
    if(frames>1)
        printk("recv frames=%d,len=%d\n", frames++, total_len);
    #endif   
       
    #if DEBUG_RTL
    printk("RX finised:%d\n", nic->Cur_rx);
    #endif
    return total_len;
   
}

void rtl8168_send_packet(rtl8169_nic* nic, unsigned char* buff, int len, uint32_t flags)
{

    if(nic->tx_desc[nic->Cur_tx].command & OWN)
    {
        #if 1
        printk("TX unavaiable:%d\n", nic->Cur_tx);
        #endif   
    }

    memcpy(nic->tx_desc[nic->Cur_tx].low_buf, buff, len);
    nic->tx_desc[nic->Cur_tx].command = (OWN | flags | IPCS | UDPCS | TCPCS | len );
    if(nic->Cur_tx == TX_DES_LEN - 1)
        nic->tx_desc[nic->Cur_tx].command |= EOR;
    nic->Cur_tx++;
    nic->Cur_tx %= TX_DES_LEN;
    //outportb(nic->base_io + 0x38, 0x40);
    #if DEBUG_RTL
    printk("TX finised:%d\n", nic->Cur_tx);
    #endif
}

void rtl8168_send_NPQ(rtl8169_nic* nic)
{
   
    //while(inportb(nic->base_io + 0x38) & 0x40){}

    outportb(nic->base_io + 0x38, 0x40);

    //while(inportb(nic->base_io + 0x38) & 0x40){}
}


Top
 Profile  
 
 Post subject: Re: rtl8169 descriptor problem
PostPosted: Thu Nov 23, 2023 7:18 am 
Offline
Member
Member

Joined: Sat Mar 10, 2018 10:16 am
Posts: 296
marcrew wrote:
- whenever I send one packet ,there always be an interrupt status 0x84 coming. Datasheet says 8 means tx descriptor unavailable, and 4 means tx ok. But I dont understand how to fix tx descriptor unavailable, because the packet is sent successfully.

This also happens in my driver, so I do not know how to remove it, but packets are sended successfully even with bit 0x80 set.
marcrew wrote:
- for Transmit Priority Polling register, should I check the NPQ bit is 0 before or after set this bit? When I am enable the checking , it will never get out of the while after send a lot of packets. But if I dont check it. sending packet will be fine.

If you want to check for this bit, you should do it after sending packets. This is what is in datasheet:
Code:
Normal Priority Queue polling: Writing a ‘1’ to this bit will notify the RTL8169 that there is a normal priority packet(s) waiting to be transmitted. The RTL8169 will clear this bit automatically after all normal priority packets have been transmitted.

But you really do not need to do it. Just set it and wait for interrupt to be fired.
marcrew wrote:
- If I receive the packet in the ISR, one packet will be divided to 2 or 3 descriptors. But if I receive the packet in the task, one packet will be divided to at most few hundreds descriptors. And after some time, the interrupt status 0x50 will happen. it means RX descriptor unavailabe and RX buffer Overflow. what should I do if the sender send a lot of data in the very short

This is very interesting. How long are packets you are receiving and what is thier content? Normal packets should not be divided into more descriptors.

From what I looked into your code nothing jumped on me, but I did not take a really deep look, so I probably missed something. We definitely need more debugging to find out what is causing this.

_________________
https://github.com/VendelinSlezak/BleskOS


Top
 Profile  
 
 Post subject: Re: rtl8169 descriptor problem
PostPosted: Thu Nov 23, 2023 8:35 pm 
Offline

Joined: Thu May 04, 2023 7:54 pm
Posts: 7
thansk Klakap for the reply

the 3rd issue is fixed, it was my mistake. I init the rx descriptor buffer length use ' | ' with 0x3FFF, it should be using '&' . and for sencod, whenever received one packet, I should init the rx descriptor again.

but for issue 1 I still dont know how to fix it. anyway, my driver looks like fine now. It nowwork with lwip very well. But I am afraid there is some bug with tx descriptor unavailabe issue left.

for issue 2, whenever I check the NPQ bit or not. it will send packets successfully anyway. So I decide not to check it.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 21 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group