bman.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* Copyright 2008 - 2016 Freescale Semiconductor, Inc.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are met:
  5. * * Redistributions of source code must retain the above copyright
  6. * notice, this list of conditions and the following disclaimer.
  7. * * Redistributions in binary form must reproduce the above copyright
  8. * notice, this list of conditions and the following disclaimer in the
  9. * documentation and/or other materials provided with the distribution.
  10. * * Neither the name of Freescale Semiconductor nor the
  11. * names of its contributors may be used to endorse or promote products
  12. * derived from this software without specific prior written permission.
  13. *
  14. * ALTERNATIVELY, this software may be distributed under the terms of the
  15. * GNU General Public License ("GPL") as published by the Free Software
  16. * Foundation, either version 2 of that License or (at your option) any
  17. * later version.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
  20. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
  23. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #ifndef __FSL_BMAN_H
  31. #define __FSL_BMAN_H
  32. /* wrapper for 48-bit buffers */
  33. struct bm_buffer {
  34. union {
  35. struct {
  36. __be16 bpid; /* hi 8-bits reserved */
  37. __be16 hi; /* High 16-bits of 48-bit address */
  38. __be32 lo; /* Low 32-bits of 48-bit address */
  39. };
  40. __be64 data;
  41. };
  42. } __aligned(8);
  43. /*
  44. * Restore the 48 bit address previously stored in BMan
  45. * hardware pools as a dma_addr_t
  46. */
  47. static inline dma_addr_t bm_buf_addr(const struct bm_buffer *buf)
  48. {
  49. return be64_to_cpu(buf->data) & 0xffffffffffffLLU;
  50. }
  51. static inline u64 bm_buffer_get64(const struct bm_buffer *buf)
  52. {
  53. return be64_to_cpu(buf->data) & 0xffffffffffffLLU;
  54. }
  55. static inline void bm_buffer_set64(struct bm_buffer *buf, u64 addr)
  56. {
  57. buf->hi = cpu_to_be16(upper_32_bits(addr));
  58. buf->lo = cpu_to_be32(lower_32_bits(addr));
  59. }
  60. static inline u8 bm_buffer_get_bpid(const struct bm_buffer *buf)
  61. {
  62. return be16_to_cpu(buf->bpid) & 0xff;
  63. }
  64. static inline void bm_buffer_set_bpid(struct bm_buffer *buf, int bpid)
  65. {
  66. buf->bpid = cpu_to_be16(bpid & 0xff);
  67. }
  68. /* Managed portal, high-level i/face */
  69. /* Portal and Buffer Pools */
  70. struct bman_portal;
  71. struct bman_pool;
  72. #define BM_POOL_MAX 64 /* max # of buffer pools */
  73. /**
  74. * bman_new_pool - Allocates a Buffer Pool object
  75. *
  76. * Creates a pool object, and returns a reference to it or NULL on error.
  77. */
  78. struct bman_pool *bman_new_pool(void);
  79. /**
  80. * bman_free_pool - Deallocates a Buffer Pool object
  81. * @pool: the pool object to release
  82. */
  83. void bman_free_pool(struct bman_pool *pool);
  84. /**
  85. * bman_get_bpid - Returns a pool object's BPID.
  86. * @pool: the pool object
  87. *
  88. * The returned value is the index of the encapsulated buffer pool,
  89. * in the range of [0, @BM_POOL_MAX-1].
  90. */
  91. int bman_get_bpid(const struct bman_pool *pool);
  92. /**
  93. * bman_release - Release buffer(s) to the buffer pool
  94. * @pool: the buffer pool object to release to
  95. * @bufs: an array of buffers to release
  96. * @num: the number of buffers in @bufs (1-8)
  97. *
  98. * Adds the given buffers to RCR entries. If the RCR ring is unresponsive,
  99. * the function will return -ETIMEDOUT. Otherwise, it returns zero.
  100. */
  101. int bman_release(struct bman_pool *pool, const struct bm_buffer *bufs, u8 num);
  102. /**
  103. * bman_acquire - Acquire buffer(s) from a buffer pool
  104. * @pool: the buffer pool object to acquire from
  105. * @bufs: array for storing the acquired buffers
  106. * @num: the number of buffers desired (@bufs is at least this big)
  107. *
  108. * Issues an "Acquire" command via the portal's management command interface.
  109. * The return value will be the number of buffers obtained from the pool, or a
  110. * negative error code if a h/w error or pool starvation was encountered. In
  111. * the latter case, the content of @bufs is undefined.
  112. */
  113. int bman_acquire(struct bman_pool *pool, struct bm_buffer *bufs, u8 num);
  114. #endif /* __FSL_BMAN_H */