Path: blob/master/arch/powerpc/sysdev/bestcomm/fec.h
10818 views
/*1* Header for Bestcomm FEC tasks driver2*3*4* Copyright (C) 2006-2007 Sylvain Munaut <[email protected]>5* Copyright (C) 2003-2004 MontaVista, Software, Inc.6* ( by Dale Farnsworth <[email protected]> )7*8* This file is licensed under the terms of the GNU General Public License9* version 2. This program is licensed "as is" without any warranty of any10* kind, whether express or implied.11*/1213#ifndef __BESTCOMM_FEC_H__14#define __BESTCOMM_FEC_H__151617struct bcom_fec_bd {18u32 status;19u32 skb_pa;20};2122#define BCOM_FEC_TX_BD_TFD 0x08000000ul /* transmit frame done */23#define BCOM_FEC_TX_BD_TC 0x04000000ul /* transmit CRC */24#define BCOM_FEC_TX_BD_ABC 0x02000000ul /* append bad CRC */2526#define BCOM_FEC_RX_BD_L 0x08000000ul /* buffer is last in frame */27#define BCOM_FEC_RX_BD_BC 0x00800000ul /* DA is broadcast */28#define BCOM_FEC_RX_BD_MC 0x00400000ul /* DA is multicast and not broadcast */29#define BCOM_FEC_RX_BD_LG 0x00200000ul /* Rx frame length violation */30#define BCOM_FEC_RX_BD_NO 0x00100000ul /* Rx non-octet aligned frame */31#define BCOM_FEC_RX_BD_CR 0x00040000ul /* Rx CRC error */32#define BCOM_FEC_RX_BD_OV 0x00020000ul /* overrun */33#define BCOM_FEC_RX_BD_TR 0x00010000ul /* Rx frame truncated */34#define BCOM_FEC_RX_BD_LEN_MASK 0x000007fful /* mask for length of received frame */35#define BCOM_FEC_RX_BD_ERRORS (BCOM_FEC_RX_BD_LG | BCOM_FEC_RX_BD_NO | \36BCOM_FEC_RX_BD_CR | BCOM_FEC_RX_BD_OV | BCOM_FEC_RX_BD_TR)373839extern struct bcom_task *40bcom_fec_rx_init(int queue_len, phys_addr_t fifo, int maxbufsize);4142extern int43bcom_fec_rx_reset(struct bcom_task *tsk);4445extern void46bcom_fec_rx_release(struct bcom_task *tsk);474849extern struct bcom_task *50bcom_fec_tx_init(int queue_len, phys_addr_t fifo);5152extern int53bcom_fec_tx_reset(struct bcom_task *tsk);5455extern void56bcom_fec_tx_release(struct bcom_task *tsk);575859#endif /* __BESTCOMM_FEC_H__ */60616263