brintos

brintos / linux-shallow public Read only

0
0
Text · 8.3 KiB · ad60b87 Raw
267 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Internal header file for UCC FAST unit routines.4 *5 * Copyright (C) 2006 Freescale Semiconductor, Inc. All rights reserved.6 *7 * Authors: 	Shlomi Gridish <gridish@freescale.com>8 * 		Li Yang <leoli@freescale.com>9 */10#ifndef __UCC_FAST_H__11#define __UCC_FAST_H__12 13#include <linux/types.h>14 15#include <soc/fsl/qe/immap_qe.h>16#include <soc/fsl/qe/qe.h>17 18#include <soc/fsl/qe/ucc.h>19 20/* Receive BD's status and length*/21#define R_E	0x80000000	/* buffer empty */22#define R_W	0x20000000	/* wrap bit */23#define R_I	0x10000000	/* interrupt on reception */24#define R_L	0x08000000	/* last */25#define R_F	0x04000000	/* first */26 27/* transmit BD's status and length*/28#define T_R	0x80000000	/* ready bit */29#define T_W	0x20000000	/* wrap bit */30#define T_I	0x10000000	/* interrupt on completion */31#define T_L	0x08000000	/* last */32 33/* Receive BD's status */34#define R_E_S	0x8000	/* buffer empty */35#define R_W_S	0x2000	/* wrap bit */36#define R_I_S	0x1000	/* interrupt on reception */37#define R_L_S	0x0800	/* last */38#define R_F_S	0x0400	/* first */39#define R_CM_S	0x0200	/* continuous mode */40#define R_LG_S  0x0020  /* frame length */41#define R_NO_S  0x0010  /* nonoctet */42#define R_AB_S  0x0008  /* abort */43#define R_CR_S	0x0004	/* crc */44#define R_OV_S	0x0002	/* overrun */45#define R_CD_S  0x0001  /* carrier detect */46 47/* transmit BD's status */48#define T_R_S	0x8000	/* ready bit */49#define T_W_S	0x2000	/* wrap bit */50#define T_I_S	0x1000	/* interrupt on completion */51#define T_L_S	0x0800	/* last */52#define T_TC_S	0x0400	/* crc */53#define T_TM_S	0x0200	/* continuous mode */54#define T_UN_S  0x0002  /* hdlc underrun */55#define T_CT_S  0x0001  /* hdlc carrier lost */56 57/* Rx Data buffer must be 4 bytes aligned in most cases */58#define UCC_FAST_RX_ALIGN			459#define UCC_FAST_MRBLR_ALIGNMENT		460#define UCC_FAST_VIRT_FIFO_REGS_ALIGNMENT	861 62/* Sizes */63#define UCC_FAST_URFS_MIN_VAL				0x8864#define UCC_FAST_RECEIVE_VIRTUAL_FIFO_SIZE_FUDGE_FACTOR	865 66/* ucc_fast_channel_protocol_mode - UCC FAST mode */67enum ucc_fast_channel_protocol_mode {68	UCC_FAST_PROTOCOL_MODE_HDLC = 0x00000000,69	UCC_FAST_PROTOCOL_MODE_RESERVED01 = 0x00000001,70	UCC_FAST_PROTOCOL_MODE_RESERVED_QMC = 0x00000002,71	UCC_FAST_PROTOCOL_MODE_RESERVED02 = 0x00000003,72	UCC_FAST_PROTOCOL_MODE_RESERVED_UART = 0x00000004,73	UCC_FAST_PROTOCOL_MODE_RESERVED03 = 0x00000005,74	UCC_FAST_PROTOCOL_MODE_RESERVED_EX_MAC_1 = 0x00000006,75	UCC_FAST_PROTOCOL_MODE_RESERVED_EX_MAC_2 = 0x00000007,76	UCC_FAST_PROTOCOL_MODE_RESERVED_BISYNC = 0x00000008,77	UCC_FAST_PROTOCOL_MODE_RESERVED04 = 0x00000009,78	UCC_FAST_PROTOCOL_MODE_ATM = 0x0000000A,79	UCC_FAST_PROTOCOL_MODE_RESERVED05 = 0x0000000B,80	UCC_FAST_PROTOCOL_MODE_ETHERNET = 0x0000000C,81	UCC_FAST_PROTOCOL_MODE_RESERVED06 = 0x0000000D,82	UCC_FAST_PROTOCOL_MODE_POS = 0x0000000E,83	UCC_FAST_PROTOCOL_MODE_RESERVED07 = 0x0000000F84};85 86/* ucc_fast_transparent_txrx - UCC Fast Transparent TX & RX */87enum ucc_fast_transparent_txrx {88	UCC_FAST_GUMR_TRANSPARENT_TTX_TRX_NORMAL = 0x00000000,89	UCC_FAST_GUMR_TRANSPARENT_TTX_TRX_TRANSPARENT = 0x1800000090};91 92/* UCC fast diagnostic mode */93enum ucc_fast_diag_mode {94	UCC_FAST_DIAGNOSTIC_NORMAL = 0x0,95	UCC_FAST_DIAGNOSTIC_LOCAL_LOOP_BACK = 0x40000000,96	UCC_FAST_DIAGNOSTIC_AUTO_ECHO = 0x80000000,97	UCC_FAST_DIAGNOSTIC_LOOP_BACK_AND_ECHO = 0xC000000098};99 100/* UCC fast Sync length (transparent mode only) */101enum ucc_fast_sync_len {102	UCC_FAST_SYNC_LEN_NOT_USED = 0x0,103	UCC_FAST_SYNC_LEN_AUTOMATIC = 0x00004000,104	UCC_FAST_SYNC_LEN_8_BIT = 0x00008000,105	UCC_FAST_SYNC_LEN_16_BIT = 0x0000C000106};107 108/* UCC fast RTS mode */109enum ucc_fast_ready_to_send {110	UCC_FAST_SEND_IDLES_BETWEEN_FRAMES = 0x00000000,111	UCC_FAST_SEND_FLAGS_BETWEEN_FRAMES = 0x00002000112};113 114/* UCC fast receiver decoding mode */115enum ucc_fast_rx_decoding_method {116	UCC_FAST_RX_ENCODING_NRZ = 0x00000000,117	UCC_FAST_RX_ENCODING_NRZI = 0x00000800,118	UCC_FAST_RX_ENCODING_RESERVED0 = 0x00001000,119	UCC_FAST_RX_ENCODING_RESERVED1 = 0x00001800120};121 122/* UCC fast transmitter encoding mode */123enum ucc_fast_tx_encoding_method {124	UCC_FAST_TX_ENCODING_NRZ = 0x00000000,125	UCC_FAST_TX_ENCODING_NRZI = 0x00000100,126	UCC_FAST_TX_ENCODING_RESERVED0 = 0x00000200,127	UCC_FAST_TX_ENCODING_RESERVED1 = 0x00000300128};129 130/* UCC fast CRC length */131enum ucc_fast_transparent_tcrc {132	UCC_FAST_16_BIT_CRC = 0x00000000,133	UCC_FAST_CRC_RESERVED0 = 0x00000040,134	UCC_FAST_32_BIT_CRC = 0x00000080,135	UCC_FAST_CRC_RESERVED1 = 0x000000C0136};137 138/* Fast UCC initialization structure */139struct ucc_fast_info {140	int ucc_num;141	int tdm_num;142	enum qe_clock rx_clock;143	enum qe_clock tx_clock;144	enum qe_clock rx_sync;145	enum qe_clock tx_sync;146	resource_size_t regs;147	int irq;148	u32 uccm_mask;149	int brkpt_support;150	int grant_support;151	int tsa;152	int cdp;153	int cds;154	int ctsp;155	int ctss;156	int tci;157	int txsy;158	int rtsm;159	int revd;160	int rsyn;161	u16 max_rx_buf_length;162	u16 urfs;163	u16 urfet;164	u16 urfset;165	u16 utfs;166	u16 utfet;167	u16 utftt;168	u16 ufpt;169	enum ucc_fast_channel_protocol_mode mode;170	enum ucc_fast_transparent_txrx ttx_trx;171	enum ucc_fast_tx_encoding_method tenc;172	enum ucc_fast_rx_decoding_method renc;173	enum ucc_fast_transparent_tcrc tcrc;174	enum ucc_fast_sync_len synl;175};176 177struct ucc_fast_private {178	struct ucc_fast_info *uf_info;179	struct ucc_fast __iomem *uf_regs; /* a pointer to the UCC regs. */180	__be32 __iomem *p_ucce;	/* a pointer to the event register in memory. */181	__be32 __iomem *p_uccm;	/* a pointer to the mask register in memory. */182#ifdef CONFIG_UGETH_TX_ON_DEMAND183	__be16 __iomem *p_utodr;/* pointer to the transmit on demand register */184#endif185	int enabled_tx;		/* Whether channel is enabled for Tx (ENT) */186	int enabled_rx;		/* Whether channel is enabled for Rx (ENR) */187	int stopped_tx;		/* Whether channel has been stopped for Tx188				   (STOP_TX, etc.) */189	int stopped_rx;		/* Whether channel has been stopped for Rx */190	s32 ucc_fast_tx_virtual_fifo_base_offset;/* pointer to base of Tx191						    virtual fifo */192	s32 ucc_fast_rx_virtual_fifo_base_offset;/* pointer to base of Rx193						    virtual fifo */194#ifdef STATISTICS195	u32 tx_frames;		/* Transmitted frames counter. */196	u32 rx_frames;		/* Received frames counter (only frames197				   passed to application). */198	u32 tx_discarded;	/* Discarded tx frames counter (frames that199				   were discarded by the driver due to errors).200				   */201	u32 rx_discarded;	/* Discarded rx frames counter (frames that202				   were discarded by the driver due to errors).203				   */204#endif				/* STATISTICS */205	u16 mrblr;		/* maximum receive buffer length */206};207 208/* ucc_fast_init209 * Initializes Fast UCC according to user provided parameters.210 *211 * uf_info  - (In) pointer to the fast UCC info structure.212 * uccf_ret - (Out) pointer to the fast UCC structure.213 */214int ucc_fast_init(struct ucc_fast_info * uf_info, struct ucc_fast_private ** uccf_ret);215 216/* ucc_fast_free217 * Frees all resources for fast UCC.218 *219 * uccf - (In) pointer to the fast UCC structure.220 */221void ucc_fast_free(struct ucc_fast_private * uccf);222 223/* ucc_fast_enable224 * Enables a fast UCC port.225 * This routine enables Tx and/or Rx through the General UCC Mode Register.226 *227 * uccf - (In) pointer to the fast UCC structure.228 * mode - (In) TX, RX, or both.229 */230void ucc_fast_enable(struct ucc_fast_private * uccf, enum comm_dir mode);231 232/* ucc_fast_disable233 * Disables a fast UCC port.234 * This routine disables Tx and/or Rx through the General UCC Mode Register.235 *236 * uccf - (In) pointer to the fast UCC structure.237 * mode - (In) TX, RX, or both.238 */239void ucc_fast_disable(struct ucc_fast_private * uccf, enum comm_dir mode);240 241/* ucc_fast_irq242 * Handles interrupts on fast UCC.243 * Called from the general interrupt routine to handle interrupts on fast UCC.244 *245 * uccf - (In) pointer to the fast UCC structure.246 */247void ucc_fast_irq(struct ucc_fast_private * uccf);248 249/* ucc_fast_transmit_on_demand250 * Immediately forces a poll of the transmitter for data to be sent.251 * Typically, the hardware performs a periodic poll for data that the252 * transmit routine has set up to be transmitted. In cases where253 * this polling cycle is not soon enough, this optional routine can254 * be invoked to force a poll right away, instead. Proper use for255 * each transmission for which this functionality is desired is to256 * call the transmit routine and then this routine right after.257 *258 * uccf - (In) pointer to the fast UCC structure.259 */260void ucc_fast_transmit_on_demand(struct ucc_fast_private * uccf);261 262u32 ucc_fast_get_qe_cr_subblock(int uccf_num);263 264void ucc_fast_dump_regs(struct ucc_fast_private * uccf);265 266#endif				/* __UCC_FAST_H__ */267