~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/fsl/bestcomm/fec.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/fsl/bestcomm/fec.h (Architecture alpha) and /include/linux/fsl/bestcomm/fec.h (Architecture m68k)


  1 /*                                                  1 /*
  2  * Header for Bestcomm FEC tasks driver             2  * Header for Bestcomm FEC tasks driver
  3  *                                                  3  *
  4  *                                                  4  *
  5  * Copyright (C) 2006-2007 Sylvain Munaut <tnt      5  * Copyright (C) 2006-2007 Sylvain Munaut <tnt@246tNt.com>
  6  * Copyright (C) 2003-2004 MontaVista, Softwar      6  * Copyright (C) 2003-2004 MontaVista, Software, Inc.
  7  *                         ( by Dale Farnswort      7  *                         ( by Dale Farnsworth <dfarnsworth@mvista.com> )
  8  *                                                  8  *
  9  * This file is licensed under the terms of th      9  * This file is licensed under the terms of the GNU General Public License
 10  * version 2. This program is licensed "as is"     10  * version 2. This program is licensed "as is" without any warranty of any
 11  * kind, whether express or implied.               11  * kind, whether express or implied.
 12  */                                                12  */
 13                                                    13 
 14 #ifndef __BESTCOMM_FEC_H__                         14 #ifndef __BESTCOMM_FEC_H__
 15 #define __BESTCOMM_FEC_H__                         15 #define __BESTCOMM_FEC_H__
 16                                                    16 
 17                                                    17 
 18 struct bcom_fec_bd {                               18 struct bcom_fec_bd {
 19         u32     status;                            19         u32     status;
 20         u32     skb_pa;                            20         u32     skb_pa;
 21 };                                                 21 };
 22                                                    22 
 23 #define BCOM_FEC_TX_BD_TFD      0x08000000ul       23 #define BCOM_FEC_TX_BD_TFD      0x08000000ul    /* transmit frame done */
 24 #define BCOM_FEC_TX_BD_TC       0x04000000ul       24 #define BCOM_FEC_TX_BD_TC       0x04000000ul    /* transmit CRC */
 25 #define BCOM_FEC_TX_BD_ABC      0x02000000ul       25 #define BCOM_FEC_TX_BD_ABC      0x02000000ul    /* append bad CRC */
 26                                                    26 
 27 #define BCOM_FEC_RX_BD_L        0x08000000ul       27 #define BCOM_FEC_RX_BD_L        0x08000000ul    /* buffer is last in frame */
 28 #define BCOM_FEC_RX_BD_BC       0x00800000ul       28 #define BCOM_FEC_RX_BD_BC       0x00800000ul    /* DA is broadcast */
 29 #define BCOM_FEC_RX_BD_MC       0x00400000ul       29 #define BCOM_FEC_RX_BD_MC       0x00400000ul    /* DA is multicast and not broadcast */
 30 #define BCOM_FEC_RX_BD_LG       0x00200000ul       30 #define BCOM_FEC_RX_BD_LG       0x00200000ul    /* Rx frame length violation */
 31 #define BCOM_FEC_RX_BD_NO       0x00100000ul       31 #define BCOM_FEC_RX_BD_NO       0x00100000ul    /* Rx non-octet aligned frame */
 32 #define BCOM_FEC_RX_BD_CR       0x00040000ul       32 #define BCOM_FEC_RX_BD_CR       0x00040000ul    /* Rx CRC error */
 33 #define BCOM_FEC_RX_BD_OV       0x00020000ul       33 #define BCOM_FEC_RX_BD_OV       0x00020000ul    /* overrun */
 34 #define BCOM_FEC_RX_BD_TR       0x00010000ul       34 #define BCOM_FEC_RX_BD_TR       0x00010000ul    /* Rx frame truncated */
 35 #define BCOM_FEC_RX_BD_LEN_MASK 0x000007fful       35 #define BCOM_FEC_RX_BD_LEN_MASK 0x000007fful    /* mask for length of received frame */
 36 #define BCOM_FEC_RX_BD_ERRORS   (BCOM_FEC_RX_B     36 #define BCOM_FEC_RX_BD_ERRORS   (BCOM_FEC_RX_BD_LG | BCOM_FEC_RX_BD_NO | \
 37                 BCOM_FEC_RX_BD_CR | BCOM_FEC_R     37                 BCOM_FEC_RX_BD_CR | BCOM_FEC_RX_BD_OV | BCOM_FEC_RX_BD_TR)
 38                                                    38 
 39                                                    39 
 40 extern struct bcom_task *                          40 extern struct bcom_task *
 41 bcom_fec_rx_init(int queue_len, phys_addr_t fi     41 bcom_fec_rx_init(int queue_len, phys_addr_t fifo, int maxbufsize);
 42                                                    42 
 43 extern int                                         43 extern int
 44 bcom_fec_rx_reset(struct bcom_task *tsk);          44 bcom_fec_rx_reset(struct bcom_task *tsk);
 45                                                    45 
 46 extern void                                        46 extern void
 47 bcom_fec_rx_release(struct bcom_task *tsk);        47 bcom_fec_rx_release(struct bcom_task *tsk);
 48                                                    48 
 49                                                    49 
 50 extern struct bcom_task *                          50 extern struct bcom_task *
 51 bcom_fec_tx_init(int queue_len, phys_addr_t fi     51 bcom_fec_tx_init(int queue_len, phys_addr_t fifo);
 52                                                    52 
 53 extern int                                         53 extern int
 54 bcom_fec_tx_reset(struct bcom_task *tsk);          54 bcom_fec_tx_reset(struct bcom_task *tsk);
 55                                                    55 
 56 extern void                                        56 extern void
 57 bcom_fec_tx_release(struct bcom_task *tsk);        57 bcom_fec_tx_release(struct bcom_task *tsk);
 58                                                    58 
 59                                                    59 
 60 #endif /* __BESTCOMM_FEC_H__ */                    60 #endif /* __BESTCOMM_FEC_H__ */
 61                                                    61 
 62                                                    62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php