altera_uart.h 358 B

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