RTL8169: Difference between revisions

934 bytes added ,  26 days ago
m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
m (Bot: Replace deprecated source tag with syntaxhighlight)
 
(21 intermediate revisions by 14 users not shown)
Line 1:
{{Stub}}
 
'''Programming Guide for the RTL8169(S)-32/64 Network Interface Chipsets'''
 
The RTL8169 is Realtek's next generation of high-performance network cards. This particular chipset is designed to operate at 10/100/1000 Mbps speeds.
 
== Identification ==
The basic interface for the RTL8169 series is common in several Realtek network cards. This applies to the following noncomprehensive list of PCI Vendor and Device IDs from FreeBSD's re driver:
* 10ec:8161
* 10ec:8168
* 10ec:8169
* 1259:c107
* 1737:1032
* 16ec:0116
 
== Basic Startup ==
Line 9 ⟶ 16:
=== Get the MAC Address ===
 
First thing'sthings first, we need to get the NIC's physical MAC address. Normally we should go through the EEPROM to access the MAC address, but in this case we will take a shortcut and obtain the address from the MAC0-6 registers. The MAC registers start at offset 0x00 and should be accessed in 8-bit segments.
 
ex:
<syntaxhighlight lang="c">
char i;
for (i = 0; i < 6; i++)
{
{ mac_address[i] = inportb(ioaddr + i);} /*ioaddr is the base address obtainable from the PCI device configuration space.*/
}
</syntaxhighlight>
 
=== Reset the Chip ===
 
It is necessary to reset the RTL8169 to put the registers in a known default state, as well as begin powering up the chip. We need to send the reset command to Chip Command register at offset 0x37. The reset bit is at offset 0x10, therefortherefore we need to do an 'outportb' using those offsets to tell the chip to begin the resetting process. Once we have sent that command, it will take some time for the chip to complete the operation, and because it is altering registers we should stop all further writes/reads to registers until it has completed. The reset bit in the Command Register will self-clear once the operation is finished, that's what we should check for before proceeding setting up the chip.
 
ex:
<syntaxhighlight lang="c">
outportb(ioaddr + 0x37, 0x10); /*set the Reset bit (0x10) to the Command Register (0x37)*/
while(inportb(ioaddr + 0x37) & 0x10){} /*setting a timeout could be useful if the card is problematic*/
;/*setting a timeout could be useful if the card is problematic*/
</syntaxhighlight>
 
== Setting up the Rx Descriptors ==
One of the new features introduced with this new-gen chip is that it is completely desriptordescriptor-based. The chip supports up to 3 unique descriptor sets with 1024 desriptorsdescriptors available per set; 1024 for recievingreceiving packets, 1024 for normal transmission, and 1024 for high-priority transmission packets. It is not required to use all of the descriptors per set, or even use all three sets. Each descriptor is 16-bytes wide and contains a 64-bit buffer address (to store data for transmission or to tell the reception process where to dump the data) and Command double-worduint32_t.
 
Rx Descriptors are used to tell the NIC where to put packets once recievedreceived. Because this is an asyncronousasynchronous operation, we must setup the descriptors before we enable the reception of packets so that the NIC knows where to put things. A major function of descriptors is to tell the NIC which descriptors are owned by the OS (host) and which ones are owned by the NIC. If the descriptor is owned by the NIC, the NIC can then read it and use it for the next packet it recievesreceives, if not, it either skips over it or sends a RDU (Rx Descriptor Unavailable) interrupt and halts all further Rx operations. Because there can be multiple descriptors used, there is also a EOR (End of Rx descriptor Ring) bit used when the NIC has reached the end of the descriptors and needs to loop back to the beginning of the descriptors. There is one more big 'gotcha' with all of this, the beginning of the descriptor arrays must be aligned on a 256-byte boundary.
 
====Descriptor format====
Rx Descriptors are used to tell the NIC where to put packets once recieved. Because this is an asyncronous operation, we must setup the descriptors before we enable the reception of packets so that the NIC knows where to put things. A major function of descriptors is to tell the NIC which descriptors are owned by the OS (host) and which ones are owned by the NIC. If the descriptor is owned by the NIC, the NIC can then read it and use it for the next packet it recieves, if not, it either skips over it or sends a RDU (Rx Descriptor Unavailable) interrupt and halts all further Rx operations. Because there can be multiple descriptors used, there is also a EOR (End of Rx descriptor Ring) bit used when the NIC has reached the end of the descriptors and needs to loop back to the beginning of the descriptors. There is one more big 'gotcha' with all of this, the beginning of the descriptor arrays must be aligned on a 256-byte boundary.
{| {{wikitable}}
! Offset
! Name
! Description
|-
| dword 0 || Flags || 31 bit=OWN (if set, card own this descriptor) 30 bit=EOR (last descriptor in list)
|-
| dword 1 || VLAN || Unused
|-
| dword 2 || Pointer to buffer low 32 bits ||
|-
| dword 3 || Pointer to buffer high 32 bits ||
|-
|}
 
====Code example====
eg:
<syntaxhighlight lang="c">
struct Descriptor {
{
unsigned intuint32_t command,; /* command/status dworduint32_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 */
};
Line 44 ⟶ 74:
{
/* rx_buffer_len is the size (in bytes) that is reserved for incoming packets */
unsigned int OWN = 0x80000000, EOR = 0x40000000; /* bitBit offsets */
int i;
for(i = 0; i < num_of_rx_descriptors; i++) /* num_of_rx_descriptors can be up to 1024 */
{
if(i == (num_of_rx_descriptors - 1)) /* lastLast descriptor? if so, set the EOR bit */
{ Rx_Descriptors[i].command = (OWN | EOR | (rx_buffer_len & 0x3FFF));}
else
{ Rx_Descriptors[i].command = (OWN | (rx_buffer_len & 0x3FFF));}
/* VLAN adjustments are not part of this guide at the moment - leave as zeros for normal operation */
Rx_Descriptors[i].low_buf = (unsigned int)&packet_buffer_address; /* thisThis is where the packet data will go */
/* ifIf you are programming for a 64-bit OS, put the high memory location in the 'high_buf' descriptor area */
}
}
</syntaxhighlight>
 
== Configuring RxConfig and TxConfig ==
Line 66 ⟶ 97:
 
eg:
<syntaxhighlight lang="c">
outportl(ioaddr + 0x40, 0x03000700); /* IFG: normal, MXDMA: unlimited */
</syntaxhighlight>
 
=== RxConfig ===
The RecieveReceive Configuration register is at offset 0x44 and contains the configuration data for things such as DMA thresholds, FIFO thresholds, and packet reception rules. The RXFTH bits are used for setting the Rx Fifo Threshold. This threshold determines how much data is required in the buffers to begin telling the host OS that there is data ready. I normally set this to unlimited data as it means that the NIC will tell the OS that data is ready as soon as a full packet is in the on-card FIFO buffer. The MXDMA is based off the same explanation given for the Tx MXDMA. I set the MXDMA to unlimited. The AB/AM/APM/AAP bits are used for setting packet filters. I usually set this to a promiscouspromiscuous mode with all of the previous bits set to allow the card to recievereceive and process any packets that physically reach the NIC.
 
eg:
<syntaxhighlight lang="c">
outportl(ioaddr + 0x44, 0x0000E70F) /* RXFTH: unlimited, MXDMA: unlimited, AAP: set (promisc. mode set) */
</syntaxhighlight>
 
== Max Packet Sizes ==
=== Max Transmit Packet Size ===
The MTPS register is located at offset 0xEC and is used for setting the maximum packet size that can be transmitted from the RTL8169. The maxmaximum value that we can provide here is 0x3B. That value is enough to cover 'jumbo' packets and still allow for a stable FIFO operation (no underruns). This value can be set lower if need be, but for normal usage the maxmaximum value is fine.
 
eg:
<syntaxhighlight lang="c">
outportb(ioaddr + 0xEC, 0x3B); /* maxMaximum tx packet size */
 
</syntaxhighlight>
=== Receive Packet Maximum Size ===
The RMS register is located at offset 0xDA and is used for setting the maximum packet size that can be recievedreceived into the NIC. If set to zero, the NIC will accept no packets (must be set prior to normal operation!). The maxmaximum size that can be set is 0x3FFF (16k - 1), but if a packet larger than 8k is recievedreceived error bits are set and a lengthier process must be started in order to determine if the packet is actually good or not. I keep this value to 0x1FFF (8k - 1) as it is rare to recievereceive such large packets and it also ensures that error packets are actually error packets and not false positives.
 
eg:
<syntaxhighlight lang="c">
outportw(ioaddr + 0xDA, 0x1FFF); /* maxMaximum rx packet size */
 
</syntaxhighlight>
== Full Reset Example ==
This is a barebones example of how to reset the RTL8169 without anything like auto-negotiation (explained later) or (G)MII interactions.
 
eg:
<syntaxhighlight lang="c">
struct Descriptor
{
unsigned intuint32_t command,; /* command/status dworduint32_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 */
};
 
/**
* Note that this assumes 16*1024=16KB (4 pages) of physical memory at 1MB and 2MB is identity mapped to
* the same linear address range
*/
struct Descriptor *Rx_Descriptors = (struct Descriptor *)0x100000; /* 1MB Base Address of Rx Descriptors */
struct Descriptor *Tx_Descriptors = (struct Descriptor *)0x200000; /* 2MB Base Address of Tx Descriptors */
Line 111 ⟶ 152:
for(i = 0; i < num_of_rx_descriptors; i++) /* num_of_rx_descriptors can be up to 1024 */
{
if(i == (num_of_rx_descriptors - 1)) /* lastLast descriptor? if so, set the EOR bit */
{ Rx_Descriptors[i].command = (OWN | EOR | (rx_buffer_len & 0x3FFF));}
else
{ Rx_Descriptors[i].command = (OWN | (rx_buffer_len & 0x3FFF));}
 
Rx_Descriptors[i].low_buf = (unsigned int)&packet_buffer_address; /* this is where the packet data will go */
/** packet_buffer_address is the *physical* address for the buffer */
/* if you are programming for a 64-bit OS, put the high memory location in the 'high_buf' descriptor area */
Rx_Descriptors[i].low_buf = (unsigned int)&packet_buffer_address; /* this is where the packet data will go */
Rx_Descriptors[i].high_buf = 0;
/* ifIf you are programming for a 64-bit OS, put the high memory location in the 'high_buf' descriptor area */
}
}
Line 125 ⟶ 169:
unsigned char mac_address[6];
outportb(ioaddr + 0x37, 0x10); /* sendSend the Reset bit to the Command register */
while(inportb(ioaddr + 0x37) & 0x10){} /* waitWait for the chip to finish resetting */
for (i = 0; i < 6; i++)
{ mac_address[i] = inportb(ioaddr + i);}
setup_rx_descriptors();
outportb(ioaddr + 0x50, 0xC0); /* unlockUnlock config registers */
outportl(ioaddr + 0x44, 0x0000E70F); /* RxConfig = RXFTH: unlimited, MXDMA: unlimited, AAP: set (promisc. mode set) */
outportb(ioaddr + 0x37, 0x04); /* Enable Tx in the Command register, required before setting TxConfig */
outportl(ioaddr + 0x40, 0x03000700); /* TxConfig = IFG: normal, MXDMA: unlimited */
outportw(ioaddr + 0xDA, 0x1FFF); /* maxMax rx packet size */
outportb(ioaddr + 0xEC, 0x3B); /* max tx packet size */
/* offset 0x20 == Transmit Descriptor Start Address Register
offset 0xE4 == Receive Descriptor Start Address Register */
outportl(ioaddr + 0x20, (unsigned long)&Tx_Descriptors[0]; /* tell the NIC where the first Tx descriptor is */
Again, these are *physical* addresses. This code assumes physical==linear, this is
outportl(ioaddr + 0xE4, (unsigned long)&Rx_Descriptors[0]; /* tell the NIC where the first Rx descriptor is */
typically not the case in real world kernels
*/
outportl(ioaddr + 0x20, (unsigned long)&Tx_Descriptors[0]; /* tellTell the NIC where the first Tx descriptor is. NOTE: If writing a 64-bit address, split it into two 32-bit writes.*/
outportl(ioaddr + 0xE4, (unsigned long)&Rx_Descriptors[0]; /* tellTell the NIC where the first Rx descriptor is. NOTE: If writing a 64-bit address, split it into two 32-bit writes.*/
outportb(ioaddr + 0x37, 0x0C); /* enableEnable Rx/Tx in the Command register */
outportb(ioaddr + 0x50, 0x00); /* lockLock config registers */
}
</syntaxhighlight>
 
-------------------------------------------
szh appended at 2009-2-9:
Thanks to this article, it helped a lot on developping my OS. but there seems to be some problems on the initilize squences of 8169 chip. I tryed the squences as decribed in the article that:
1, write 0x0000E70F to RxConfig(ioaddr+0x44) and 0x03000700 to TxConfig(ioaddr+0x40)
2, enable Rx/TX
But I found the values I read from RxConfig/TxConfig are not what I wrote until I change the squence to:
1, enable Rx/TX
2, write 0x0000E70F to RxConfig(ioaddr+0x44) and 0x03000700 to TxConfig(ioaddr+0x40)
Is there something wrong with this article/ the chip? Or just my fault?
 
== External Links ==
 
* http://wwwrealtek.magnesium.netinfo/~wpaulpdf/rt/RTL8110S_8169S_DataSheet_1.3rtl8169s.pdf, Datasheet for the RTL8169S and RTL8110S chpsetschipsets.
 
[[Category:Network devicesHardware]]
[[Category:Standards]]