cadence-uart.h 345 B

12345678910111213141516
  1. /*
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2022 StarFive Technology Co., Ltd.
  5. *
  6. * Author: Jun Liang Tan <junliang.tan@linux.starfivetech.com>
  7. */
  8. #ifndef __SERIAL_CADENCE_UART_H__
  9. #define __SERIAL_CADENCE_UART_H__
  10. #include <sbi/sbi_types.h>
  11. int cadence_uart_init(unsigned long base, u32 in_freq, u32 baudrate);
  12. #endif