Commit 3090bd9a authored by Hayes Wang's avatar Hayes Wang Committed by Francois Romieu

r8169: define the early size for 8111evl

For RTL8111EVL, the register of MaxTxPacketSize doesn't acctually
limit the tx size. It influnces the feature of early tx.
Signed-off-by: default avatarHayes Wang <hayeswang@realtek.com>
parent 8decf868
...@@ -311,6 +311,7 @@ enum rtl_registers { ...@@ -311,6 +311,7 @@ enum rtl_registers {
MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */ MaxTxPacketSize = 0xec, /* 8101/8168. Unit of 128 bytes. */
#define TxPacketMax (8064 >> 7) #define TxPacketMax (8064 >> 7)
#define EarlySize 0x27
FuncEvent = 0xf0, FuncEvent = 0xf0,
FuncEventMask = 0xf4, FuncEventMask = 0xf4,
...@@ -4479,7 +4480,7 @@ static void rtl_hw_start_8168e_2(void __iomem *ioaddr, struct pci_dev *pdev) ...@@ -4479,7 +4480,7 @@ static void rtl_hw_start_8168e_2(void __iomem *ioaddr, struct pci_dev *pdev)
rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00, rtl_w1w0_eri(ioaddr, 0x0d4, ERIAR_MASK_0011, 0x0c00, 0xff00,
ERIAR_EXGMAC); ERIAR_EXGMAC);
RTL_W8(MaxTxPacketSize, 0x27); RTL_W8(MaxTxPacketSize, EarlySize);
rtl_disable_clock_request(pdev); rtl_disable_clock_request(pdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment