source: rtems-libbsd/rtemsbsd/sys/powerpc/drivers/net/ethernet/freescale/dpaa/if_fmanmac.h @ a677fe9

55-freebsd-126-freebsd-12
Last change on this file since a677fe9 was a677fe9, checked in by Sebastian Huber <sebastian.huber@…>, on 10/23/17 at 07:11:15

dpaa: Use only one FMan MAC SGT zone

  • Property mode set to 100644
File size: 2.4 KB
Line 
1/*
2 * Copyright (c) 2015 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 _IF_FMANMAC_H
28#define _IF_FMANMAC_H
29
30#include <sys/param.h>
31#include <sys/lock.h>
32#include <sys/bus.h>
33#include <sys/callout.h>
34#include <sys/mutex.h>
35#include <sys/queue.h>
36#include <sys/socket.h>
37
38#include <net/if.h>
39#include <net/if_media.h>
40#include <net/if_var.h>
41
42#include <dev/mii/mii.h>
43#include <dev/mii/miivar.h>
44
45#include <linux/netdevice.h>
46#include <linux/phy.h>
47
48#include "mac.h"
49
50#ifdef __cplusplus
51extern "C" {
52#endif /* __cplusplus */
53
54struct fman_mac_softc {
55        struct mac_device       mac_dev;
56        struct fdt_phy_device   *phy_dev;
57        device_t                miibus;
58        struct mii_data         *mii_softc;
59        struct ifnet            *ifp;
60        int                     if_flags;
61        struct mtx              mtx;
62        struct callout          fman_mac_callout;
63        char                    name[8];
64};
65
66int fman_mac_dev_attach(device_t dev);
67
68int fman_mac_dev_detach(device_t dev);
69
70int fman_mac_miibus_read_reg(device_t dev, int phy, int reg);
71
72int fman_mac_miibus_write_reg(device_t dev, int phy, int reg, int val);
73
74void fman_mac_miibus_statchg(device_t dev);
75
76#ifdef __cplusplus
77}
78#endif /* __cplusplus */
79
80#endif /* _IF_FMANMAC_H */
Note: See TracBrowser for help on using the repository browser.