ram_console.c 860 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* ram_console.c - Console messages to a RAM buffer */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <kernel.h>
  8. #include <sys/printk.h>
  9. #include <device.h>
  10. #include <init.h>
  11. extern void __printk_hook_install(int (*fn)(int));
  12. extern void __stdout_hook_install(int (*fn)(int));
  13. /* Extra byte to ensure we're always NULL-terminated */
  14. char ram_console[CONFIG_RAM_CONSOLE_BUFFER_SIZE + 1];
  15. static int pos;
  16. static int ram_console_out(int character)
  17. {
  18. ram_console[pos] = (char)character;
  19. pos = (pos + 1) % CONFIG_RAM_CONSOLE_BUFFER_SIZE;
  20. return character;
  21. }
  22. static int ram_console_init(const struct device *d)
  23. {
  24. ARG_UNUSED(d);
  25. __printk_hook_install(ram_console_out);
  26. __stdout_hook_install(ram_console_out);
  27. return 0;
  28. }
  29. SYS_INIT(ram_console_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);