lab7 network

network

e100的数据手册又臭又长,只是为了完成本题目,建议简单了解一下它推荐的章节,它为啥那样初始化,然后看hints就好了。否则容易事倍功半

实验结果

实验

#include "types.h"
#include "param.h"
#include "memlayout.h"
#include "riscv.h"
#include "spinlock.h"
#include "proc.h"
#include "defs.h"
#include "e1000_dev.h"
#include "net.h"

#define TX_RING_SIZE 16
static struct tx_desc tx_ring[TX_RING_SIZE] __attribute__((aligned(16)));
static struct mbuf *tx_mbufs[TX_RING_SIZE];

#define RX_RING_SIZE 16
static struct rx_desc rx_ring[RX_RING_SIZE] __attribute__((aligned(16)));
static struct mbuf *rx_mbufs[RX_RING_SIZE];

// remember where the e1000's registers live.
static volatile uint32 *regs;

struct spinlock e1000_lock;

// called by pci_init().
// xregs is the memory address at which the
// e1000's registers are mapped.
void
e1000_init(uint32 *xregs)
{
  int i;

  initlock(&e1000_lock, "e1000");

  regs = xregs;

  // Reset the device
  regs[E1000_IMS] = 0; // disable interrupts
  regs[E1000_CTL] |= E1000_CTL_RST;
  regs[E1000_IMS] = 0; // redisable interrupts
  __sync_synchronize();

  // [E1000 14.5] Transmit initialization
  memset(tx_ring, 0, sizeof(tx_ring));
  for (i = 0; i < TX_RING_SIZE; i++) {
    tx_ring[i].status = E1000_TXD_STAT_DD;
    tx_mbufs[i] = 0;
  }
  regs[E1000_TDBAL] = (uint64) tx_ring;
  if(sizeof(tx_ring) % 128 != 0)
    panic("e1000");
  regs[E1000_TDLEN] = sizeof(tx_ring);
  regs[E1000_TDH] = regs[E1000_TDT] = 0;
  
  // [E1000 14.4] Receive initialization
  memset(rx_ring, 0, sizeof(rx_ring));
  for (i = 0; i < RX_RING_SIZE; i++) {
    rx_mbufs[i] = mbufalloc(0);
    if (!rx_mbufs[i])
      panic("e1000");
    rx_ring[i].addr = (uint64) rx_mbufs[i]->head;
  }
  regs[E1000_RDBAL] = (uint64) rx_ring;
  if(sizeof(rx_ring) % 128 != 0)
    panic("e1000");
  regs[E1000_RDH] = 0;
  regs[E1000_RDT] = RX_RING_SIZE - 1;
  regs[E1000_RDLEN] = sizeof(rx_ring);

  // filter by qemu's MAC address, 52:54:00:12:34:56
  regs[E1000_RA] = 0x12005452;
  regs[E1000_RA+1] = 0x5634 | (1<<31);
  // multicast table
  for (int i = 0; i < 4096/32; i++)
    regs[E1000_MTA + i] = 0;

  // transmitter control bits.
  regs[E1000_TCTL] = E1000_TCTL_EN |  // enable
    E1000_TCTL_PSP |                  // pad short packets
    (0x10 << E1000_TCTL_CT_SHIFT) |   // collision stuff
    (0x40 << E1000_TCTL_COLD_SHIFT);
  regs[E1000_TIPG] = 10 | (8<<10) | (6<<20); // inter-pkt gap

  // receiver control bits.
  regs[E1000_RCTL] = E1000_RCTL_EN | // enable receiver
    E1000_RCTL_BAM |                 // enable broadcast
    E1000_RCTL_SZ_2048 |             // 2048-byte rx buffers
    E1000_RCTL_SECRC;                // strip CRC
  
  // ask e1000 for receive interrupts.
  regs[E1000_RDTR] = 0; // interrupt after every received packet (no timer)
  regs[E1000_RADV] = 0; // interrupt after every packet (no timer)
  regs[E1000_IMS] = (1 << 7); // RXDW -- Receiver Descriptor Write Back
}

int
e1000_transmit(struct mbuf *m)
{
  //
  // Your code here.
  //
  // the mbuf contains an ethernet frame; program it into
  // the TX descriptor ring so that the e1000 sends it. Stash
  // a pointer so that it can be freed after sending.
  //


  static uint32 Index = 0;
  static struct mbuf* LastMbuf = 0;
  static uint8 Staus;
  
  acquire(&e1000_lock);

  Index = regs[E1000_TDT];
  Staus = tx_ring[Index].status;
  
  if ((Staus & E1000_TXD_STAT_DD) == 0)
  {
    release(&e1000_lock);
    return -1;
  }

  if (LastMbuf != 0)
  {
    mbuffree(LastMbuf);
  }
  tx_ring[Index].addr = (uint64)m->head;
  tx_ring[Index].length = m->len;
  tx_ring[Index].cmd = (0x1 << 3) | (0x1 << 0); //置位end,rs位
  LastMbuf = m;
  regs[E1000_TDT] = (Index + 1) % TX_RING_SIZE;

  release(&e1000_lock);
  
  return 0;
}

static void
e1000_recv(void)
{
  //
  // Your code here.
  //
  // Check for packets that have arrived from the e1000
  // Create and deliver an mbuf for each packet (using net_rx()).
  //

  static uint32 Index = 0;
  static struct rx_desc* TheRxDescP = {0};

  Index = (regs[E1000_RDT] + 1) % RX_RING_SIZE;
  TheRxDescP =  &rx_ring[Index];

  
  while(TheRxDescP->status & E1000_RXD_STAT_DD)
  {
    acquire(&e1000_lock);

    struct mbuf *buf = rx_mbufs[Index];
    mbufput(buf, TheRxDescP->length);
    
    rx_mbufs[Index] = mbufalloc(0);
    if (!rx_mbufs[Index])
    {
      panic("mbuf alloc failed");
    }
    TheRxDescP->addr = (uint64) rx_mbufs[Index]->head;
    TheRxDescP->status = 0;

    regs[E1000_RDT] = Index;
    

    release(&e1000_lock);

    net_rx(buf);
    
    Index = (regs[E1000_RDT] + 1) % RX_RING_SIZE;
    TheRxDescP = &rx_ring[Index];
  }


}


/** 
 * @brief 这个是Receiver Timer Interrup中断,初始化只开启了receiver timer interrupt中断
 * @note regs[E1000_ICR] = 0xffffffff;这个的意思是清除中断,详细见,读该寄存器会清除,写也会。
 * @note 不太确定,初始化time 让接收中断一产生就立即有标志位
*/
void
e1000_intr(void)
{
  // tell the e1000 we've seen this interrupt;
  // without this the e1000 won't raise any
  // further interrupts.
  regs[E1000_ICR] = 0xffffffff;

  e1000_recv();
}
posted @ 2025-01-25 16:33  我们的歌谣  阅读(19)  评论(0)    收藏  举报