1 /*- 2 * This file is provided under a dual BSD/GPLv2 license. When using or 3 * redistributing this file, you may do so under either license. 4 * 5 * BSD LICENSE 6 * 7 * Copyright 2009-2016 Freescale Semiconductor Inc. 8 * Copyright 2017 NXP. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions are met: 12 * * Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * * Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * * Neither the name of the above-listed copyright holders nor the 18 * names of any contributors may be used to endorse or promote products 19 * derived from this software without specific prior written permission. 20 * 21 * GPL LICENSE SUMMARY 22 * 23 * ALTERNATIVELY, this software may be distributed under the terms of the 24 * GNU General Public License ("GPL") as published by the Free Software 25 * Foundation, either version 2 of that License or (at your option) any 26 * later version. 27 * 28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 29 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 31 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE 32 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 33 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 34 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 35 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 36 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 37 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 38 * POSSIBILITY OF SUCH DAMAGE. 39 */ 40 41 #include "dpaa_sys.h" 42 #include <process.h> 43 #include <fsl_qman.h> 44 #include <fsl_bman.h> 45 46 int bman_alloc_bpid_range(u32 *result, u32 count, u32 align, int partial) 47 { 48 return process_alloc(dpaa_id_bpid, result, count, align, partial); 49 } 50 51 void bman_release_bpid_range(u32 bpid, u32 count) 52 { 53 process_release(dpaa_id_bpid, bpid, count); 54 } 55 56 int bman_reserve_bpid_range(u32 bpid, u32 count) 57 { 58 return process_reserve(dpaa_id_bpid, bpid, count); 59 } 60 61 int qman_alloc_fqid_range(u32 *result, u32 count, u32 align, int partial) 62 { 63 return process_alloc(dpaa_id_fqid, result, count, align, partial); 64 } 65 66 void qman_release_fqid_range(u32 fqid, u32 count) 67 { 68 process_release(dpaa_id_fqid, fqid, count); 69 } 70 71 int qman_reserve_fqid_range(u32 fqid, unsigned int count) 72 { 73 return process_reserve(dpaa_id_fqid, fqid, count); 74 } 75 76 int qman_alloc_pool_range(u32 *result, u32 count, u32 align, int partial) 77 { 78 return process_alloc(dpaa_id_qpool, result, count, align, partial); 79 } 80 81 void qman_release_pool_range(u32 pool, u32 count) 82 { 83 process_release(dpaa_id_qpool, pool, count); 84 } 85 86 int qman_reserve_pool_range(u32 pool, u32 count) 87 { 88 return process_reserve(dpaa_id_qpool, pool, count); 89 } 90 91 int qman_alloc_cgrid_range(u32 *result, u32 count, u32 align, int partial) 92 { 93 return process_alloc(dpaa_id_cgrid, result, count, align, partial); 94 } 95 96 void qman_release_cgrid_range(u32 cgrid, u32 count) 97 { 98 process_release(dpaa_id_cgrid, cgrid, count); 99 } 100 101 int qman_reserve_cgrid_range(u32 cgrid, u32 count) 102 { 103 return process_reserve(dpaa_id_cgrid, cgrid, count); 104 } 105