Blame view

include/linux/altera_uart.h 461 Bytes
6b7d8f8b5   Tobias Klauser   serial: Add drive...
1
2
3
4
5
6
  /*
   * altera_uart.h -- Altera UART driver defines.
   */
  
  #ifndef	__ALTUART_H
  #define	__ALTUART_H
5d89a48ac   Anton Vorontsov   altera_uart: Fix ...
7
  #include <linux/init.h>
6b7d8f8b5   Tobias Klauser   serial: Add drive...
8
9
10
11
  struct altera_uart_platform_uart {
  	unsigned long mapbase;	/* Physical address base */
  	unsigned int irq;	/* Interrupt vector */
  	unsigned int uartclk;	/* UART clock rate */
0d426eda7   Anton Vorontsov   altera_uart: Add ...
12
  	unsigned int bus_shift;	/* Bus shift (address stride) */
6b7d8f8b5   Tobias Klauser   serial: Add drive...
13
  };
5d89a48ac   Anton Vorontsov   altera_uart: Fix ...
14
  int __init early_altera_uart_setup(struct altera_uart_platform_uart *platp);
6b7d8f8b5   Tobias Klauser   serial: Add drive...
15
  #endif /* __ALTUART_H */