cxd56.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /****************************************************************************
  2. * include/nuttx/audio/cxd56.h
  3. *
  4. * Copyright 2019 Sony Semiconductor Solutions Corporation
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. * 3. Neither the name NuttX nor the names of its contributors may be
  17. * used to endorse or promote products derived from this software
  18. * without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  30. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  31. * POSSIBILITY OF SUCH DAMAGE.
  32. *
  33. ****************************************************************************/
  34. #ifndef __INCLUDE_NUTTX_AUDIO_CXD56_H
  35. #define __INCLUDE_NUTTX_AUDIO_CXD56_H
  36. /****************************************************************************
  37. * Included Files
  38. ****************************************************************************/
  39. #include <stdint.h>
  40. #include <stdbool.h>
  41. #include <nuttx/irq.h>
  42. #if defined(CONFIG_AUDIO_CXD56) || defined(CONFIG_CXD56_AUDIO)
  43. /****************************************************************************
  44. * Public Types
  45. ****************************************************************************/
  46. struct cxd56_lower_s
  47. {
  48. int dma_handle;
  49. };
  50. /****************************************************************************
  51. * Public Data
  52. ****************************************************************************/
  53. #ifdef __cplusplus
  54. #define EXTERN extern "C"
  55. extern "C"
  56. {
  57. #else
  58. #define EXTERN extern
  59. #endif
  60. /****************************************************************************
  61. * Public Function Prototypes
  62. ****************************************************************************/
  63. struct audio_lowerhalf_s;
  64. FAR struct audio_lowerhalf_s *
  65. cxd56_initialize(FAR const struct cxd56_lower_s *lower);
  66. #undef EXTERN
  67. #ifdef __cplusplus
  68. }
  69. #endif
  70. #endif /* CONFIG_CXD56_AUDIO */
  71. #endif /* __INCLUDE_NUTTX_AUDIO_CXD56_H */