source: rtems-libbsd/linux/drivers/net/ethernet/freescale/sdk_dpaa/dpaa_eth.h @ d62a3df

55-freebsd-126-freebsd-12
Last change on this file since d62a3df was d62a3df, checked in by Sebastian Huber <sebastian.huber@…>, on 01/17/18 at 12:28:45

sdk_dpaa: Port to RTEMS

Update #3277.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 * Copyright (c) 2018 embedded brains GmbH
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#ifndef _SDK_DPAA_DPAA_ETH_H
28#define _SDK_DPAA_DPAA_ETH_H
29
30#include "../dpaa/dpaa_eth.h"
31
32#define dpa_bp dpaa_bp
33#define dpa_fq_alloc dpaa_fq_alloc
34#define dpa_fq_cbs_t dpaa_fq_cbs
35#define dpa_fq_list dpaa_fq_list
36#define dpa_fq_setup dpaa_fq_setup
37#define dpa_fq_type dpaa_fq_type
38#define dpa_get_channel dpaa_get_channel
39#define dpa_percpu_priv_s dpaa_percpu_priv
40#define dpa_priv_s dpaa_priv
41
42enum port_type { RX, TX };
43
44struct fqid_cell {
45        uint32_t start;
46        uint32_t count;
47};
48
49struct ifnet;
50
51struct if_ml_softc {
52        struct ifnet *ifp;
53        struct mtx mtx;
54        struct net_device net_dev;
55};
56
57void if_ml_attach(struct if_ml_softc *sc, int unit,
58    const uint8_t *mac_address);
59
60#endif /* _SDK_DPAA_DPAA_ETH_H */
Note: See TracBrowser for help on using the repository browser.