Deleted Added
full compact
cavium-ethernet.h (213150) cavium-ethernet.h (213346)
1/*************************************************************************
2Copyright (c) 2003-2007 Cavium Networks (support@cavium.com). All rights
3reserved.
4
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are
8met:
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
23This 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
25TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
26AND 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*************************************************************************/
1/*************************************************************************
2Copyright (c) 2003-2007 Cavium Networks (support@cavium.com). All rights
3reserved.
4
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are
8met:
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
23This 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
25TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
26AND 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: head/sys/mips/cavium/octe/cavium-ethernet.h 213150 2010-09-25 01:18:01Z jmallett $ */
29/* $FreeBSD: head/sys/mips/cavium/octe/cavium-ethernet.h 213346 2010-10-02 05:43:17Z jmallett $ */
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 */
47typedef 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;
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 */
47typedef 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 int (*mdio_read)(struct ifnet *, int, int);
76 void (*mdio_write)(struct ifnet *, int, int, int);
75
76 struct ifqueue tx_free_queue[16];
77
78 int need_link_update;
79 struct task link_task;
80 struct ifmedia media;
81 int if_flags;
82
83 struct mtx tx_mtx;
84} cvm_oct_private_t;
85
86
87/**
88 * Free a work queue entry received in a intercept callback.
89 *
90 * @param work_queue_entry
91 * Work queue entry to free
92 * @return Zero on success, Negative on failure.
93 */
94int cvm_oct_free_work(void *work_queue_entry);
95
96#endif
77
78 struct ifqueue tx_free_queue[16];
79
80 int need_link_update;
81 struct task link_task;
82 struct ifmedia media;
83 int if_flags;
84
85 struct mtx tx_mtx;
86} cvm_oct_private_t;
87
88
89/**
90 * Free a work queue entry received in a intercept callback.
91 *
92 * @param work_queue_entry
93 * Work queue entry to free
94 * @return Zero on success, Negative on failure.
95 */
96int cvm_oct_free_work(void *work_queue_entry);
97
98#endif