blob: 5bc18b4f1c1bc5891c43e1fa203912e498c00dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* CFE device driver tunables for
* Broadcom BCM47XX 10/100Mbps Ethernet Device Driver
* Copyright 2007, Broadcom Corporation
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
* the contents of this file may not be disclosed to third parties, copied
* or duplicated in any form, in whole or in part, without the prior
* written permission of Broadcom Corporation.
*
* $Id: et_cfe.h,v 1.1.1.1 2008/07/21 09:14:16 james26_jang Exp $
*/
#ifndef _et_cfe_h_
#define _et_cfe_h_
#define NTXD 16
#define NRXD 16
#define NRXBUFPOST 8
#define NBUFS (NRXBUFPOST + 8)
/* common tunables */
#define RXBUFSZ LBDATASZ /* rx packet buffer size */
#define MAXMULTILIST 32 /* max # multicast addresses */
#endif /* _et_cfe_h_ */
|