cbuf.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file crc interface
  8. */
  9. #ifndef CBUF_H_
  10. #define CBUF_H_
  11. typedef struct
  12. {
  13. int32_t read_ptr;
  14. int32_t write_ptr;
  15. int32_t length;
  16. uint32_t capacity;
  17. uint8_t *raw_data;
  18. }cbuf_t;
  19. typedef struct
  20. {
  21. uint8_t *start_addr;
  22. uint32_t read_len;
  23. }cbuf_dma_t;
  24. static inline int cbuf_get_used_space(cbuf_t *cbuf)
  25. {
  26. if(!cbuf){
  27. return 0;
  28. }
  29. return cbuf->length;
  30. }
  31. static inline int cbuf_get_free_space(cbuf_t *cbuf)
  32. {
  33. if(!cbuf){
  34. return 0;
  35. }
  36. return cbuf->capacity - cbuf->length;
  37. }
  38. static inline int cbuf_is_init(cbuf_t *cbuf)
  39. {
  40. if(!cbuf){
  41. return false;
  42. }
  43. return (cbuf->capacity != 0);
  44. }
  45. static inline int cbuf_is_ptr_valid(cbuf_t *cbuf, uint32_t ptr)
  46. {
  47. if((ptr >= (uint32_t)cbuf->raw_data) \
  48. && (ptr <= ((uint32_t)cbuf->raw_data + cbuf->capacity))){
  49. return 1;
  50. }else{
  51. return 0;
  52. }
  53. }
  54. static inline void *cbuf_get_buffer_ptr(cbuf_t *cbuf)
  55. {
  56. return (void *)cbuf->raw_data;
  57. }
  58. void cbuf_init(cbuf_t *cbuf, void *buffer, int32_t size);
  59. void cbuf_reset(cbuf_t *cbuf);
  60. int cbuf_read(cbuf_t *cbuf, void *buffer, int32_t len);
  61. int cbuf_write(cbuf_t *cbuf, void *buffer, int32_t len);
  62. int cbuf_dma_read(cbuf_t *cbuf, cbuf_dma_t *dma, int32_t read_len);
  63. int cbuf_dma_update_read_ptr(cbuf_t *cbuf, int32_t read_len);
  64. void cbuf_copy_write_ptr(cbuf_t *src, cbuf_t *dest, uint32_t len);
  65. void cbuf_deinit(cbuf_t *cbuf);
  66. int cbuf_prepare_read(cbuf_t *cbuf, void *buffer, int32_t len);
  67. #endif /* CBUF_H_ */