uccf.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (C) 2006 Freescale Semiconductor, Inc.
  3. *
  4. * Dave Liu <daveliu@freescale.com>
  5. * based on source code of Shlomi Gridish
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #ifndef __UCCF_H__
  23. #define __UCCF_H__
  24. #include "common.h"
  25. #include "qe.h"
  26. /* Fast or Giga ethernet
  27. */
  28. typedef enum enet_type {
  29. FAST_ETH,
  30. GIGA_ETH,
  31. } enet_type_e;
  32. /* General UCC Extended Mode Register
  33. */
  34. #define UCC_GUEMR_MODE_MASK_RX 0x02
  35. #define UCC_GUEMR_MODE_MASK_TX 0x01
  36. #define UCC_GUEMR_MODE_FAST_RX 0x02
  37. #define UCC_GUEMR_MODE_FAST_TX 0x01
  38. #define UCC_GUEMR_MODE_SLOW_RX 0x00
  39. #define UCC_GUEMR_MODE_SLOW_TX 0x00
  40. #define UCC_GUEMR_SET_RESERVED3 0x10 /* Bit 3 must be set 1 */
  41. /* General UCC FAST Mode Register
  42. */
  43. #define UCC_FAST_GUMR_TCI 0x20000000
  44. #define UCC_FAST_GUMR_TRX 0x10000000
  45. #define UCC_FAST_GUMR_TTX 0x08000000
  46. #define UCC_FAST_GUMR_CDP 0x04000000
  47. #define UCC_FAST_GUMR_CTSP 0x02000000
  48. #define UCC_FAST_GUMR_CDS 0x01000000
  49. #define UCC_FAST_GUMR_CTSS 0x00800000
  50. #define UCC_FAST_GUMR_TXSY 0x00020000
  51. #define UCC_FAST_GUMR_RSYN 0x00010000
  52. #define UCC_FAST_GUMR_RTSM 0x00002000
  53. #define UCC_FAST_GUMR_REVD 0x00000400
  54. #define UCC_FAST_GUMR_ENR 0x00000020
  55. #define UCC_FAST_GUMR_ENT 0x00000010
  56. /* GUMR [MODE] bit maps
  57. */
  58. #define UCC_FAST_GUMR_HDLC 0x00000000
  59. #define UCC_FAST_GUMR_QMC 0x00000002
  60. #define UCC_FAST_GUMR_UART 0x00000004
  61. #define UCC_FAST_GUMR_BISYNC 0x00000008
  62. #define UCC_FAST_GUMR_ATM 0x0000000a
  63. #define UCC_FAST_GUMR_ETH 0x0000000c
  64. /* Transmit On Demand (UTORD)
  65. */
  66. #define UCC_SLOW_TOD 0x8000
  67. #define UCC_FAST_TOD 0x8000
  68. /* Fast Ethernet (10/100 Mbps)
  69. */
  70. #define UCC_GETH_URFS_INIT 512 /* Rx virtual FIFO size */
  71. #define UCC_GETH_URFET_INIT 256 /* 1/2 urfs */
  72. #define UCC_GETH_URFSET_INIT 384 /* 3/4 urfs */
  73. #define UCC_GETH_UTFS_INIT 512 /* Tx virtual FIFO size */
  74. #define UCC_GETH_UTFET_INIT 256 /* 1/2 utfs */
  75. #define UCC_GETH_UTFTT_INIT 128
  76. /* Gigabit Ethernet (1000 Mbps)
  77. */
  78. #define UCC_GETH_URFS_GIGA_INIT 4096/*2048*/ /* Rx virtual FIFO size */
  79. #define UCC_GETH_URFET_GIGA_INIT 2048/*1024*/ /* 1/2 urfs */
  80. #define UCC_GETH_URFSET_GIGA_INIT 3072/*1536*/ /* 3/4 urfs */
  81. #define UCC_GETH_UTFS_GIGA_INIT 8192/*2048*/ /* Tx virtual FIFO size */
  82. #define UCC_GETH_UTFET_GIGA_INIT 4096/*1024*/ /* 1/2 utfs */
  83. #define UCC_GETH_UTFTT_GIGA_INIT 0x400/*0x40*/ /* */
  84. /* UCC fast alignment
  85. */
  86. #define UCC_FAST_RX_ALIGN 4
  87. #define UCC_FAST_MRBLR_ALIGNMENT 4
  88. #define UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT 8
  89. /* Sizes
  90. */
  91. #define UCC_FAST_RX_VIRTUAL_FIFO_SIZE_PAD 8
  92. /* UCC fast structure.
  93. */
  94. typedef struct ucc_fast_info {
  95. int ucc_num;
  96. qe_clock_e rx_clock;
  97. qe_clock_e tx_clock;
  98. enet_type_e eth_type;
  99. } ucc_fast_info_t;
  100. typedef struct ucc_fast_private {
  101. ucc_fast_info_t *uf_info;
  102. ucc_fast_t *uf_regs; /* a pointer to memory map of UCC regs */
  103. u32 *p_ucce; /* a pointer to the event register */
  104. u32 *p_uccm; /* a pointer to the mask register */
  105. int enabled_tx; /* whether UCC is enabled for Tx (ENT) */
  106. int enabled_rx; /* whether UCC is enabled for Rx (ENR) */
  107. u32 ucc_fast_tx_virtual_fifo_base_offset;
  108. u32 ucc_fast_rx_virtual_fifo_base_offset;
  109. } ucc_fast_private_t;
  110. void ucc_fast_transmit_on_demand(ucc_fast_private_t *uccf);
  111. u32 ucc_fast_get_qe_cr_subblock(int ucc_num);
  112. void ucc_fast_enable(ucc_fast_private_t *uccf, comm_dir_e mode);
  113. void ucc_fast_disable(ucc_fast_private_t *uccf, comm_dir_e mode);
  114. int ucc_fast_init(ucc_fast_info_t *uf_info, ucc_fast_private_t **uccf_ret);
  115. #endif /* __UCCF_H__ */