v850e_uart.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * include/asm-v850/v850e_uart.h -- common V850E on-chip UART driver
  3. *
  4. * Copyright (C) 2001,02,03 NEC Electronics Corporation
  5. * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
  6. *
  7. * This file is subject to the terms and conditions of the GNU General
  8. * Public License. See the file COPYING in the main directory of this
  9. * archive for more details.
  10. *
  11. * Written by Miles Bader <miles@gnu.org>
  12. */
  13. /* There's not actually a single UART implementation used by V850E CPUs,
  14. but rather a series of implementations that are all `close' to one
  15. another. This file corresponds to the single driver which handles all
  16. of them. */
  17. #ifndef __V850_V850E_UART_H__
  18. #define __V850_V850E_UART_H__
  19. #include <linux/termios.h>
  20. #include <asm/v850e_utils.h>
  21. #include <asm/types.h>
  22. #include <asm/machdep.h> /* Pick up chip-specific defs. */
  23. /* Include model-specific definitions. */
  24. #ifdef CONFIG_V850E_UART
  25. # ifdef CONFIG_V850E_UARTB
  26. # include <asm-v850/v850e_uartb.h>
  27. # else
  28. # include <asm-v850/v850e_uarta.h> /* original V850E UART */
  29. # endif
  30. #endif
  31. /* Optional capabilities some hardware provides. */
  32. /* This UART doesn't implement RTS/CTS by default, but some platforms
  33. implement them externally, so check to see if <asm/machdep.h> defined
  34. anything. */
  35. #ifdef V850E_UART_CTS
  36. #define v850e_uart_cts(n) V850E_UART_CTS(n)
  37. #else
  38. #define v850e_uart_cts(n) (1)
  39. #endif
  40. /* Do the same for RTS. */
  41. #ifdef V850E_UART_SET_RTS
  42. #define v850e_uart_set_rts(n,v) V850E_UART_SET_RTS(n,v)
  43. #else
  44. #define v850e_uart_set_rts(n,v) ((void)0)
  45. #endif
  46. /* This is the serial channel to use for the boot console (if desired). */
  47. #ifndef V850E_UART_CONSOLE_CHANNEL
  48. # define V850E_UART_CONSOLE_CHANNEL 0
  49. #endif
  50. #ifndef __ASSEMBLY__
  51. /* Setup a console using channel 0 of the builtin uart. */
  52. extern void v850e_uart_cons_init (unsigned chan);
  53. /* Configure and turn on uart channel CHAN, using the termios `control
  54. modes' bits in CFLAGS, and a baud-rate of BAUD. */
  55. void v850e_uart_configure (unsigned chan, unsigned cflags, unsigned baud);
  56. #endif /* !__ASSEMBLY__ */
  57. #endif /* __V850_V850E_UART_H__ */