printk.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* printk.h - low-level debug output */
  2. /*
  3. * Copyright (c) 2010-2012, 2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_SYS_PRINTK_H_
  8. #define ZEPHYR_INCLUDE_SYS_PRINTK_H_
  9. #include <toolchain.h>
  10. #include <stddef.h>
  11. #include <stdarg.h>
  12. #include <inttypes.h>
  13. #if defined(CONFIG_LOG_PRINTK) && defined(CONFIG_LOG2)
  14. #include <logging/log.h>
  15. #endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /**
  20. *
  21. * @brief Print kernel debugging message.
  22. *
  23. * This routine prints a kernel debugging message to the system console.
  24. * Output is send immediately, without any mutual exclusion or buffering.
  25. *
  26. * A basic set of conversion specifier characters are supported:
  27. * - signed decimal: \%d, \%i
  28. * - unsigned decimal: \%u
  29. * - unsigned hexadecimal: \%x (\%X is treated as \%x)
  30. * - pointer: \%p
  31. * - string: \%s
  32. * - character: \%c
  33. * - percent: \%\%
  34. *
  35. * Field width (with or without leading zeroes) is supported.
  36. * Length attributes h, hh, l, ll and z are supported. However, integral
  37. * values with %lld and %lli are only printed if they fit in a long
  38. * otherwise 'ERR' is printed. Full 64-bit values may be printed with %llx.
  39. * Flags and precision attributes are not supported.
  40. *
  41. * @param fmt Format string.
  42. * @param ... Optional list of format arguments.
  43. *
  44. * @return N/A
  45. */
  46. #ifdef CONFIG_PRINTK
  47. #if defined(CONFIG_LOG_PRINTK) && defined(CONFIG_LOG2)
  48. #define printk(...) Z_LOG_PRINTK(__VA_ARGS__)
  49. static inline __printf_like(1, 0) void vprintk(const char *fmt, va_list ap)
  50. {
  51. z_log_msg2_runtime_vcreate(CONFIG_LOG_DOMAIN_ID, NULL,
  52. LOG_LEVEL_INTERNAL_RAW_STRING, NULL, 0,
  53. fmt, ap);
  54. }
  55. #else
  56. extern __printf_like(1, 2) void printk(const char *fmt, ...);
  57. extern __printf_like(1, 0) void vprintk(const char *fmt, va_list ap);
  58. #endif /* defined(CONFIG_LOG_PRINTK) && defined(CONFIG_LOG) */
  59. #else
  60. static inline __printf_like(1, 2) void printk(const char *fmt, ...)
  61. {
  62. ARG_UNUSED(fmt);
  63. }
  64. static inline __printf_like(1, 0) void vprintk(const char *fmt, va_list ap)
  65. {
  66. ARG_UNUSED(fmt);
  67. ARG_UNUSED(ap);
  68. }
  69. #endif
  70. extern __printf_like(3, 4) int snprintk(char *str, size_t size,
  71. const char *fmt, ...);
  72. extern __printf_like(3, 0) int vsnprintk(char *str, size_t size,
  73. const char *fmt, va_list ap);
  74. #ifdef CONFIG_ACTIONS_PRINTK_DMA
  75. void trace_set_panic(void);
  76. void printk_dma_switch(int sw_dma);
  77. int uart_dma_send_buf(const uint8_t *buf, int len);
  78. #endif
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. #endif