2012-02-02 23:42:57 +04:00
|
|
|
/* $NetBSD: if_gfevar.h,v 1.12 2012/02/02 19:43:04 tls Exp $ */
|
2003-03-06 01:08:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2002 Allegro Networks, Inc., Wasabi Systems, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed for the NetBSD Project by
|
|
|
|
* Allegro Networks, Inc., and Wasabi Systems, Inc.
|
|
|
|
* 4. The name of Allegro Networks, Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* 5. The name of Wasabi Systems, Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ALLEGRO NETWORKS, INC. AND
|
|
|
|
* WASABI SYSTEMS, INC. ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL EITHER ALLEGRO NETWORKS, INC. OR WASABI SYSTEMS, INC.
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2010-04-28 17:51:55 +04:00
|
|
|
#ifndef _IF_GFEVAR_H_
|
|
|
|
#define _IF_GFEVAR_H_
|
2003-03-06 01:08:18 +03:00
|
|
|
|
2003-04-09 03:39:14 +04:00
|
|
|
#define GE_RXDESC_MEMSIZE (1 * PAGE_SIZE)
|
2003-03-06 01:08:18 +03:00
|
|
|
#define GE_RXDESC_MAX 64
|
|
|
|
#define GE_RXBUF_SIZE 2048
|
|
|
|
#define GE_RXBUF_MEMSIZE (GE_RXDESC_MAX*GE_RXBUF_SIZE)
|
2003-04-09 03:39:14 +04:00
|
|
|
#define GE_RXBUF_NSEGS ((GE_RXBUF_MEMSIZE/PAGE_SIZE)+1)
|
2003-03-06 01:08:18 +03:00
|
|
|
#define GE_DMSEG_MAX (GE_RXBUF_NSEGS)
|
|
|
|
|
|
|
|
struct gfe_dmamem {
|
|
|
|
bus_dmamap_t gdm_map; /* dmamem'ed memory */
|
2007-03-04 08:59:00 +03:00
|
|
|
void *gdm_kva; /* kva of tx memory */
|
2003-03-06 01:08:18 +03:00
|
|
|
int gdm_nsegs; /* # of segment in gdm_segs */
|
|
|
|
int gdm_maxsegs; /* maximum # of segments allowed */
|
|
|
|
size_t gdm_size; /* size of memory region */
|
|
|
|
bus_dma_segment_t gdm_segs[GE_DMSEG_MAX]; /* dma segment of tx memory */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* With a 4096 page size, we get 256 descriptors per page.
|
|
|
|
*/
|
2005-02-01 23:47:02 +03:00
|
|
|
#define GE_TXDESC_MEMSIZE (1 * PAGE_SIZE)
|
|
|
|
#define GE_TXDESC_MAX (GE_TXDESC_MEMSIZE / 16)
|
2003-04-09 03:39:14 +04:00
|
|
|
#define GE_TXBUF_SIZE (4 * PAGE_SIZE)
|
2003-03-06 01:08:18 +03:00
|
|
|
|
|
|
|
struct gfe_txqueue {
|
|
|
|
struct ifqueue txq_pendq; /* these are ready to go to the GT */
|
|
|
|
struct gfe_dmamem txq_desc_mem; /* transmit descriptor memory */
|
|
|
|
struct gfe_dmamem txq_buf_mem; /* transmit buffer memory */
|
|
|
|
unsigned int txq_lo; /* next to be given to GT */
|
|
|
|
unsigned int txq_fi; /* next to be returned to CPU */
|
|
|
|
unsigned int txq_ei_gapcount; /* counter until next EI */
|
|
|
|
unsigned int txq_nactive; /* number of active descriptors */
|
|
|
|
unsigned int txq_outptr; /* where to put next transmit packet */
|
|
|
|
unsigned int txq_inptr; /* start of 1st queued tx packet */
|
|
|
|
uint32_t txq_intrbits; /* bits to write to EIMR */
|
|
|
|
uint32_t txq_esdcmrbits; /* bits to write to ESDCMR */
|
|
|
|
uint32_t txq_epsrbits; /* bits to test with EPSR */
|
|
|
|
volatile struct gt_eth_desc *txq_descs; /* ptr to tx descriptors */
|
|
|
|
bus_addr_t txq_ectdp; /* offset to cur. tx desc ptr reg */
|
|
|
|
bus_addr_t txq_desc_busaddr; /* bus addr of tx descriptors */
|
|
|
|
bus_addr_t txq_buf_busaddr; /* bus addr of tx buffers */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* With a 4096 page size, we get 256 descriptors per page. We want 1024
|
|
|
|
* which will give us about 8ms of 64 byte packets (2ms for each priority
|
|
|
|
* queue).
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct gfe_rxbuf {
|
2008-06-11 02:44:07 +04:00
|
|
|
uint8_t rxb_data[GE_RXBUF_SIZE];
|
2003-03-06 01:08:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gfe_rxqueue {
|
|
|
|
struct gfe_dmamem rxq_desc_mem; /* receive descriptor memory */
|
|
|
|
struct gfe_dmamem rxq_buf_mem; /* receive buffer memory */
|
|
|
|
struct mbuf *rxq_curpkt; /* mbuf for current packet */
|
|
|
|
volatile struct gt_eth_desc *rxq_descs;
|
|
|
|
struct gfe_rxbuf *rxq_bufs;
|
|
|
|
unsigned int rxq_fi; /* next to be returned to CPU */
|
|
|
|
unsigned int rxq_active; /* # of descriptors given to GT */
|
|
|
|
uint32_t rxq_intrbits; /* bits to write to EIMR */
|
|
|
|
bus_addr_t rxq_desc_busaddr; /* bus addr of rx descriptors */
|
|
|
|
uint32_t rxq_cmdsts; /* save cmdsts from first descriptor */
|
|
|
|
bus_size_t rxq_efrdp;
|
|
|
|
bus_size_t rxq_ecrdp;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum gfe_txprio {
|
|
|
|
GE_TXPRIO_HI=1,
|
|
|
|
GE_TXPRIO_LO=0,
|
|
|
|
GE_TXPRIO_NONE=2
|
|
|
|
};
|
|
|
|
enum gfe_rxprio {
|
|
|
|
GE_RXPRIO_HI=3,
|
|
|
|
GE_RXPRIO_MEDHI=2,
|
|
|
|
GE_RXPRIO_MEDLO=1,
|
|
|
|
GE_RXPRIO_LO=0
|
|
|
|
};
|
|
|
|
|
2010-04-28 17:51:55 +04:00
|
|
|
struct gfec_softc {
|
|
|
|
device_t sc_dev; /* must be first */
|
|
|
|
|
|
|
|
bus_space_tag_t sc_iot;
|
|
|
|
bus_space_handle_t sc_ioh; /* subregion for ethernet */
|
|
|
|
|
|
|
|
kmutex_t sc_mtx;
|
|
|
|
};
|
|
|
|
|
2003-03-06 01:08:18 +03:00
|
|
|
struct gfe_softc {
|
2010-04-28 17:51:55 +04:00
|
|
|
device_t sc_dev; /* must be first */
|
2003-03-06 01:08:18 +03:00
|
|
|
struct ethercom sc_ec; /* common ethernet glue */
|
|
|
|
struct callout sc_co; /* resource recovery */
|
|
|
|
mii_data_t sc_mii; /* mii interface */
|
|
|
|
|
2010-04-28 17:51:55 +04:00
|
|
|
bus_space_tag_t sc_memt;
|
2003-03-17 19:41:15 +03:00
|
|
|
bus_space_handle_t sc_memh; /* subregion for ethernet */
|
2003-03-06 01:08:18 +03:00
|
|
|
bus_dma_tag_t sc_dmat;
|
|
|
|
int sc_macno; /* which mac? 0, 1, or 2 */
|
|
|
|
|
|
|
|
unsigned int sc_tickflags;
|
|
|
|
#define GE_TICK_TX_IFSTART 0x0001
|
|
|
|
#define GE_TICK_RX_RESTART 0x0002
|
|
|
|
unsigned int sc_flags;
|
|
|
|
#define GE_ALLMULTI 0x0001
|
|
|
|
#define GE_PHYSTSCHG 0x0002
|
|
|
|
#define GE_RXACTIVE 0x0004
|
2005-02-01 23:47:02 +03:00
|
|
|
#define GE_NOFREE 0x0008 /* Don't free on disable */
|
2003-03-06 01:08:18 +03:00
|
|
|
uint32_t sc_pcr; /* current EPCR value */
|
|
|
|
uint32_t sc_pcxr; /* current EPCXR value */
|
|
|
|
uint32_t sc_intrmask; /* current EIMR value */
|
|
|
|
uint32_t sc_idlemask; /* suspended EIMR bits */
|
|
|
|
size_t sc_max_frame_length; /* maximum frame length */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hash table related members
|
|
|
|
*/
|
|
|
|
struct gfe_dmamem sc_hash_mem; /* dma'ble hash table */
|
|
|
|
uint64_t *sc_hashtable;
|
|
|
|
unsigned int sc_hashmask; /* 0x1ff or 0x1fff */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Transmit related members
|
|
|
|
*/
|
2005-02-01 23:47:02 +03:00
|
|
|
struct gfe_txqueue sc_txq[2]; /* High & Low transmit queues */
|
2003-03-06 01:08:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Receive related members
|
|
|
|
*/
|
2005-02-01 23:47:02 +03:00
|
|
|
struct gfe_rxqueue sc_rxq[4]; /* Hi/MedHi/MedLo/Lo receive queues */
|
2010-04-28 17:51:55 +04:00
|
|
|
|
First step of random number subsystem rework described in
<20111022023242.BA26F14A158@mail.netbsd.org>. This change includes
the following:
An initial cleanup and minor reorganization of the entropy pool
code in sys/dev/rnd.c and sys/dev/rndpool.c. Several bugs are
fixed. Some effort is made to accumulate entropy more quickly at
boot time.
A generic interface, "rndsink", is added, for stream generators to
request that they be re-keyed with good quality entropy from the pool
as soon as it is available.
The arc4random()/arc4randbytes() implementation in libkern is
adjusted to use the rndsink interface for rekeying, which helps
address the problem of low-quality keys at boot time.
An implementation of the FIPS 140-2 statistical tests for random
number generator quality is provided (libkern/rngtest.c). This
is based on Greg Rose's implementation from Qualcomm.
A new random stream generator, nist_ctr_drbg, is provided. It is
based on an implementation of the NIST SP800-90 CTR_DRBG by
Henric Jungheim. This generator users AES in a modified counter
mode to generate a backtracking-resistant random stream.
An abstraction layer, "cprng", is provided for in-kernel consumers
of randomness. The arc4random/arc4randbytes API is deprecated for
in-kernel use. It is replaced by "cprng_strong". The current
cprng_fast implementation wraps the existing arc4random
implementation. The current cprng_strong implementation wraps the
new CTR_DRBG implementation. Both interfaces are rekeyed from
the entropy pool automatically at intervals justifiable from best
current cryptographic practice.
In some quick tests, cprng_fast() is about the same speed as
the old arc4randbytes(), and cprng_strong() is about 20% faster
than rnd_extract_data(). Performance is expected to improve.
The AES code in src/crypto/rijndael is no longer an optional
kernel component, as it is required by cprng_strong, which is
not an optional kernel component.
The entropy pool output is subjected to the rngtest tests at
startup time; if it fails, the system will reboot. There is
approximately a 3/10000 chance of a false positive from these
tests. Entropy pool _input_ from hardware random numbers is
subjected to the rngtest tests at attach time, as well as the
FIPS continuous-output test, to detect bad or stuck hardware
RNGs; if any are detected, they are detached, but the system
continues to run.
A problem with rndctl(8) is fixed -- datastructures with
pointers in arrays are no longer passed to userspace (this
was not a security problem, but rather a major issue for
compat32). A new kernel will require a new rndctl.
The sysctl kern.arandom() and kern.urandom() nodes are hooked
up to the new generators, but the /dev/*random pseudodevices
are not, yet.
Manual pages for the new kernel interfaces are forthcoming.
2011-11-20 02:51:18 +04:00
|
|
|
krndsource_t sc_rnd_source;
|
2003-03-06 01:08:18 +03:00
|
|
|
};
|
2010-04-28 17:51:55 +04:00
|
|
|
#endif /* _IF_GFEVAR_H_ */
|