ibex_uart.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * QEMU lowRISC Ibex UART device
  3. *
  4. * Copyright (c) 2020 Western Digital
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. #ifndef HW_IBEX_UART_H
  25. #define HW_IBEX_UART_H
  26. #include "hw/sysbus.h"
  27. #include "chardev/char-fe.h"
  28. #include "qemu/timer.h"
  29. #include "qom/object.h"
  30. #define IBEX_UART_TX_FIFO_SIZE 16
  31. #define IBEX_UART_CLOCK 50000000 /* 50MHz clock */
  32. #define TYPE_IBEX_UART "ibex-uart"
  33. OBJECT_DECLARE_SIMPLE_TYPE(IbexUartState, IBEX_UART)
  34. struct IbexUartState {
  35. /* <private> */
  36. SysBusDevice parent_obj;
  37. /* <public> */
  38. MemoryRegion mmio;
  39. uint8_t tx_fifo[IBEX_UART_TX_FIFO_SIZE];
  40. uint32_t tx_level;
  41. uint32_t rx_level;
  42. QEMUTimer *fifo_trigger_handle;
  43. uint64_t char_tx_time;
  44. uint32_t uart_intr_state;
  45. uint32_t uart_intr_enable;
  46. uint32_t uart_ctrl;
  47. uint32_t uart_status;
  48. uint32_t uart_rdata;
  49. uint32_t uart_fifo_ctrl;
  50. uint32_t uart_fifo_status;
  51. uint32_t uart_ovrd;
  52. uint32_t uart_val;
  53. uint32_t uart_timeout_ctrl;
  54. Clock *f_clk;
  55. CharBackend chr;
  56. qemu_irq tx_watermark;
  57. qemu_irq rx_watermark;
  58. qemu_irq tx_empty;
  59. qemu_irq rx_overflow;
  60. };
  61. #endif /* HW_IBEX_UART_H */