dm9161.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #ifndef __DM9000_H__
  2. #define __DM9000_H__
  3. /*MACRO DEFINATIONS*/
  4. #define SEP4020_ID_EMAC ((unsigned int) 28) // Ethernet Mac
  5. /* Davicom 9161 PHY */
  6. #define MII_DM9161_ID 0x0181b880
  7. #define MII_DM9161A_ID 0x0181b8a0
  8. /* Davicom specific registers */
  9. #define MII_DSCR_REG 16
  10. #define MII_DSCSR_REG 17
  11. #define MII_DSINTR_REG 21
  12. /* Intel LXT971A PHY */
  13. #define MII_LXT971A_ID 0x001378E0
  14. /* Intel specific registers */
  15. #define MII_ISINTE_REG 18
  16. #define MII_ISINTS_REG 19
  17. #define MII_LEDCTRL_REG 20
  18. /* Realtek RTL8201 PHY */
  19. #define MII_RTL8201_ID 0x00008200
  20. /* Broadcom BCM5221 PHY */
  21. #define MII_BCM5221_ID 0x004061e0
  22. /* Broadcom specific registers */
  23. #define MII_BCMINTR_REG 26
  24. /* National Semiconductor DP83847 */
  25. #define MII_DP83847_ID 0x20005c30
  26. /* Altima AC101L PHY */
  27. #define MII_AC101L_ID 0x00225520
  28. /* Micrel KS8721 PHY */
  29. #define MII_KS8721_ID 0x00221610
  30. /* ........................................................................ */
  31. #define MAX_RBUFF_SZ 0x600 /* 1518 rounded up */
  32. #define MAX_RX_DESCR 20 /* max number of receive buffers */
  33. #define MAX_TBUFF_SZ 0x600 /* 1518 rounded up */
  34. #define MAX_TX_DESCR 20 /* max number of receive buffers */
  35. #define EMAC_DESC_DONE 0x00000001 /* bit for if DMA is done */
  36. #define EMAC_DESC_WRAP 0x00000002 /* bit for wrap */
  37. #define EMAC_BROADCAST 0x80000000 /* broadcast address */
  38. #define EMAC_MULTICAST 0x40000000 /* multicast address */
  39. #define EMAC_UNICAST 0x20000000 /* unicast address */
  40. #define DM9161_inb(r) (*(volatile rt_uint8_t *)r)
  41. #define DM9161_outb(r, d) (*(volatile rt_uint8_t *)r = d)
  42. #define DM9161_inw(r) (*(volatile rt_uint16_t *)r)
  43. #define DM9161_outw(r, d) (*(volatile rt_uint16_t *)r = d)
  44. void rt_hw_dm9616_init(void);
  45. #endif