litex-uart.h 283 B

1234567891011121314151617
  1. /*
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2021 Gabriel Somlo
  5. *
  6. * Authors:
  7. * Gabriel Somlo <gsomlo@gmail.com>
  8. */
  9. #ifndef __SERIAL_LITEX_UART_H__
  10. #define __SERIAL_LITEX_UART_H__
  11. #include <sbi/sbi_types.h>
  12. int litex_uart_init(unsigned long base);
  13. #endif