Lines Matching +full:tx +full:- +full:freq

1 /* SPDX-License-Identifier: GPL-2.0 */
25 * of "escc" node (ie. ch-a or ch-b)
64 if (uap->flags & PMACZILOG_FLAG_IS_CHANNEL_A) in pmz_get_port_A()
66 return uap->mate; in pmz_get_port_A()
78 writeb(reg, port->control_reg); in read_zsreg()
79 return readb(port->control_reg); in read_zsreg()
85 writeb(reg, port->control_reg); in write_zsreg()
86 writeb(value, port->control_reg); in write_zsreg()
91 return readb(port->data_reg); in read_zsdata()
96 writeb(data, port->data_reg); in write_zsdata()
101 (void)readb(port->control_reg); in zssync()
107 #define BRG_TO_BPS(brg, freq) ((freq) / 2 / ((brg) + 2)) argument
108 #define BPS_TO_BRG(bps, freq) ((((freq) + (bps)) / (2 * (bps))) - 2) argument
145 #define RES_Tx_CRC 0x80 /* Reset Tx CRC Checker */
151 #define TxINT_ENAB 0x2 /* Tx Int Enable */
204 #define TxCRC_ENAB 0x1 /* Tx CRC Enable */
206 #define SDLC_CRC 0x4 /* SDLC/CRC-16 */
207 #define TxENABLE 0x8 /* Tx Enable */
209 #define Tx5 0x0 /* Tx 5 bits (or less)/character */
210 #define Tx7 0x20 /* Tx 7 bits/character */
211 #define Tx6 0x40 /* Tx 6 bits/character */
212 #define Tx8 0x60 /* Tx 8 bits/character */
216 /* Write Register 6 (Sync bits 0-7/SDLC Address Field) */
218 /* Write Register 7 (Sync bits 8-15/SDLC 01111110) */
283 #define EN85C30 1 /* Enable some 85c30-enhanced registers */
289 #define TxUIE 0x40 /* Tx Underrun/EOM IE */
296 #define Tx_BUF_EMP 0x4 /* Tx Buffer empty */
300 #define TxEOM 0x40 /* Tx underrun */
320 /* Read Register 2 (channel b only) - Interrupt vector */
333 #define CHBTxIP 0x2 /* Channel B Tx IP */
336 #define CHATxIP 0x10 /* Channel A Tx IP */
361 #define ZS_IS_CONS(UP) ((UP)->flags & PMACZILOG_FLAG_IS_CONS)
362 #define ZS_IS_KGDB(UP) ((UP)->flags & PMACZILOG_FLAG_IS_KGDB)
363 #define ZS_IS_CHANNEL_A(UP) ((UP)->flags & PMACZILOG_FLAG_IS_CHANNEL_A)
364 #define ZS_REGS_HELD(UP) ((UP)->flags & PMACZILOG_FLAG_REGS_HELD)
365 #define ZS_TX_STOPPED(UP) ((UP)->flags & PMACZILOG_FLAG_TX_STOPPED)
366 #define ZS_TX_ACTIVE(UP) ((UP)->flags & PMACZILOG_FLAG_TX_ACTIVE)
367 #define ZS_WANTS_MODEM_STATUS(UP) ((UP)->flags & PMACZILOG_FLAG_MODEM_STATUS)
368 #define ZS_IS_IRDA(UP) ((UP)->flags & PMACZILOG_FLAG_IS_IRDA)
369 #define ZS_IS_INTMODEM(UP) ((UP)->flags & PMACZILOG_FLAG_IS_INTMODEM)
370 #define ZS_IS_OPEN(UP) ((UP)->flags & PMACZILOG_FLAG_IS_OPEN)
371 #define ZS_IS_EXTCLK(UP) ((UP)->flags & PMACZILOG_FLAG_IS_EXTCLK)