brintos

brintos / linux-shallow public Read only

0
0
Text · 5.0 KiB · 173e404 Raw
146 lines · c
1/* Copyright 2008 - 2016 Freescale Semiconductor, Inc.2 *3 * Redistribution and use in source and binary forms, with or without4 * modification, are permitted provided that the following conditions are met:5 *     * Redistributions of source code must retain the above copyright6 *	 notice, this list of conditions and the following disclaimer.7 *     * Redistributions in binary form must reproduce the above copyright8 *	 notice, this list of conditions and the following disclaimer in the9 *	 documentation and/or other materials provided with the distribution.10 *     * Neither the name of Freescale Semiconductor nor the11 *	 names of its contributors may be used to endorse or promote products12 *	 derived from this software without specific prior written permission.13 *14 * ALTERNATIVELY, this software may be distributed under the terms of the15 * GNU General Public License ("GPL") as published by the Free Software16 * Foundation, either version 2 of that License or (at your option) any17 * later version.18 *19 * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY20 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE22 * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.29 */30 31#ifndef __FSL_BMAN_H32#define __FSL_BMAN_H33 34/* wrapper for 48-bit buffers */35struct bm_buffer {36	union {37		struct {38			__be16 bpid; /* hi 8-bits reserved */39			__be16 hi; /* High 16-bits of 48-bit address */40			__be32 lo; /* Low 32-bits of 48-bit address */41		};42		__be64 data;43	};44} __aligned(8);45/*46 * Restore the 48 bit address previously stored in BMan47 * hardware pools as a dma_addr_t48 */49static inline dma_addr_t bm_buf_addr(const struct bm_buffer *buf)50{51	return be64_to_cpu(buf->data) & 0xffffffffffffLLU;52}53 54static inline u64 bm_buffer_get64(const struct bm_buffer *buf)55{56	return be64_to_cpu(buf->data) & 0xffffffffffffLLU;57}58 59static inline void bm_buffer_set64(struct bm_buffer *buf, u64 addr)60{61	buf->hi = cpu_to_be16(upper_32_bits(addr));62	buf->lo = cpu_to_be32(lower_32_bits(addr));63}64 65static inline u8 bm_buffer_get_bpid(const struct bm_buffer *buf)66{67	return be16_to_cpu(buf->bpid) & 0xff;68}69 70static inline void bm_buffer_set_bpid(struct bm_buffer *buf, int bpid)71{72	buf->bpid = cpu_to_be16(bpid & 0xff);73}74 75/* Managed portal, high-level i/face */76 77/* Portal and Buffer Pools */78struct bman_portal;79struct bman_pool;80 81#define BM_POOL_MAX		64 /* max # of buffer pools */82 83/**84 * bman_new_pool - Allocates a Buffer Pool object85 *86 * Creates a pool object, and returns a reference to it or NULL on error.87 */88struct bman_pool *bman_new_pool(void);89 90/**91 * bman_free_pool - Deallocates a Buffer Pool object92 * @pool: the pool object to release93 */94void bman_free_pool(struct bman_pool *pool);95 96/**97 * bman_get_bpid - Returns a pool object's BPID.98 * @pool: the pool object99 *100 * The returned value is the index of the encapsulated buffer pool,101 * in the range of [0, @BM_POOL_MAX-1].102 */103int bman_get_bpid(const struct bman_pool *pool);104 105/**106 * bman_release - Release buffer(s) to the buffer pool107 * @pool: the buffer pool object to release to108 * @bufs: an array of buffers to release109 * @num: the number of buffers in @bufs (1-8)110 *111 * Adds the given buffers to RCR entries. If the RCR ring is unresponsive,112 * the function will return -ETIMEDOUT. Otherwise, it returns zero.113 */114int bman_release(struct bman_pool *pool, const struct bm_buffer *bufs, u8 num);115 116/**117 * bman_acquire - Acquire buffer(s) from a buffer pool118 * @pool: the buffer pool object to acquire from119 * @bufs: array for storing the acquired buffers120 * @num: the number of buffers desired (@bufs is at least this big)121 *122 * Issues an "Acquire" command via the portal's management command interface.123 * The return value will be the number of buffers obtained from the pool, or a124 * negative error code if a h/w error or pool starvation was encountered. In125 * the latter case, the content of @bufs is undefined.126 */127int bman_acquire(struct bman_pool *pool, struct bm_buffer *bufs, u8 num);128 129/**130 * bman_is_probed - Check if bman is probed131 *132 * Returns 1 if the bman driver successfully probed, -1 if the bman driver133 * failed to probe or 0 if the bman driver did not probed yet.134 */135int bman_is_probed(void);136/**137 * bman_portals_probed - Check if all cpu bound bman portals are probed138 *139 * Returns 1 if all the required cpu bound bman portals successfully probed,140 * -1 if probe errors appeared or 0 if the bman portals did not yet finished141 * probing.142 */143int bman_portals_probed(void);144 145#endif	/* __FSL_BMAN_H */146