| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * MIT License
- *
- * Copyright (c) 2024 Evlers
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- *
- * Change Logs:
- * Date Author Notes
- * 2023-12-21 Evlers first implementation
- */
- #include "whd.h"
- #include "whd_network_types.h"
- #include "lwip/memp.h"
- #include "lwip/pbuf.h"
- #define SDIO_BLOCK_SIZE (64U)
- whd_result_t cy_host_buffer_get(whd_buffer_t *buffer, whd_buffer_dir_t direction, uint16_t size,
- uint32_t timeout_ms)
- {
- struct pbuf *p = NULL;
- uint32_t counter = 0;
- do
- {
- counter ++;
- if (direction == WHD_NETWORK_TX)
- {
- /* Allocate from the POOL if possible to avoid dynamic memory allocation */
- pbuf_type type = (size <= PBUF_POOL_BUFSIZE) ? PBUF_POOL : PBUF_RAM;
- p = pbuf_alloc(PBUF_RAW, size, type);
- }
- else
- {
- /* Increase allocation size to ensure the SDIO can write fully aligned blocks for
- * best throughput performance
- */
- p = pbuf_alloc(PBUF_RAW, size + SDIO_BLOCK_SIZE, PBUF_RAM);
- if (p != NULL)
- {
- p->len = size;
- p->tot_len -= SDIO_BLOCK_SIZE;
- }
- }
- if (NULL == p)
- {
- rt_thread_mdelay(1);
- }
- }
- while ((NULL == p) && (counter <= timeout_ms));
- if (p != NULL)
- {
- *buffer = p;
- return WHD_SUCCESS;
- }
- else
- {
- return WHD_BUFFER_ALLOC_FAIL;
- }
- }
- void cy_buffer_release(whd_buffer_t buffer, whd_buffer_dir_t direction)
- {
- UNUSED_PARAMETER(direction);
- (void)pbuf_free((struct pbuf *)buffer);
- }
- uint8_t *cy_buffer_get_current_piece_data_pointer(whd_buffer_t buffer)
- {
- RT_ASSERT(buffer != NULL);
- struct pbuf *pbuffer = (struct pbuf *)buffer;
- return (uint8_t *)pbuffer->payload;
- }
- uint16_t cy_buffer_get_current_piece_size(whd_buffer_t buffer)
- {
- RT_ASSERT(buffer != NULL);
- struct pbuf *pbuffer = (struct pbuf *)buffer;
- return (uint16_t)pbuffer->len;
- }
- whd_result_t cy_buffer_set_size(whd_buffer_t buffer, uint16_t size)
- {
- RT_ASSERT(buffer != NULL);
- struct pbuf *pbuffer = (struct pbuf *)buffer;
- if (size > ((uint16_t)WHD_LINK_MTU +
- LWIP_MEM_ALIGN_SIZE(LWIP_MEM_ALIGN_SIZE(sizeof(struct pbuf))) +
- LWIP_MEM_ALIGN_SIZE(size)))
- {
- return WHD_BUFFER_SIZE_SET_ERROR;
- }
- pbuffer->tot_len = size;
- pbuffer->len = size;
- return CY_RSLT_SUCCESS;
- }
- whd_result_t cy_buffer_add_remove_at_front(whd_buffer_t *buffer, int32_t add_remove_amount)
- {
- RT_ASSERT(buffer != NULL);
- struct pbuf **pbuffer = (struct pbuf **)buffer;
- if ((uint8_t)0 != pbuf_header(*pbuffer, (int16_t)(-add_remove_amount)))
- {
- return WHD_BUFFER_POINTER_MOVE_ERROR;
- }
- return WHD_SUCCESS;
- }
- struct whd_buffer_funcs whd_buffer_ops =
- {
- .whd_buffer_add_remove_at_front = cy_buffer_add_remove_at_front,
- .whd_buffer_get_current_piece_data_pointer = cy_buffer_get_current_piece_data_pointer,
- .whd_buffer_get_current_piece_size = cy_buffer_get_current_piece_size,
- .whd_buffer_release = cy_buffer_release,
- .whd_buffer_set_size = cy_buffer_set_size,
- .whd_host_buffer_get = cy_host_buffer_get,
- };
|