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