rtl8169.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2008 Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  4. */
  5. #define PCIREG_8(_adr) (*(volatile unsigned char *)(_adr))
  6. #define PCIREG_32(_adr) (*(volatile unsigned long *)(_adr))
  7. #define PCI_PAR PCIREG_32(0xfe0401c0)
  8. #define PCI_PDR PCIREG_32(0xfe040220)
  9. #define PCI_CR PCIREG_32(0xfe040100)
  10. #define PCI_CONF1 PCIREG_32(0xfe040004)
  11. #define HIGH 1
  12. #define LOW 0
  13. #define PCI_PROG 0x80
  14. #define PCI_EEP_ADDRESS (unsigned short)0x0007
  15. #define PCI_MAC_ADDRESS_SIZE 3
  16. #define TIME1 100
  17. #define TIME2 20000
  18. #define BIT_DUMMY 0
  19. #define MAC_EEP_READ 1
  20. #define MAC_EEP_WRITE 2
  21. #define MAC_EEP_ERACE 3
  22. #define MAC_EEP_EWEN 4
  23. #define MAC_EEP_EWDS 5
  24. /* RTL8169 */
  25. const unsigned short EEPROM_W_Data_8169_A[] = {
  26. 0x8129, 0x10ec, 0x8169, 0x1154, 0x032b,
  27. 0x4020, 0xa101
  28. };
  29. const unsigned short EEPROM_W_Data_8169_B[] = {
  30. 0x4d15, 0xf7c2, 0x8000, 0x0000, 0x0000, 0x1300,
  31. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  32. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2000,
  33. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  34. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  35. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  36. 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
  37. };