Blame view

include/linux/serial_sci.h 1.57 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
96de1a8f0   Paul Mundt   serial: Move asm-...
2
3
  #ifndef __LINUX_SERIAL_SCI_H
  #define __LINUX_SERIAL_SCI_H
ecd956168   Paul Mundt   serial: Add SERIA...
4

d94a0a385   Geert Uytterhoeven   serial: sh-sci: S...
5
  #include <linux/bitops.h>
ecd956168   Paul Mundt   serial: Add SERIA...
6
  #include <linux/serial_core.h>
14baf9d7f   Paul Mundt   serial: sh-sci: f...
7
  #include <linux/sh_dma.h>
ecd956168   Paul Mundt   serial: Add SERIA...
8
9
  
  /*
4b0847842   Guenter Roeck   Drop support for ...
10
   * Generic header for SuperH (H)SCI(F) (used by sh/sh64 and related parts)
ecd956168   Paul Mundt   serial: Add SERIA...
11
   */
26de4f1b2   Geert Uytterhoeven   serial: sh-sci: A...
12
  /* Serial Control Register (@ = not supported by all parts) */
d94a0a385   Geert Uytterhoeven   serial: sh-sci: S...
13
14
15
16
17
18
19
20
  #define SCSCR_TIE	BIT(7)	/* Transmit Interrupt Enable */
  #define SCSCR_RIE	BIT(6)	/* Receive Interrupt Enable */
  #define SCSCR_TE	BIT(5)	/* Transmit Enable */
  #define SCSCR_RE	BIT(4)	/* Receive Enable */
  #define SCSCR_REIE	BIT(3)	/* Receive Error Interrupt Enable @ */
  #define SCSCR_TOIE	BIT(2)	/* Timeout Interrupt Enable @ */
  #define SCSCR_CKE1	BIT(1)	/* Clock Enable 1 */
  #define SCSCR_CKE0	BIT(0)	/* Clock Enable 0 */
c27ffc108   Geert Uytterhoeven   serial: sh-sci: M...
21

f303b364b   Ulrich Hecht   serial: sh-sci: H...
22

61a6976bf   Paul Mundt   serial: sh-sci: A...
23
24
25
26
27
28
29
  enum {
  	SCIx_PROBE_REGTYPE,
  
  	SCIx_SCI_REGTYPE,
  	SCIx_IRDA_REGTYPE,
  	SCIx_SCIFA_REGTYPE,
  	SCIx_SCIFB_REGTYPE,
3af1f8a41   Phil Edworthy   serial: sh-sci: F...
30
  	SCIx_SH2_SCIF_FIFODATA_REGTYPE,
61a6976bf   Paul Mundt   serial: sh-sci: A...
31
32
  	SCIx_SH3_SCIF_REGTYPE,
  	SCIx_SH4_SCIF_REGTYPE,
b8bbd6b29   Geert Uytterhoeven   serial: sh-sci: A...
33
  	SCIx_SH4_SCIF_BRG_REGTYPE,
61a6976bf   Paul Mundt   serial: sh-sci: A...
34
35
36
  	SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE,
  	SCIx_SH4_SCIF_FIFODATA_REGTYPE,
  	SCIx_SH7705_SCIF_REGTYPE,
f303b364b   Ulrich Hecht   serial: sh-sci: H...
37
  	SCIx_HSCIF_REGTYPE,
61a6976bf   Paul Mundt   serial: sh-sci: A...
38
39
40
  
  	SCIx_NR_REGTYPES,
  };
61a6976bf   Paul Mundt   serial: sh-sci: A...
41
42
43
  struct plat_sci_port_ops {
  	void (*init_pins)(struct uart_port *, unsigned int cflag);
  };
ecd956168   Paul Mundt   serial: Add SERIA...
44
45
46
47
  /*
   * Platform device specific platform_data struct
   */
  struct plat_sci_port {
f303b364b   Ulrich Hecht   serial: sh-sci: H...
48
  	unsigned int	type;			/* SCI / SCIF / IRDA / HSCIF */
ecd956168   Paul Mundt   serial: Add SERIA...
49
  	upf_t		flags;			/* UPF_* flags */
00b9de9c2   Paul Mundt   serial: sh-sci: M...
50

ec09c5eb4   Laurent Pinchart   serial: sh-sci: R...
51
  	unsigned int	sampling_rate;
00b9de9c2   Paul Mundt   serial: sh-sci: M...
52
  	unsigned int	scscr;			/* SCSCR initialization */
f43dc23d5   Paul Mundt   Merge branch 'mas...
53

debf95071   Paul Mundt   serial: sh-sci: G...
54
55
56
  	/*
  	 * Platform overrides if necessary, defaults otherwise.
  	 */
61a6976bf   Paul Mundt   serial: sh-sci: A...
57
58
59
  	unsigned char	regtype;
  
  	struct plat_sci_port_ops	*ops;
ecd956168   Paul Mundt   serial: Add SERIA...
60
  };
96de1a8f0   Paul Mundt   serial: Move asm-...
61
  #endif /* __LINUX_SERIAL_SCI_H */