scc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:16k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * atari_SCC.h: Definitions for the Am8530 Serial Communications Controller
  3.  *
  4.  * Copyright 1994 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive
  8.  * for more details.
  9.  *
  10.  */
  11. #ifndef _SCC_H
  12. #define _SCC_H
  13. #include <linux/delay.h>
  14. /* Special configuration ioctls for the Atari SCC5380 Serial
  15.  * Communications Controller
  16.  */
  17. /* ioctl command codes */
  18. #define TIOCGATSCC 0x54c0 /* get SCC configuration */
  19. #define TIOCSATSCC 0x54c1 /* set SCC configuration */
  20. #define TIOCDATSCC 0x54c2 /* reset configuration to defaults */
  21. /* Clock sources */
  22. #define CLK_RTxC 0
  23. #define CLK_TRxC 1
  24. #define CLK_PCLK 2
  25. /* baud_bases for the common clocks in the Atari. These are the real
  26.  * frequencies divided by 16.
  27.  */
  28.    
  29. #define SCC_BAUD_BASE_TIMC 19200 /* 0.3072 MHz from TT-MFP, Timer C */
  30. #define SCC_BAUD_BASE_BCLK 153600 /* 2.4576 MHz */
  31. #define SCC_BAUD_BASE_PCLK4 229500 /* 3.6720 MHz */
  32. #define SCC_BAUD_BASE_PCLK 503374 /* 8.0539763 MHz */
  33. #define SCC_BAUD_BASE_NONE 0 /* for not connected or unused
  34.  * clock sources */
  35. /* The SCC clock configuration structure */
  36. struct scc_clock_config {
  37. unsigned RTxC_base; /* base_baud of RTxC */
  38. unsigned TRxC_base; /* base_baud of TRxC */
  39. unsigned PCLK_base; /* base_baud of PCLK, both channels! */
  40. struct {
  41. unsigned clksrc; /* CLK_RTxC, CLK_TRxC or CLK_PCLK */
  42. unsigned divisor; /* divisor for base baud, valid values:
  43.  * see below */
  44. } baud_table[17]; /* For 50, 75, 110, 135, 150, 200, 300,
  45.  * 600, 1200, 1800, 2400, 4800, 9600,
  46.  * 19200, 38400, 57600 and 115200 bps.
  47.  * The last two could be replaced by
  48.  * other rates > 38400 if they're not
  49.  * possible.
  50.  */
  51. };
  52. /* The following divisors are valid:
  53.  *
  54.  *   - CLK_RTxC: 1 or even (1, 2 and 4 are the direct modes, > 4 use
  55.  *               the BRG)
  56.  *
  57.  *   - CLK_TRxC: 1, 2 or 4 (no BRG, only direct modes possible)
  58.  *
  59.  *   - CLK_PCLK: >= 4 and even (no direct modes, only BRG)
  60.  *
  61.  */
  62. struct scc_port {
  63. struct gs_port gs;
  64. volatile unsigned char *ctrlp;
  65. volatile unsigned char *datap;
  66. int x_char; /* xon/xoff character */
  67. int c_dcd;
  68. int channel;
  69. struct scc_port *port_a; /* Reference to port A and B */
  70. struct scc_port *port_b; /*   structs for reg access  */
  71. };
  72. #define SCC_MAGIC 0x52696368
  73. /***********************************************************************/
  74. /*                                                                     */
  75. /*                             Register Names                          */
  76. /*                                                                     */
  77. /***********************************************************************/
  78. /* The SCC documentation gives no explicit names to the registers,
  79.  * they're just called WR0..15 and RR0..15. To make the source code
  80.  * better readable and make the transparent write reg read access (see
  81.  * below) possible, I christen them here with self-invented names.
  82.  * Note that (real) read registers are assigned numbers 16..31. WR7'
  83.  * has number 33.
  84.  */
  85. #define COMMAND_REG 0 /* wo */
  86. #define INT_AND_DMA_REG 1 /* wo */
  87. #define INT_VECTOR_REG 2 /* rw, common to both channels */
  88. #define RX_CTRL_REG 3 /* rw */
  89. #define AUX1_CTRL_REG 4 /* rw */
  90. #define TX_CTRL_REG 5 /* rw */
  91. #define SYNC_ADR_REG 6 /* wo */
  92. #define SYNC_CHAR_REG 7 /* wo */
  93. #define SDLC_OPTION_REG 33 /* wo */
  94. #define TX_DATA_REG 8 /* wo */
  95. #define MASTER_INT_CTRL 9 /* wo, common to both channels */
  96. #define AUX2_CTRL_REG 10 /* rw */
  97. #define CLK_CTRL_REG 11 /* wo */
  98. #define TIMER_LOW_REG 12 /* rw */
  99. #define TIMER_HIGH_REG 13 /* rw */
  100. #define DPLL_CTRL_REG 14 /* wo */
  101. #define INT_CTRL_REG 15 /* rw */
  102. #define STATUS_REG 16 /* ro */
  103. #define SPCOND_STATUS_REG 17 /* wo */
  104. /* RR2 is WR2 for Channel A, Channel B gives vector + current status: */
  105. #define CURR_VECTOR_REG 18 /* Ch. B only, Ch. A for rw */
  106. #define INT_PENDING_REG 19 /* Channel A only! */
  107. /* RR4 is WR4, if b6(MR7') == 1 */
  108. /* RR5 is WR5, if b6(MR7') == 1 */
  109. #define FS_FIFO_LOW_REG 22 /* ro */
  110. #define FS_FIFO_HIGH_REG 23 /* ro */
  111. #define RX_DATA_REG 24 /* ro */
  112. /* RR9 is WR3, if b6(MR7') == 1 */
  113. #define DPLL_STATUS_REG 26 /* ro */
  114. /* RR11 is WR10, if b6(MR7') == 1 */
  115. /* RR12 is WR12 */
  116. /* RR13 is WR13 */
  117. /* RR14 not present */
  118. /* RR15 is WR15 */
  119. /***********************************************************************/
  120. /*                                                                     */
  121. /*                             Register Values                         */
  122. /*                                                                     */
  123. /***********************************************************************/
  124. /* WR0: COMMAND_REG "CR" */
  125. #define CR_RX_CRC_RESET 0x40
  126. #define CR_TX_CRC_RESET 0x80
  127. #define CR_TX_UNDERRUN_RESET 0xc0
  128. #define CR_EXTSTAT_RESET 0x10
  129. #define CR_SEND_ABORT 0x18
  130. #define CR_ENAB_INT_NEXT_RX 0x20
  131. #define CR_TX_PENDING_RESET 0x28
  132. #define CR_ERROR_RESET 0x30
  133. #define CR_HIGHEST_IUS_RESET 0x38
  134. /* WR1: INT_AND_DMA_REG "IDR" */
  135. #define IDR_EXTSTAT_INT_ENAB 0x01
  136. #define IDR_TX_INT_ENAB 0x02
  137. #define IDR_PARERR_AS_SPCOND 0x04
  138. #define IDR_RX_INT_DISAB 0x00
  139. #define IDR_RX_INT_FIRST 0x08
  140. #define IDR_RX_INT_ALL 0x10
  141. #define IDR_RX_INT_SPCOND 0x18
  142. #define IDR_RX_INT_MASK 0x18
  143. #define IDR_WAITREQ_RX 0x20
  144. #define IDR_WAITREQ_IS_REQ 0x40
  145. #define IDR_WAITREQ_ENAB 0x80
  146. /* WR3: RX_CTRL_REG "RCR" */
  147. #define RCR_RX_ENAB 0x01
  148. #define RCR_DISCARD_SYNC_CHARS 0x02
  149. #define RCR_ADDR_SEARCH 0x04
  150. #define RCR_CRC_ENAB 0x08
  151. #define RCR_SEARCH_MODE 0x10
  152. #define RCR_AUTO_ENAB_MODE 0x20
  153. #define RCR_CHSIZE_MASK 0xc0
  154. #define RCR_CHSIZE_5 0x00
  155. #define RCR_CHSIZE_6 0x40
  156. #define RCR_CHSIZE_7 0x80
  157. #define RCR_CHSIZE_8 0xc0
  158. /* WR4: AUX1_CTRL_REG "A1CR" */
  159. #define A1CR_PARITY_MASK 0x03
  160. #define A1CR_PARITY_NONE 0x00
  161. #define A1CR_PARITY_ODD 0x01
  162. #define A1CR_PARITY_EVEN 0x03
  163. #define A1CR_MODE_MASK 0x0c
  164. #define A1CR_MODE_SYNCR 0x00
  165. #define A1CR_MODE_ASYNC_1 0x04
  166. #define A1CR_MODE_ASYNC_15 0x08
  167. #define A1CR_MODE_ASYNC_2 0x0c
  168. #define A1CR_SYNCR_MODE_MASK 0x30
  169. #define A1CR_SYNCR_MONOSYNC 0x00
  170. #define A1CR_SYNCR_BISYNC 0x10
  171. #define A1CR_SYNCR_SDLC 0x20
  172. #define A1CR_SYNCR_EXTCSYNC 0x30
  173. #define A1CR_CLKMODE_MASK 0xc0
  174. #define A1CR_CLKMODE_x1 0x00
  175. #define A1CR_CLKMODE_x16 0x40
  176. #define A1CR_CLKMODE_x32 0x80
  177. #define A1CR_CLKMODE_x64 0xc0
  178. /* WR5: TX_CTRL_REG "TCR" */
  179. #define TCR_TX_CRC_ENAB 0x01
  180. #define TCR_RTS 0x02
  181. #define TCR_USE_CRC_CCITT 0x00
  182. #define TCR_USE_CRC_16 0x04
  183. #define TCR_TX_ENAB 0x08
  184. #define TCR_SEND_BREAK 0x10
  185. #define TCR_CHSIZE_MASK 0x60
  186. #define TCR_CHSIZE_5 0x00
  187. #define TCR_CHSIZE_6 0x20
  188. #define TCR_CHSIZE_7 0x40
  189. #define TCR_CHSIZE_8 0x60
  190. #define TCR_DTR 0x80
  191. /* WR7': SLDC_OPTION_REG "SOR" */
  192. #define SOR_AUTO_TX_ENAB 0x01
  193. #define SOR_AUTO_EOM_RESET 0x02
  194. #define SOR_AUTO_RTS_MODE 0x04
  195. #define SOR_NRZI_DISAB_HIGH 0x08
  196. #define SOR_ALT_DTRREQ_TIMING 0x10
  197. #define SOR_READ_CRC_CHARS 0x20
  198. #define SOR_EXTENDED_REG_ACCESS 0x40
  199. /* WR9: MASTER_INT_CTRL "MIC" */
  200. #define MIC_VEC_INCL_STAT 0x01
  201. #define MIC_NO_VECTOR 0x02
  202. #define MIC_DISAB_LOWER_CHAIN 0x04
  203. #define MIC_MASTER_INT_ENAB 0x08
  204. #define MIC_STATUS_HIGH 0x10
  205. #define MIC_IGN_INTACK 0x20
  206. #define MIC_NO_RESET 0x00
  207. #define MIC_CH_A_RESET 0x40
  208. #define MIC_CH_B_RESET 0x80
  209. #define MIC_HARD_RESET 0xc0
  210. /* WR10: AUX2_CTRL_REG "A2CR" */
  211. #define A2CR_SYNC_6 0x01
  212. #define A2CR_LOOP_MODE 0x02
  213. #define A2CR_ABORT_ON_UNDERRUN 0x04
  214. #define A2CR_MARK_IDLE 0x08
  215. #define A2CR_GO_ACTIVE_ON_POLL 0x10
  216. #define A2CR_CODING_MASK 0x60
  217. #define A2CR_CODING_NRZ 0x00
  218. #define A2CR_CODING_NRZI 0x20
  219. #define A2CR_CODING_FM1 0x40
  220. #define A2CR_CODING_FM0 0x60
  221. #define A2CR_PRESET_CRC_1 0x80
  222. /* WR11: CLK_CTRL_REG "CCR" */
  223. #define CCR_TRxCOUT_MASK 0x03
  224. #define CCR_TRxCOUT_XTAL 0x00
  225. #define CCR_TRxCOUT_TXCLK 0x01
  226. #define CCR_TRxCOUT_BRG 0x02
  227. #define CCR_TRxCOUT_DPLL 0x03
  228. #define CCR_TRxC_OUTPUT 0x04
  229. #define CCR_TXCLK_MASK 0x18
  230. #define CCR_TXCLK_RTxC 0x00
  231. #define CCR_TXCLK_TRxC 0x08
  232. #define CCR_TXCLK_BRG 0x10
  233. #define CCR_TXCLK_DPLL 0x18
  234. #define CCR_RXCLK_MASK 0x60
  235. #define CCR_RXCLK_RTxC 0x00
  236. #define CCR_RXCLK_TRxC 0x20
  237. #define CCR_RXCLK_BRG 0x40
  238. #define CCR_RXCLK_DPLL 0x60
  239. #define CCR_RTxC_XTAL 0x80
  240. /* WR14: DPLL_CTRL_REG "DCR" */
  241. #define DCR_BRG_ENAB 0x01
  242. #define DCR_BRG_USE_PCLK 0x02
  243. #define DCR_DTRREQ_IS_REQ 0x04
  244. #define DCR_AUTO_ECHO 0x08
  245. #define DCR_LOCAL_LOOPBACK 0x10
  246. #define DCR_DPLL_EDGE_SEARCH 0x20
  247. #define DCR_DPLL_ERR_RESET 0x40
  248. #define DCR_DPLL_DISAB 0x60
  249. #define DCR_DPLL_CLK_BRG 0x80
  250. #define DCR_DPLL_CLK_RTxC 0xa0
  251. #define DCR_DPLL_FM 0xc0
  252. #define DCR_DPLL_NRZI 0xe0
  253. /* WR15: INT_CTRL_REG "ICR" */
  254. #define ICR_OPTIONREG_SELECT 0x01
  255. #define ICR_ENAB_BRG_ZERO_INT 0x02
  256. #define ICR_USE_FS_FIFO 0x04
  257. #define ICR_ENAB_DCD_INT 0x08
  258. #define ICR_ENAB_SYNC_INT 0x10
  259. #define ICR_ENAB_CTS_INT 0x20
  260. #define ICR_ENAB_UNDERRUN_INT 0x40
  261. #define ICR_ENAB_BREAK_INT 0x80
  262. /* RR0: STATUS_REG "SR" */
  263. #define SR_CHAR_AVAIL 0x01
  264. #define SR_BRG_ZERO 0x02
  265. #define SR_TX_BUF_EMPTY 0x04
  266. #define SR_DCD 0x08
  267. #define SR_SYNC_ABORT 0x10
  268. #define SR_CTS 0x20
  269. #define SR_TX_UNDERRUN 0x40
  270. #define SR_BREAK 0x80
  271. /* RR1: SPCOND_STATUS_REG "SCSR" */
  272. #define SCSR_ALL_SENT 0x01
  273. #define SCSR_RESIDUAL_MASK 0x0e
  274. #define SCSR_PARITY_ERR 0x10
  275. #define SCSR_RX_OVERRUN 0x20
  276. #define SCSR_CRC_FRAME_ERR 0x40
  277. #define SCSR_END_OF_FRAME 0x80
  278. /* RR3: INT_PENDING_REG "IPR" */
  279. #define IPR_B_EXTSTAT 0x01
  280. #define IPR_B_TX 0x02
  281. #define IPR_B_RX 0x04
  282. #define IPR_A_EXTSTAT 0x08
  283. #define IPR_A_TX 0x10
  284. #define IPR_A_RX 0x20
  285. /* RR7: FS_FIFO_HIGH_REG "FFHR" */
  286. #define FFHR_CNT_MASK 0x3f
  287. #define FFHR_IS_FROM_FIFO 0x40
  288. #define FFHR_FIFO_OVERRUN 0x80
  289. /* RR10: DPLL_STATUS_REG "DSR" */
  290. #define DSR_ON_LOOP 0x02
  291. #define DSR_ON_LOOP_SENDING 0x10
  292. #define DSR_TWO_CLK_MISSING 0x40
  293. #define DSR_ONE_CLK_MISSING 0x80
  294. /***********************************************************************/
  295. /*                                                                     */
  296. /*                             Register Access                         */
  297. /*                                                                     */
  298. /***********************************************************************/
  299. /* The SCC needs 3.5 PCLK cycles recovery time between to register
  300.  * accesses. PCLK runs with 8 MHz on an Atari, so this delay is 3.5 *
  301.  * 125 ns = 437.5 ns. This is too short for udelay().
  302.  * 10/16/95: A tstb mfp.par_dt_reg takes 600ns (sure?) and thus should be
  303.  * quite right
  304.  */
  305. #define scc_reg_delay() 
  306.     do {
  307. if (MACH_IS_MVME16x || MACH_IS_BVME6000 || MACH_IS_MVME147)
  308. __asm__ __volatile__ ( " nop; nop");
  309. else if (MACH_IS_ATARI)
  310. __asm__ __volatile__ ( "tstb %0" : : "g" (*_scc_del) : "cc" );
  311.     } while (0)
  312. extern unsigned char scc_shadow[2][16];
  313. /* The following functions should relax the somehow complicated
  314.  * register access of the SCC. _SCCwrite() stores all written values
  315.  * (except for WR0 and WR8) in shadow registers for later recall. This
  316.  * removes the burden of remembering written values as needed. The
  317.  * extra work of storing the value doesn't count, since a delay is
  318.  * needed after a SCC access anyway. Additionally, _SCCwrite() manages
  319.  * writes to WR0 and WR8 differently, because these can be accessed
  320.  * directly with less overhead. Another special case are WR7 and WR7'.
  321.  * _SCCwrite automatically checks what of this registers is selected
  322.  * and changes b0 of WR15 if needed.
  323.  * 
  324.  * _SCCread() for standard read registers is straightforward, except
  325.  * for RR2 (split into two "virtual" registers: one for the value
  326.  * written to WR2 (from the shadow) and one for the vector including
  327.  * status from RR2, Ch. B) and RR3. The latter must be read from
  328.  * Channel A, because it reads as all zeros on Ch. B. RR0 and RR8 can
  329.  * be accessed directly as before.
  330.  * 
  331.  * The two inline function contain complicated switch statements. But
  332.  * I rely on regno and final_delay being constants, so gcc can reduce
  333.  * the whole stuff to just some assembler statements.
  334.  * 
  335.  * _SCCwrite and _SCCread aren't intended to be used directly under
  336.  * normal circumstances. The macros SCCread[_ND] and SCCwrite[_ND] are
  337.  * for that purpose. They assume that a local variable 'port' is
  338.  * declared and pointing to the port's scc_struct entry. The
  339.  * variants with "_NB" appended should be used if no other SCC
  340.  * accesses follow immediatly (within 0.5 usecs). They just skip the
  341.  * final delay nops.
  342.  * 
  343.  * Please note that accesses to SCC registers should only take place
  344.  * when interrupts are turned off (at least if SCC interrupts are
  345.  * enabled). Otherwise, an interrupt could interfere with the
  346.  * two-stage accessing process.
  347.  *
  348.  */
  349. static __inline__ void _SCCwrite(
  350. struct scc_port *port,
  351. unsigned char *shadow,
  352. volatile unsigned char *_scc_del,
  353. int regno,
  354. unsigned char val, int final_delay )
  355. {
  356. switch( regno ) {
  357.   case COMMAND_REG:
  358. /* WR0 can be written directly without pointing */
  359. *port->ctrlp = val;
  360. break;
  361.   case SYNC_CHAR_REG:
  362. /* For WR7, first set b0 of WR15 to 0, if needed */
  363. if (shadow[INT_CTRL_REG] & ICR_OPTIONREG_SELECT) {
  364. *port->ctrlp = 15;
  365. shadow[INT_CTRL_REG] &= ~ICR_OPTIONREG_SELECT;
  366. scc_reg_delay();
  367. *port->ctrlp = shadow[INT_CTRL_REG];
  368. scc_reg_delay();
  369. }
  370. goto normal_case;
  371.   case SDLC_OPTION_REG:
  372. /* For WR7', first set b0 of WR15 to 1, if needed */
  373. if (!(shadow[INT_CTRL_REG] & ICR_OPTIONREG_SELECT)) {
  374. *port->ctrlp = 15;
  375. shadow[INT_CTRL_REG] |= ICR_OPTIONREG_SELECT;
  376. scc_reg_delay();
  377. *port->ctrlp = shadow[INT_CTRL_REG];
  378. scc_reg_delay();
  379. }
  380. *port->ctrlp = 7;
  381. shadow[8] = val; /* WR7' shadowed at WR8 */
  382. scc_reg_delay();
  383. *port->ctrlp = val;
  384. break;
  385.   case TX_DATA_REG: /* WR8 */
  386. /* TX_DATA_REG can be accessed directly on some h/w */
  387. if (MACH_IS_MVME16x || MACH_IS_BVME6000 || MACH_IS_MVME147)
  388. {
  389. *port->ctrlp = regno;
  390. scc_reg_delay();
  391. *port->ctrlp = val;
  392. }
  393. else
  394. *port->datap = val;
  395. break;
  396.   case MASTER_INT_CTRL:
  397. *port->ctrlp = regno;
  398. val &= 0x3f; /* bits 6..7 are the reset commands */
  399. scc_shadow[0][regno] = val;
  400. scc_reg_delay();
  401. *port->ctrlp = val;
  402. break;
  403.   case DPLL_CTRL_REG:
  404. *port->ctrlp = regno;
  405. val &= 0x1f; /* bits 5..7 are the DPLL commands */
  406. shadow[regno] = val;
  407. scc_reg_delay();
  408. *port->ctrlp = val;
  409. break;
  410.   case 1 ... 6:
  411.   case 10 ... 13:
  412.   case 15:
  413.   normal_case:
  414. *port->ctrlp = regno;
  415. shadow[regno] = val;
  416. scc_reg_delay();
  417. *port->ctrlp = val;
  418. break;
  419.   default:
  420. printk( "Bad SCC write access to WR%dn", regno );
  421. break;
  422. }
  423. if (final_delay)
  424. scc_reg_delay();
  425. }
  426. static __inline__ unsigned char _SCCread(
  427. struct scc_port *port,
  428. unsigned char *shadow,
  429. volatile unsigned char *_scc_del,
  430. int regno, int final_delay )
  431. {
  432. unsigned char rv;
  433. switch( regno ) {
  434. /* --- real read registers --- */
  435.   case STATUS_REG:
  436. rv = *port->ctrlp;
  437. break;
  438.   case INT_PENDING_REG:
  439. /* RR3: read only from Channel A! */
  440. port = port->port_a;
  441. goto normal_case;
  442.   case RX_DATA_REG:
  443. /* RR8 can be accessed directly on some h/w */
  444. if (MACH_IS_MVME16x || MACH_IS_BVME6000 || MACH_IS_MVME147)
  445. {
  446. *port->ctrlp = 8;
  447. scc_reg_delay();
  448. rv = *port->ctrlp;
  449. }
  450. else
  451. rv = *port->datap;
  452. break;
  453.   case CURR_VECTOR_REG:
  454. /* RR2 (vector including status) from Ch. B */
  455. port = port->port_b;
  456. goto normal_case;
  457. /* --- reading write registers: access the shadow --- */
  458.   case 1 ... 7:
  459.   case 10 ... 15:
  460. return shadow[regno]; /* no final delay! */
  461. /* WR7' is special, because it is shadowed at the place of WR8 */
  462.   case SDLC_OPTION_REG:
  463. return shadow[8]; /* no final delay! */
  464. /* WR9 is special too, because it is common for both channels */
  465.   case MASTER_INT_CTRL:
  466. return scc_shadow[0][9]; /* no final delay! */
  467.   default:
  468. printk( "Bad SCC read access to %cR%dn", (regno & 16) ? 'R' : 'W',
  469. regno & ~16 );
  470. break;
  471.   case SPCOND_STATUS_REG:
  472.   case FS_FIFO_LOW_REG:
  473.   case FS_FIFO_HIGH_REG:
  474.   case DPLL_STATUS_REG:
  475.   normal_case:
  476. *port->ctrlp = regno & 0x0f;
  477. scc_reg_delay();
  478. rv = *port->ctrlp;
  479. break;
  480. }
  481. if (final_delay)
  482. scc_reg_delay();
  483. return rv;
  484. }
  485. #define SCC_ACCESS_INIT(port)
  486. unsigned char *_scc_shadow = &scc_shadow[port->channel][0]
  487. #define SCCwrite(reg,val) _SCCwrite(port,_scc_shadow,scc_del,(reg),(val),1)
  488. #define SCCwrite_NB(reg,val) _SCCwrite(port,_scc_shadow,scc_del,(reg),(val),0)
  489. #define SCCread(reg) _SCCread(port,_scc_shadow,scc_del,(reg),1)
  490. #define SCCread_NB(reg) _SCCread(port,_scc_shadow,scc_del,(reg),0)
  491. #define SCCmod(reg,and,or) SCCwrite((reg),(SCCread(reg)&(and))|(or))
  492. #endif /* _SCC_H */