regs-wan.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * arch/arm/mach-ks8695/include/mach/regs-wan.h
  3. *
  4. * Copyright (C) 2006 Andrew Victor
  5. *
  6. * KS8695 - WAN Registers and bit definitions.
  7. *
  8. * This file is licensed under the terms of the GNU General Public
  9. * License version 2. This program is licensed "as is" without any
  10. * warranty of any kind, whether express or implied.
  11. */
  12. #ifndef KS8695_WAN_H
  13. #define KS8695_WAN_H
  14. #define KS8695_WAN_OFFSET (0xF0000 + 0x6000)
  15. #define KS8695_WAN_VA (KS8695_IO_VA + KS8695_WAN_OFFSET)
  16. #define KS8695_WAN_PA (KS8695_IO_PA + KS8695_WAN_OFFSET)
  17. /*
  18. * WAN registers
  19. */
  20. #define KS8695_WMDTXC (0x00) /* DMA Transmit Control */
  21. #define KS8695_WMDRXC (0x04) /* DMA Receive Control */
  22. #define KS8695_WMDTSC (0x08) /* DMA Transmit Start Command */
  23. #define KS8695_WMDRSC (0x0c) /* DMA Receive Start Command */
  24. #define KS8695_WTDLB (0x10) /* Transmit Descriptor List Base Address */
  25. #define KS8695_WRDLB (0x14) /* Receive Descriptor List Base Address */
  26. #define KS8695_WMAL (0x18) /* MAC Station Address Low */
  27. #define KS8695_WMAH (0x1c) /* MAC Station Address High */
  28. #define KS8695_WMAAL(n) (0x80 + ((n)*8)) /* MAC Additional Station Address (0..15) Low */
  29. #define KS8695_WMAAH(n) (0x84 + ((n)*8)) /* MAC Additional Station Address (0..15) High */
  30. /* DMA Transmit Control Register */
  31. #define WMDTXC_WMTRST (1 << 31) /* Soft Reset */
  32. #define WMDTXC_WMTBS (0x3f << 24) /* Transmit Burst Size */
  33. #define WMDTXC_WMTUCG (1 << 18) /* Transmit UDP Checksum Generate */
  34. #define WMDTXC_WMTTCG (1 << 17) /* Transmit TCP Checksum Generate */
  35. #define WMDTXC_WMTICG (1 << 16) /* Transmit IP Checksum Generate */
  36. #define WMDTXC_WMTFCE (1 << 9) /* Transmit Flow Control Enable */
  37. #define WMDTXC_WMTLB (1 << 8) /* Loopback mode */
  38. #define WMDTXC_WMTEP (1 << 2) /* Transmit Enable Padding */
  39. #define WMDTXC_WMTAC (1 << 1) /* Transmit Add CRC */
  40. #define WMDTXC_WMTE (1 << 0) /* TX Enable */
  41. /* DMA Receive Control Register */
  42. #define WMDRXC_WMRBS (0x3f << 24) /* Receive Burst Size */
  43. #define WMDRXC_WMRUCC (1 << 18) /* Receive UDP Checksum check */
  44. #define WMDRXC_WMRTCG (1 << 17) /* Receive TCP Checksum check */
  45. #define WMDRXC_WMRICG (1 << 16) /* Receive IP Checksum check */
  46. #define WMDRXC_WMRFCE (1 << 9) /* Receive Flow Control Enable */
  47. #define WMDRXC_WMRB (1 << 6) /* Receive Broadcast */
  48. #define WMDRXC_WMRM (1 << 5) /* Receive Multicast */
  49. #define WMDRXC_WMRU (1 << 4) /* Receive Unicast */
  50. #define WMDRXC_WMRERR (1 << 3) /* Receive Error Frame */
  51. #define WMDRXC_WMRA (1 << 2) /* Receive All */
  52. #define WMDRXC_WMRE (1 << 0) /* RX Enable */
  53. /* Additional Station Address High */
  54. #define WMAAH_E (1 << 31) /* Address Enabled */
  55. #endif