// SPDX-License-Identifier: GPL-2.0-only /* * ISHTP Ring Buffers * * Copyright (c) 2003-2016, Intel Corporation. */ #include <linux/slab.h> #include "client.h" /** * ishtp_cl_alloc_rx_ring() - Allocate RX ring buffers * @cl: client device instance * * Allocate and initialize RX ring buffers * * Return: 0 on success else -ENOMEM */ int ishtp_cl_alloc_rx_ring(struct ishtp_cl *cl) { … } /** * ishtp_cl_alloc_tx_ring() - Allocate TX ring buffers * @cl: client device instance * * Allocate and initialize TX ring buffers * * Return: 0 on success else -ENOMEM */ int ishtp_cl_alloc_tx_ring(struct ishtp_cl *cl) { … } /** * ishtp_cl_free_rx_ring() - Free RX ring buffers * @cl: client device instance * * Free RX ring buffers */ void ishtp_cl_free_rx_ring(struct ishtp_cl *cl) { … } /** * ishtp_cl_free_tx_ring() - Free TX ring buffers * @cl: client device instance * * Free TX ring buffers */ void ishtp_cl_free_tx_ring(struct ishtp_cl *cl) { … } /** * ishtp_io_rb_free() - Free IO request block * @rb: IO request block * * Free io request block memory */ void ishtp_io_rb_free(struct ishtp_cl_rb *rb) { … } /** * ishtp_io_rb_init() - Allocate and init IO request block * @cl: client device instance * * Allocate and initialize request block * * Return: Allocted IO request block pointer */ struct ishtp_cl_rb *ishtp_io_rb_init(struct ishtp_cl *cl) { … } /** * ishtp_io_rb_alloc_buf() - Allocate and init response buffer * @rb: IO request block * @length: length of response buffer * * Allocate respose buffer * * Return: 0 on success else -ENOMEM */ int ishtp_io_rb_alloc_buf(struct ishtp_cl_rb *rb, size_t length) { … } /** * ishtp_cl_io_rb_recycle() - Recycle IO request blocks * @rb: IO request block * * Re-append rb to its client's free list and send flow control if needed * * Return: 0 on success else -EFAULT */ int ishtp_cl_io_rb_recycle(struct ishtp_cl_rb *rb) { … } EXPORT_SYMBOL(…); /** * ishtp_cl_tx_empty() -test whether client device tx buffer is empty * @cl: Pointer to client device instance * * Look client device tx buffer list, and check whether this list is empty * * Return: true if client tx buffer list is empty else false */ bool ishtp_cl_tx_empty(struct ishtp_cl *cl) { … } EXPORT_SYMBOL(…); /** * ishtp_cl_rx_get_rb() -Get a rb from client device rx buffer list * @cl: Pointer to client device instance * * Check client device in-processing buffer list and get a rb from it. * * Return: rb pointer if buffer list isn't empty else NULL */ struct ishtp_cl_rb *ishtp_cl_rx_get_rb(struct ishtp_cl *cl) { … } EXPORT_SYMBOL(…);