]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/mips/cavium/octe/cavium-ethernet.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / mips / cavium / octe / cavium-ethernet.h
1 /*************************************************************************
2 Copyright (c) 2003-2007  Cavium Networks (support@cavium.com). All rights
3 reserved.
4
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are
8 met:
9
10     * Redistributions of source code must retain the above copyright
11       notice, this list of conditions and the following disclaimer.
12
13     * Redistributions in binary form must reproduce the above
14       copyright notice, this list of conditions and the following
15       disclaimer in the documentation and/or other materials provided
16       with the distribution.
17
18     * Neither the name of Cavium Networks nor the names of
19       its contributors may be used to endorse or promote products
20       derived from this software without specific prior written
21       permission.
22
23 This Software, including technical data, may be subject to U.S. export  control laws, including the U.S. Export Administration Act and its  associated regulations, and may be subject to export or import  regulations in other countries.
24
25 TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
26 AND WITH ALL FAULTS AND CAVIUM  NETWORKS MAKES NO PROMISES, REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
27
28 *************************************************************************/
29 /* $FreeBSD$ */
30
31 /**
32  * @file
33  * External interface for the Cavium Octeon ethernet driver.
34  *
35  * $Id: cavium-ethernet.h 41589 2009-03-19 19:58:58Z cchavva $
36  *
37  */
38 #ifndef CAVIUM_ETHERNET_H
39 #define CAVIUM_ETHERNET_H
40
41 #include <net/if_media.h>
42
43 /**
44  * This is the definition of the Ethernet driver's private
45  * driver state stored in ifp->if_softc.
46  */
47 typedef struct {
48         /* XXX FreeBSD device softcs must start with an ifnet pointer.  */
49         struct ifnet *ifp;
50
51         int                     port;           /* PKO hardware output port */
52         int                     queue;          /* PKO hardware queue for the port */
53         int                     fau;            /* Hardware fetch and add to count outstanding tx buffers */
54         int                     imode;          /* Type of port. This is one of the enums in cvmx_helper_interface_mode_t */
55 #if 0
56         struct ifnet_stats stats;          /* Device statistics */
57 #endif
58         uint64_t                link_info;      /* Last negotiated link state */
59         void (*poll)(struct ifnet *ifp);   /* Called periodically to check link status */
60
61         /*
62          * FreeBSD additions.
63          */
64         device_t dev;
65         device_t miibus;
66
67         int (*open)(struct ifnet *ifp);
68         int (*stop)(struct ifnet *ifp);
69
70         int (*init)(struct ifnet *ifp);
71         void (*uninit)(struct ifnet *ifp);
72
73         uint8_t mac[6];
74         int phy_id;
75         const char *phy_device;
76         int (*mdio_read)(struct ifnet *, int, int);
77         void (*mdio_write)(struct ifnet *, int, int, int);
78
79         struct ifqueue tx_free_queue[16];
80
81         int need_link_update;
82         struct task link_task;
83         struct ifmedia media;
84         int if_flags;
85
86         struct mtx tx_mtx;
87 } cvm_oct_private_t;
88
89
90 /**
91  * Free a work queue entry received in a intercept callback.
92  *
93  * @param work_queue_entry
94  *               Work queue entry to free
95  * @return Zero on success, Negative on failure.
96  */
97 int cvm_oct_free_work(void *work_queue_entry);
98
99 #endif