source: rtems/c/src/libchip/network/dwmac-1000-ethernet-mac-ops.c @ 74172b7d

5
Last change on this file since 74172b7d was 4953b724, checked in by Ralf Kirchner <ralf.kirchner@…>, on 02/17/14 at 14:43:53

libchip: Add dwmac 10/100/1000 network driver

  • Property mode set to 100644
File size: 864 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Operations for the dwmac 1000 ethernet mac
5 *
6 * DWMAC_1000_ETHERNET_MAC_OPS will be accessible in the API header and can be
7 * passed to the configuration data if handling a DWMAC 1000 driver
8 */
9
10/*
11 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
12 *
13 *  embedded brains GmbH
14 *  Dornierstr. 4
15 *  82178 Puchheim
16 *  Germany
17 *  <rtems@embedded-brains.de>
18 *
19 * The license and distribution terms for this file may be
20 * found in the file LICENSE in this distribution or at
21 * http://www.rtems.org/license/LICENSE.
22 */
23
24#include "dwmac-common.h"
25
26extern const dwmac_common_dma_ops  dwmac_dma_ops_1000;
27extern const dwmac_common_core_ops dwmac_core_ops_1000;
28
29const dwmac_ethernet_mac_ops       DWMAC_1000_ETHERNET_MAC_OPS =
30  DWMAC_ETHERNET_MAC_OPS_INITIALIZER(
31    &dwmac_core_ops_1000,
32    &dwmac_dma_ops_1000
33    );
Note: See TracBrowser for help on using the repository browser.