| 
									
										
										
										
											2008-02-26 14:52:45 +09:00
										 |  |  | #ifndef __LINUX_SERIAL_SCI_H
 | 
					
						
							|  |  |  | #define __LINUX_SERIAL_SCI_H
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/serial_core.h>
 | 
					
						
							| 
									
										
										
										
											2010-05-24 16:31:08 +09:00
										 |  |  | #include <linux/sh_dma.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-02-26 14:52:45 +09:00
										 |  |  |  * Generic header for SuperH SCI(F) (used by sh/sh64/h8300 and related parts) | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:19:37 +09:00
										 |  |  | #define SCIx_NOT_SUPPORTED	(-1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:23:52 +09:00
										 |  |  | enum { | 
					
						
							|  |  |  | 	SCBRR_ALGO_1,		/* ((clk + 16 * bps) / (16 * bps) - 1) */ | 
					
						
							|  |  |  | 	SCBRR_ALGO_2,		/* ((clk + 16 * bps) / (32 * bps) - 1) */ | 
					
						
							|  |  |  | 	SCBRR_ALGO_3,		/* (((clk * 2) + 16 * bps) / (16 * bps) - 1) */ | 
					
						
							|  |  |  | 	SCBRR_ALGO_4,		/* (((clk * 2) + 16 * bps) / (32 * bps) - 1) */ | 
					
						
							|  |  |  | 	SCBRR_ALGO_5,		/* (((clk * 1000 / 32) / bps) - 1) */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 17:53:33 +09:00
										 |  |  | #define SCSCR_TIE	(1 << 7)
 | 
					
						
							|  |  |  | #define SCSCR_RIE	(1 << 6)
 | 
					
						
							|  |  |  | #define SCSCR_TE	(1 << 5)
 | 
					
						
							|  |  |  | #define SCSCR_RE	(1 << 4)
 | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | #define SCSCR_REIE	(1 << 3)	/* not supported by all parts */
 | 
					
						
							| 
									
										
										
										
											2009-06-24 17:53:33 +09:00
										 |  |  | #define SCSCR_TOIE	(1 << 2)	/* not supported by all parts */
 | 
					
						
							|  |  |  | #define SCSCR_CKE1	(1 << 1)
 | 
					
						
							|  |  |  | #define SCSCR_CKE0	(1 << 0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:19:37 +09:00
										 |  |  | /* SCxSR SCI */ | 
					
						
							|  |  |  | #define SCI_TDRE  0x80
 | 
					
						
							|  |  |  | #define SCI_RDRF  0x40
 | 
					
						
							|  |  |  | #define SCI_ORER  0x20
 | 
					
						
							|  |  |  | #define SCI_FER   0x10
 | 
					
						
							|  |  |  | #define SCI_PER   0x08
 | 
					
						
							|  |  |  | #define SCI_TEND  0x04
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* SCxSR SCIF */ | 
					
						
							|  |  |  | #define SCIF_ER    0x0080
 | 
					
						
							|  |  |  | #define SCIF_TEND  0x0040
 | 
					
						
							|  |  |  | #define SCIF_TDFE  0x0020
 | 
					
						
							|  |  |  | #define SCIF_BRK   0x0010
 | 
					
						
							|  |  |  | #define SCIF_FER   0x0008
 | 
					
						
							|  |  |  | #define SCIF_PER   0x0004
 | 
					
						
							|  |  |  | #define SCIF_RDF   0x0002
 | 
					
						
							|  |  |  | #define SCIF_DR    0x0001
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 17:44:50 +09:00
										 |  |  | /* SCSPTR, optional */ | 
					
						
							|  |  |  | #define SCSPTR_RTSIO	(1 << 7)
 | 
					
						
							|  |  |  | #define SCSPTR_CTSIO	(1 << 5)
 | 
					
						
							| 
									
										
										
										
											2012-04-06 09:59:14 +09:00
										 |  |  | #define SCSPTR_SPB2IO	(1 << 1)
 | 
					
						
							|  |  |  | #define SCSPTR_SPB2DT	(1 << 0)
 | 
					
						
							| 
									
										
										
										
											2011-12-02 17:44:50 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | /* Offsets into the sci_port->irqs array */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	SCIx_ERI_IRQ, | 
					
						
							|  |  |  | 	SCIx_RXI_IRQ, | 
					
						
							|  |  |  | 	SCIx_TXI_IRQ, | 
					
						
							|  |  |  | 	SCIx_BRI_IRQ, | 
					
						
							|  |  |  | 	SCIx_NR_IRQS, | 
					
						
							| 
									
										
										
										
											2011-06-28 15:25:36 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	SCIx_MUX_IRQ = SCIx_NR_IRQS,	/* special case */ | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 20:09:48 +09:00
										 |  |  | /* Offsets into the sci_port->gpios array */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	SCIx_SCK, | 
					
						
							|  |  |  | 	SCIx_RXD, | 
					
						
							|  |  |  | 	SCIx_TXD, | 
					
						
							|  |  |  | 	SCIx_CTS, | 
					
						
							|  |  |  | 	SCIx_RTS, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SCIx_NR_FNS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | enum { | 
					
						
							|  |  |  | 	SCIx_PROBE_REGTYPE, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SCIx_SCI_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_IRDA_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SCIFA_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SCIFB_REGTYPE, | 
					
						
							| 
									
										
										
										
											2011-10-03 15:16:47 +01:00
										 |  |  | 	SCIx_SH2_SCIF_FIFODATA_REGTYPE, | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	SCIx_SH3_SCIF_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SH4_SCIF_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SH4_SCIF_FIFODATA_REGTYPE, | 
					
						
							|  |  |  | 	SCIx_SH7705_SCIF_REGTYPE, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SCIx_NR_REGTYPES, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-19 14:37:14 +09:00
										 |  |  | #define SCIx_IRQ_MUXED(irq)		\
 | 
					
						
							|  |  |  | {					\ | 
					
						
							|  |  |  | 	[SCIx_ERI_IRQ]	= (irq),	\ | 
					
						
							|  |  |  | 	[SCIx_RXI_IRQ]	= (irq),	\ | 
					
						
							|  |  |  | 	[SCIx_TXI_IRQ]	= (irq),	\ | 
					
						
							|  |  |  | 	[SCIx_BRI_IRQ]	= (irq),	\ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-28 15:25:36 +09:00
										 |  |  | #define SCIx_IRQ_IS_MUXED(port)			\
 | 
					
						
							|  |  |  | 	((port)->cfg->irqs[SCIx_ERI_IRQ] ==	\ | 
					
						
							|  |  |  | 	 (port)->cfg->irqs[SCIx_RXI_IRQ]) ||	\ | 
					
						
							|  |  |  | 	((port)->cfg->irqs[SCIx_ERI_IRQ] &&	\ | 
					
						
							|  |  |  | 	 !(port)->cfg->irqs[SCIx_RXI_IRQ]) | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SCI register subset common for all port types. | 
					
						
							|  |  |  |  * Not all registers will exist on all parts. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	SCSMR, SCBRR, SCSCR, SCxSR, | 
					
						
							|  |  |  | 	SCFCR, SCFDR, SCxTDR, SCxRDR, | 
					
						
							|  |  |  | 	SCLSR, SCTFDR, SCRFDR, SCSPTR, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SCIx_NR_REGS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-02 11:39:15 +09:00
										 |  |  | struct device; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | struct plat_sci_port_ops { | 
					
						
							|  |  |  | 	void (*init_pins)(struct uart_port *, unsigned int cflag); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-02 17:44:50 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Port-specific capabilities | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define SCIx_HAVE_RTSCTS	(1 << 0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Platform device specific platform_data struct | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct plat_sci_port { | 
					
						
							|  |  |  | 	unsigned long	mapbase;		/* resource base */ | 
					
						
							|  |  |  | 	unsigned int	irqs[SCIx_NR_IRQS];	/* ERI, RXI, TXI, BRI */ | 
					
						
							| 
									
										
										
										
											2011-12-02 20:09:48 +09:00
										 |  |  | 	unsigned int	gpios[SCIx_NR_FNS];	/* SCK, RXD, TXD, CTS, RTS */ | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | 	unsigned int	type;			/* SCI / SCIF / IRDA */ | 
					
						
							|  |  |  | 	upf_t		flags;			/* UPF_* flags */ | 
					
						
							| 
									
										
										
										
											2011-12-02 17:44:50 +09:00
										 |  |  | 	unsigned long	capabilities;		/* Port features/capabilities */ | 
					
						
							| 
									
										
										
										
											2009-06-24 17:53:33 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 18:23:52 +09:00
										 |  |  | 	unsigned int	scbrr_algo_id;		/* SCBRR calculation algo */ | 
					
						
							| 
									
										
										
										
											2009-06-24 17:53:33 +09:00
										 |  |  | 	unsigned int	scscr;			/* SCSCR initialization */ | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:19:37 +09:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Platform overrides if necessary, defaults otherwise. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	int		overrun_bit; | 
					
						
							|  |  |  | 	unsigned int	error_mask; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:51:32 +09:00
										 |  |  | 	int		port_reg; | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	unsigned char	regshift; | 
					
						
							|  |  |  | 	unsigned char	regtype; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct plat_sci_port_ops	*ops; | 
					
						
							| 
									
										
										
										
											2011-06-08 18:51:32 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-19 15:37:31 +09:00
										 |  |  | 	unsigned int	dma_slave_tx; | 
					
						
							|  |  |  | 	unsigned int	dma_slave_rx; | 
					
						
							| 
									
										
										
										
											2006-09-27 17:32:30 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-26 14:52:45 +09:00
										 |  |  | #endif /* __LINUX_SERIAL_SCI_H */
 |