rtl8169.h 1.3 KB

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