sh-sci.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: sh-sci.h,v 1.8 2000/03/08 15:19:39 gniibe Exp $
  2.  *
  3.  *  linux/drivers/char/sh-sci.h
  4.  *
  5.  *  SuperH on-chip serial module support.  (SCI with no FIFO / with FIFO)
  6.  *  Copyright (C) 1999, 2000  Niibe Yutaka
  7.  *  Copyright (C) 2000  Greg Banks
  8.  *  Modified to support multiple serial ports. Stuart Menefy (May 2000).
  9.  *
  10.  */
  11. #include <linux/config.h>
  12. /* Values for sci_port->type */
  13. #define PORT_SCI  0
  14. #define PORT_SCIF 1
  15. #define PORT_IRDA 1 /* XXX: temporary assignment */
  16. /* Offsets into the sci_port->irqs array */
  17. #define SCIx_ERI_IRQ 0
  18. #define SCIx_RXI_IRQ 1
  19. #define SCIx_TXI_IRQ 2
  20. /*                     ERI, RXI, TXI, BRI */
  21. #define SCI_IRQS      { 23,  24,  25,   0 }
  22. #define SH3_SCIF_IRQS { 56,  57,  59,  58 }
  23. #define SH3_IRDA_IRQS { 52,  53,  55,  54 }
  24. #define SH4_SCIF_IRQS { 40,  41,  43,  42 }
  25. #define STB1_SCIF1_IRQS {23, 24,  26,  25 }
  26. #if defined(CONFIG_CPU_SUBTYPE_SH7708)
  27. # define SCI_NPORTS 1
  28. # define SCI_INIT { 
  29.   { {}, PORT_SCI,  0xfffffe80, SCI_IRQS,      sci_init_pins_sci  } 
  30. }
  31. # define SCSPTR 0xffffff7c /* 8 bit */
  32. # define SCSCR_INIT(port)          0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  33. # define SCI_ONLY
  34. #elif defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
  35. # define SCI_NPORTS 3
  36. # define SCI_INIT { 
  37.   { {}, PORT_SCI,  0xfffffe80, SCI_IRQS,      sci_init_pins_sci  }, 
  38.   { {}, PORT_SCIF, 0xA4000150, SH3_SCIF_IRQS, sci_init_pins_scif }, 
  39.   { {}, PORT_SCIF, 0xA4000140, SH3_IRDA_IRQS, sci_init_pins_irda }  
  40. }
  41. # define SCPCR  0xA4000116 /* 16 bit SCI and SCIF */
  42. # define SCPDR  0xA4000136 /* 8  bit SCI and SCIF */
  43. # define SCSCR_INIT(port)          0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  44. # define SCI_AND_SCIF
  45. #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7751)
  46. # define SCI_NPORTS 2
  47. # define SCI_INIT { 
  48.   { {}, PORT_SCI,  0xffe00000, SCI_IRQS,      sci_init_pins_sci  }, 
  49.   { {}, PORT_SCIF, 0xFFE80000, SH4_SCIF_IRQS, sci_init_pins_scif }  
  50. }
  51. # define SCSPTR1 0xffe0001c /* 8  bit SCI */
  52. # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
  53. # define SCIF_ORER 0x0001   /* overrun error bit */
  54. # define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? 
  55. 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : 
  56. 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ )
  57. # define SCI_AND_SCIF
  58. #elif defined(CONFIG_CPU_SUBTYPE_ST40STB1)
  59. # define SCI_NPORTS 2
  60. # define SCI_INIT { 
  61.   { {}, PORT_SCIF, 0xffe00000, STB1_SCIF1_IRQS, sci_init_pins_scif }, 
  62.   { {}, PORT_SCIF, 0xffe80000, SH4_SCIF_IRQS,   sci_init_pins_scif }  
  63. }
  64. # define SCSPTR1 0xffe00020 /* 16 bit SCIF */
  65. # define SCSPTR2 0xffe80020 /* 16 bit SCIF */
  66. # define SCIF_ORER 0x0001   /* overrun error bit */
  67. # define SCSCR_INIT(port)          0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  68. # define SCIF_ONLY
  69. #else
  70. # error CPU subtype not defined
  71. #endif
  72. /* SCSCR */
  73. #define SCI_CTRL_FLAGS_TIE  0x80 /* all */
  74. #define SCI_CTRL_FLAGS_RIE  0x40 /* all */
  75. #define SCI_CTRL_FLAGS_TE   0x20 /* all */
  76. #define SCI_CTRL_FLAGS_RE   0x10 /* all */
  77. /*      SCI_CTRL_FLAGS_REIE 0x08  * 7750 SCIF */
  78. /*      SCI_CTRL_FLAGS_MPIE 0x08  * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  79. /*      SCI_CTRL_FLAGS_TEIE 0x04  * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  80. /*      SCI_CTRL_FLAGS_CKE1 0x02  * all */
  81. /*      SCI_CTRL_FLAGS_CKE0 0x01  * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
  82. /* SCxSR SCI */
  83. #define SCI_TDRE  0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  84. #define SCI_RDRF  0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  85. #define SCI_ORER  0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  86. #define SCI_FER   0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  87. #define SCI_PER   0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  88. #define SCI_TEND  0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  89. /*      SCI_MPB   0x02  * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  90. /*      SCI_MPBT  0x01  * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  91. #define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
  92. /* SCxSR SCIF */
  93. #define SCIF_ER    0x0080 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  94. #define SCIF_TEND  0x0040 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  95. #define SCIF_TDFE  0x0020 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  96. #define SCIF_BRK   0x0010 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  97. #define SCIF_FER   0x0008 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  98. #define SCIF_PER   0x0004 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  99. #define SCIF_RDF   0x0002 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  100. #define SCIF_DR    0x0001 /* 7707 SCIF, 7709 SCIF, 7750 SCIF */
  101. #define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
  102. #if defined(SCI_ONLY)
  103. # define SCxSR_TEND(port) SCI_TEND
  104. # define SCxSR_ERRORS(port) SCI_ERRORS
  105. # define SCxSR_RDxF(port)               SCI_RDRF
  106. # define SCxSR_TDxE(port)               SCI_TDRE
  107. # define SCxSR_ORER(port) SCI_ORER
  108. # define SCxSR_FER(port) SCI_FER
  109. # define SCxSR_PER(port) SCI_PER
  110. # define SCxSR_BRK(port) 0x00
  111. # define SCxSR_RDxF_CLEAR(port) 0xbc
  112. # define SCxSR_ERROR_CLEAR(port) 0xc4
  113. # define SCxSR_TDxE_CLEAR(port) 0x78
  114. # define SCxSR_BREAK_CLEAR(port)    0xc4
  115. #elif defined(SCIF_ONLY) 
  116. # define SCxSR_TEND(port) SCIF_TEND
  117. # define SCxSR_ERRORS(port) SCIF_ERRORS
  118. # define SCxSR_RDxF(port)               SCIF_RDF
  119. # define SCxSR_TDxE(port)               SCIF_TDFE
  120. # define SCxSR_ORER(port) 0x0000
  121. # define SCxSR_FER(port) SCIF_FER
  122. # define SCxSR_PER(port) SCIF_PER
  123. # define SCxSR_BRK(port) SCIF_BRK
  124. # define SCxSR_RDxF_CLEAR(port) 0x00fc
  125. # define SCxSR_ERROR_CLEAR(port) 0x0073
  126. # define SCxSR_TDxE_CLEAR(port) 0x00df
  127. # define SCxSR_BREAK_CLEAR(port)    0x00e3
  128. #else
  129. # define SCxSR_TEND(port)  (((port)->type == PORT_SCI) ? SCI_TEND   : SCIF_TEND)
  130. # define SCxSR_ERRORS(port)  (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
  131. # define SCxSR_RDxF(port)        (((port)->type == PORT_SCI) ? SCI_RDRF   : SCIF_RDF)
  132. # define SCxSR_TDxE(port)        (((port)->type == PORT_SCI) ? SCI_TDRE   : SCIF_TDFE)
  133. # define SCxSR_ORER(port)        (((port)->type == PORT_SCI) ? SCI_ORER   : 0x0000)
  134. # define SCxSR_FER(port)         (((port)->type == PORT_SCI) ? SCI_FER    : SCIF_FER)
  135. # define SCxSR_PER(port)         (((port)->type == PORT_SCI) ? SCI_PER    : SCIF_PER)
  136. # define SCxSR_BRK(port)         (((port)->type == PORT_SCI) ? 0x00       : SCIF_BRK)
  137. # define SCxSR_RDxF_CLEAR(port)  (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
  138. # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
  139. # define SCxSR_TDxE_CLEAR(port)  (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
  140. # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
  141. #endif
  142. /* SCFCR */
  143. #define SCFCR_RFRST 0x0002
  144. #define SCFCR_TFRST 0x0004
  145. #define SCFCR_MCE   0x0008
  146. #define SCI_MAJOR 204
  147. #define SCI_MINOR_START 8
  148. /* Generic serial flags */
  149. #define SCI_RX_THROTTLE 0x0000001
  150. /* generic serial tty */
  151. #define O_OTHER(tty)    
  152.       ((O_OLCUC(tty))  ||
  153.       (O_ONLCR(tty))   ||
  154.       (O_OCRNL(tty))   ||
  155.       (O_ONOCR(tty))   ||
  156.       (O_ONLRET(tty))  ||
  157.       (O_OFILL(tty))   ||
  158.       (O_OFDEL(tty))   ||
  159.       (O_NLDLY(tty))   ||
  160.       (O_CRDLY(tty))   ||
  161.       (O_TABDLY(tty))  ||
  162.       (O_BSDLY(tty))   ||
  163.       (O_VTDLY(tty))   ||
  164.       (O_FFDLY(tty)))
  165. #define I_OTHER(tty)    
  166.       ((I_INLCR(tty))  ||
  167.       (I_IGNCR(tty))   ||
  168.       (I_ICRNL(tty))   ||
  169.       (I_IUCLC(tty))   ||
  170.       (L_ISIG(tty)))
  171. #define SCI_MAGIC 0xbabeface
  172. /*
  173.  * Events are used to schedule things to happen at timer-interrupt
  174.  * time, instead of at rs interrupt time.
  175.  */
  176. #define SCI_EVENT_WRITE_WAKEUP 0
  177. struct sci_port {
  178. struct gs_port gs;
  179. int type;
  180. unsigned int base;
  181. unsigned char irqs[4]; /* ERI, RXI, TXI, BRI */
  182. void (*init_pins)(struct sci_port* port, unsigned int cflag);
  183. unsigned int old_cflag;
  184. struct async_icount icount;
  185. struct tq_struct tqueue;
  186. unsigned long event;
  187. };
  188. #define SCI_IN(size, offset)
  189.   unsigned int addr = port->base + (offset);
  190.   if ((size) == 8) { 
  191.     return ctrl_inb(addr);
  192.   } else {  
  193.     return ctrl_inw(addr);
  194.   }
  195. #define SCI_OUT(size, offset, value)
  196.   unsigned int addr = port->base + (offset);
  197.   if ((size) == 8) { 
  198.     ctrl_outb(value, addr);
  199.   } else {
  200.     ctrl_outw(value, addr);
  201.   }
  202. #define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)
  203.   static inline unsigned int sci_##name##_in(struct sci_port* port)
  204.   {
  205.     if (port->type == PORT_SCI) { 
  206.       SCI_IN(sci_size, sci_offset)
  207.     } else {
  208.       SCI_IN(scif_size, scif_offset);  
  209.     }
  210.   }
  211.   static inline void sci_##name##_out(struct sci_port* port, unsigned int value) 
  212.   {
  213.     if (port->type == PORT_SCI) {
  214.       SCI_OUT(sci_size, sci_offset, value)
  215.     } else {
  216.       SCI_OUT(scif_size, scif_offset, value);
  217.     }
  218.   }
  219. #define CPU_SCIF_FNS(name, scif_offset, scif_size)
  220.   static inline unsigned int sci_##name##_in(struct sci_port* port)
  221.   {
  222.     SCI_IN(scif_size, scif_offset);  
  223.   }
  224.   static inline void sci_##name##_out(struct sci_port* port, unsigned int value) 
  225.   {
  226.     SCI_OUT(scif_size, scif_offset, value);
  227.   }
  228. #ifdef __sh3__
  229. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, 
  230.  sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) 
  231.   CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh3_scif_offset, sh3_scif_size)
  232. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) 
  233.   CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
  234. #else
  235. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, 
  236.  sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) 
  237.   CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
  238. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) 
  239.   CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  240. #endif
  241. /*      reg      SCI/SH3   SCI/SH4  SCIF/SH3   SCIF/SH4  */
  242. /*      name     off  sz   off  sz   off  sz   off  sz   */
  243. SCIx_FNS(SCSMR,  0x00,  8, 0x00,  8, 0x00,  8, 0x00, 16)
  244. SCIx_FNS(SCBRR,  0x02,  8, 0x04,  8, 0x02,  8, 0x04,  8)
  245. SCIx_FNS(SCSCR,  0x04,  8, 0x08,  8, 0x04,  8, 0x08, 16)
  246. SCIx_FNS(SCxTDR, 0x06,  8, 0x0c,  8, 0x06,  8, 0x0C,  8)
  247. SCIx_FNS(SCxSR,  0x08,  8, 0x10,  8, 0x08, 16, 0x10, 16)
  248. SCIx_FNS(SCxRDR, 0x0a,  8, 0x14,  8, 0x0A,  8, 0x14,  8)
  249. SCIF_FNS(SCFCR,                      0x0c,  8, 0x18, 16)
  250. SCIF_FNS(SCFDR,                      0x0e, 16, 0x1C, 16)
  251. SCIF_FNS(SCLSR,                         0,  0, 0x24, 16)
  252. #define sci_in(port, reg) sci_##reg##_in(port)
  253. #define sci_out(port, reg, value) sci_##reg##_out(port, value)
  254. #if defined(CONFIG_CPU_SUBTYPE_SH7708)
  255. static inline int sci_rxd_in(struct sci_port *port)
  256. {
  257. if (port->base == 0xfffffe80)
  258. return ctrl_inb(SCSPTR)&0x01 ? 1 : 0; /* SCI */
  259. return 1;
  260. }
  261. #elif defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
  262. static inline int sci_rxd_in(struct sci_port *port)
  263. {
  264. if (port->base == 0xfffffe80)
  265. return ctrl_inb(SCPDR)&0x01 ? 1 : 0; /* SCI */
  266. if (port->base == 0xa4000150)
  267. return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
  268. if (port->base == 0xa4000140)
  269. return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
  270. return 1;
  271. }
  272. #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7751)
  273. static inline int sci_rxd_in(struct sci_port *port)
  274. {
  275. #ifndef SCIF_ONLY
  276. if (port->base == 0xffe00000)
  277. return ctrl_inb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
  278. #endif
  279. #ifndef SCI_ONLY
  280. if (port->base == 0xffe80000)
  281. return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
  282. #endif
  283. return 1;
  284. }
  285. #elif defined(CONFIG_CPU_SUBTYPE_ST40STB1)
  286. static inline int sci_rxd_in(struct sci_port *port)
  287. {
  288. if (port->base == 0xffe00000)
  289. return ctrl_inw(SCSPTR1)&0x0001 ? 1 : 0; /* SCIF */
  290. else
  291. return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
  292. }
  293. #endif
  294. /*
  295.  * Values for the BitRate Register (SCBRR)
  296.  *
  297.  * The values are actually divisors for a frequency which can
  298.  * be internal to the SH3 (14.7456MHz) or derived from an external
  299.  * clock source.  This driver assumes the internal clock is used;
  300.  * to support using an external clock source, config options or
  301.  * possibly command-line options would need to be added.
  302.  *
  303.  * Also, to support speeds below 2400 (why?) the lower 2 bits of
  304.  * the SCSMR register would also need to be set to non-zero values.
  305.  *
  306.  * -- Greg Banks 27Feb2000
  307.  *
  308.  * Answer: The SCBRR register is only eight bits, and the value in
  309.  * it gets larger with lower baud rates. At around 2400 (depending on
  310.  * the peripherial module clock) you run out of bits. However the
  311.  * lower two bits of SCSMR allow the module clock to be divided down,
  312.  * scaling the value which is needed in SCBRR.
  313.  *
  314.  * -- Stuart Menefy - 23 May 2000
  315.  *
  316.  * I meant, why would anyone bother with bitrates below 2400.
  317.  *
  318.  * -- Greg Banks - 7Jul2000
  319.  *
  320.  * You "speedist"!  How will I use my 110bps ASR-33 teletype with paper
  321.  * tape reader as a console!
  322.  *
  323.  * -- Mitch Davis - 15 Jul 2000
  324.  */
  325. #define PCLK           (current_cpu_data.module_clock)
  326. #define SCBRR_VALUE(bps) ((PCLK+16*bps)/(32*bps)-1)
  327. #define BPS_2400       SCBRR_VALUE(2400)
  328. #define BPS_4800       SCBRR_VALUE(4800)
  329. #define BPS_9600       SCBRR_VALUE(9600)
  330. #define BPS_19200      SCBRR_VALUE(19200)
  331. #define BPS_38400      SCBRR_VALUE(38400)
  332. #define BPS_57600      SCBRR_VALUE(57600)
  333. #define BPS_115200     SCBRR_VALUE(115200)