Blame view

include/linux/serial_8250.h 3.07 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  /*
   *  linux/include/linux/serial_8250.h
   *
   *  Copyright (C) 2004 Russell King
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   */
  #ifndef _LINUX_SERIAL_8250_H
  #define _LINUX_SERIAL_8250_H
  
  #include <linux/serial_core.h>
d052d1bef   Russell King   Create platform_d...
15
  #include <linux/platform_device.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16

bc49a661e   Russell King   [SERIAL] Move ser...
17
18
19
  /*
   * This is the platform device platform_data structure
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
  struct plat_serial8250_port {
  	unsigned long	iobase;		/* io base address */
  	void __iomem	*membase;	/* ioremap cookie or NULL */
4f640efb3   Josh Boyer   Use resource_size...
23
  	resource_size_t	mapbase;	/* resource base */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  	unsigned int	irq;		/* interrupt number */
1c2f04937   Vikram Pandita   serial: 8250: add...
25
  	unsigned long	irqflags;	/* request_irq flags */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
  	unsigned int	uartclk;	/* UART clock rate */
74a197417   Will Newton   8250.c: support s...
27
  	void            *private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
29
  	unsigned char	regshift;	/* register shift */
  	unsigned char	iotype;		/* UPIO_* */
ec9f47cd6   Russell King   [PATCH] Serial: S...
30
  	unsigned char	hub6;
0077d45e4   Russell King   [SERIAL] Make uar...
31
  	upf_t		flags;		/* UPF_* flags */
8e23fcc89   David Daney   Serial: Allow por...
32
  	unsigned int	type;		/* If UPF_FIXED_TYPE */
7d6a07d12   David Daney   8250: Serial driv...
33
34
  	unsigned int	(*serial_in)(struct uart_port *, int);
  	void		(*serial_out)(struct uart_port *, int, int);
235dae5d0   Philippe Langlais   U6715 16550A seri...
35
36
37
  	void		(*set_termios)(struct uart_port *,
  			               struct ktermios *new,
  			               struct ktermios *old);
583d28e92   Jamie Iles   tty: serial8250: ...
38
  	int		(*handle_irq)(struct uart_port *);
c161afe97   Manuel Lauss   8250: allow platf...
39
40
  	void		(*pm)(struct uart_port *, unsigned int state,
  			      unsigned old);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  };
bc49a661e   Russell King   [SERIAL] Move ser...
42
  /*
6df29debb   Russell King   [SERIAL] Use an e...
43
44
45
46
47
48
49
   * Allocate 8250 platform device IDs.  Nothing is implied by
   * the numbering here, except for the legacy entry being -1.
   */
  enum {
  	PLAT8250_DEV_LEGACY = -1,
  	PLAT8250_DEV_PLATFORM,
  	PLAT8250_DEV_PLATFORM1,
104c7b03e   Lennert Buytenhek   [ARM] 3383/3: ixp...
50
  	PLAT8250_DEV_PLATFORM2,
6df29debb   Russell King   [SERIAL] Use an e...
51
52
53
  	PLAT8250_DEV_FOURPORT,
  	PLAT8250_DEV_ACCENT,
  	PLAT8250_DEV_BOCA,
e0980dafa   Paul B Schroeder   [PATCH] Exar quad...
54
  	PLAT8250_DEV_EXAR_ST16C554,
6df29debb   Russell King   [SERIAL] Use an e...
55
56
  	PLAT8250_DEV_HUB6,
  	PLAT8250_DEV_MCA,
21c614a78   Pantelis Antoniou   [SERIAL] Support ...
57
  	PLAT8250_DEV_AU1X00,
61711f8fd   Magnus Damm   sm501: add uart s...
58
  	PLAT8250_DEV_SM501,
6df29debb   Russell King   [SERIAL] Use an e...
59
60
61
  };
  
  /*
bc49a661e   Russell King   [SERIAL] Move ser...
62
63
64
65
66
67
   * This should be used by drivers which want to register
   * their own 8250 ports without registering their own
   * platform device.  Using these will make your driver
   * dependent on the 8250 driver.
   */
  struct uart_port;
3986fb2ba   Paul Gortmaker   serial: export th...
68
  struct uart_8250_port;
bc49a661e   Russell King   [SERIAL] Move ser...
69
70
71
72
73
  
  int serial8250_register_port(struct uart_port *);
  void serial8250_unregister_port(int line);
  void serial8250_suspend_port(int line);
  void serial8250_resume_port(int line);
b187f180c   Yinghai Lu   serial: add early...
74
  extern int early_serial_setup(struct uart_port *port);
18a8bd949   Yinghai Lu   serial: convert e...
75
76
77
  extern int serial8250_find_port(struct uart_port *p);
  extern int serial8250_find_port_for_earlycon(void);
  extern int setup_early_serial8250_console(char *cmdline);
235dae5d0   Philippe Langlais   U6715 16550A seri...
78
79
  extern void serial8250_do_set_termios(struct uart_port *port,
  		struct ktermios *termios, struct ktermios *old);
c161afe97   Manuel Lauss   8250: allow platf...
80
81
  extern void serial8250_do_pm(struct uart_port *port, unsigned int state,
  			     unsigned int oldstate);
9deaa53ac   Paul Gortmaker   serial: add irq h...
82
  extern int fsl8250_handle_irq(struct uart_port *port);
583d28e92   Jamie Iles   tty: serial8250: ...
83
  int serial8250_handle_irq(struct uart_port *port, unsigned int iir);
3986fb2ba   Paul Gortmaker   serial: export th...
84
85
86
  unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr);
  void serial8250_tx_chars(struct uart_8250_port *up);
  unsigned int serial8250_modem_status(struct uart_8250_port *up);
18a8bd949   Yinghai Lu   serial: convert e...
87

af7f37435   Alan Cox   serial: abstracti...
88
89
90
  extern void serial8250_set_isa_configurator(void (*v)
  					(int port, struct uart_port *up,
  						unsigned short *capabilities));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
  #endif