altera_uart.h 397 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * altera_uart.h -- Altera UART driver defines.
  4. */
  5. #ifndef __ALTUART_H
  6. #define __ALTUART_H
  7. struct altera_uart_platform_uart {
  8. unsigned long mapbase; /* Physical address base */
  9. unsigned int irq; /* Interrupt vector */
  10. unsigned int uartclk; /* UART clock rate */
  11. unsigned int bus_shift; /* Bus shift (address stride) */
  12. };
  13. #endif /* __ALTUART_H */