1 |
786 |
skrzyp |
#ifndef CYGONCE_DEVS_MOAB_ETH_INL
|
2 |
|
|
#define CYGONCE_DEVS_MOAB_ETH_INL
|
3 |
|
|
//==========================================================================
|
4 |
|
|
//
|
5 |
|
|
// moab_eth.inl
|
6 |
|
|
//
|
7 |
|
|
// Hardware specifics for TAMS MOAB ethernet support
|
8 |
|
|
//
|
9 |
|
|
//==========================================================================
|
10 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
11 |
|
|
// -------------------------------------------
|
12 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
13 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
14 |
|
|
//
|
15 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
16 |
|
|
// the terms of the GNU General Public License as published by the Free
|
17 |
|
|
// Software Foundation; either version 2 or (at your option) any later
|
18 |
|
|
// version.
|
19 |
|
|
//
|
20 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT
|
21 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
22 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
23 |
|
|
// for more details.
|
24 |
|
|
//
|
25 |
|
|
// You should have received a copy of the GNU General Public License
|
26 |
|
|
// along with eCos; if not, write to the Free Software Foundation, Inc.,
|
27 |
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
28 |
|
|
//
|
29 |
|
|
// As a special exception, if other files instantiate templates or use
|
30 |
|
|
// macros or inline functions from this file, or you compile this file
|
31 |
|
|
// and link it with other works to produce a work based on this file,
|
32 |
|
|
// this file does not by itself cause the resulting work to be covered by
|
33 |
|
|
// the GNU General Public License. However the source code for this file
|
34 |
|
|
// must still be made available in accordance with section (3) of the GNU
|
35 |
|
|
// General Public License v2.
|
36 |
|
|
//
|
37 |
|
|
// This exception does not invalidate any other reasons why a work based
|
38 |
|
|
// on this file might be covered by the GNU General Public License.
|
39 |
|
|
// -------------------------------------------
|
40 |
|
|
// ####ECOSGPLCOPYRIGHTEND####
|
41 |
|
|
//==========================================================================
|
42 |
|
|
//#####DESCRIPTIONBEGIN####
|
43 |
|
|
//
|
44 |
|
|
// Author(s): gthomas
|
45 |
|
|
// Contributors: gthomas
|
46 |
|
|
// Date: 2003-08-19
|
47 |
|
|
// Purpose:
|
48 |
|
|
// Description:
|
49 |
|
|
//
|
50 |
|
|
//####DESCRIPTIONEND####
|
51 |
|
|
//
|
52 |
|
|
//==========================================================================
|
53 |
|
|
|
54 |
|
|
#include CYGDAT_DEVS_PPC405_ETH_CDL
|
55 |
|
|
|
56 |
|
|
#ifdef CYGHWR_DEVS_ETH_POWERPC_MOAB_ETH0
|
57 |
|
|
ETH_PHY_REG_LEVEL_ACCESS_FUNS(eth0_phy,
|
58 |
|
|
ppc405_eth_phy_init,
|
59 |
|
|
NULL,
|
60 |
|
|
ppc405_eth_phy_put_reg,
|
61 |
|
|
ppc405_eth_phy_get_reg);
|
62 |
|
|
|
63 |
|
|
// Align buffers on a cache boundary
|
64 |
|
|
#define RxBUFSIZE CYGNUM_DEVS_ETH_POWERPC_PPC405_RxNUM*CYGNUM_DEVS_ETH_POWERPC_PPC405_BUFSIZE
|
65 |
|
|
#define TxBUFSIZE CYGNUM_DEVS_ETH_POWERPC_PPC405_TxNUM*CYGNUM_DEVS_ETH_POWERPC_PPC405_BUFSIZE
|
66 |
|
|
static unsigned char ppc405_eth_rxbufs[RxBUFSIZE] __attribute__((aligned(HAL_DCACHE_LINE_SIZE)));
|
67 |
|
|
static unsigned char ppc405_eth_txbufs[TxBUFSIZE] __attribute__((aligned(HAL_DCACHE_LINE_SIZE)));
|
68 |
|
|
static mal_bd_t ppc405_eth_rxbd[CYGNUM_DEVS_ETH_POWERPC_PPC405_RxNUM] __attribute__((aligned(HAL_DCACHE_LINE_SIZE)));
|
69 |
|
|
static mal_bd_t ppc405_eth_txbd[CYGNUM_DEVS_ETH_POWERPC_PPC405_TxNUM] __attribute__((aligned(HAL_DCACHE_LINE_SIZE)));
|
70 |
|
|
|
71 |
|
|
extern char _moab_eth0_ESA[];
|
72 |
|
|
static struct ppc405_eth_info ppc405_eth0_info = {
|
73 |
|
|
0, // Interrupt vector
|
74 |
|
|
"eth0_esa",
|
75 |
|
|
_moab_eth0_ESA,
|
76 |
|
|
CYGNUM_DEVS_ETH_POWERPC_PPC405_RxNUM, // Number of Rx buffers
|
77 |
|
|
ppc405_eth_rxbufs, // Rx buffer space
|
78 |
|
|
ppc405_eth_rxbd, // Rx buffer headers
|
79 |
|
|
CYGNUM_DEVS_ETH_POWERPC_PPC405_TxNUM, // Number of Tx buffers
|
80 |
|
|
ppc405_eth_txbufs, // Tx buffer space
|
81 |
|
|
ppc405_eth_txbd, // Tx buffer headers
|
82 |
|
|
ð0_phy, // PHY access routines
|
83 |
|
|
};
|
84 |
|
|
|
85 |
|
|
ETH_DRV_SC(ppc405_eth0_sc,
|
86 |
|
|
&ppc405_eth0_info, // Driver specific data
|
87 |
|
|
"eth0", // Name for this interface
|
88 |
|
|
ppc405_eth_start,
|
89 |
|
|
ppc405_eth_stop,
|
90 |
|
|
ppc405_eth_control,
|
91 |
|
|
ppc405_eth_can_send,
|
92 |
|
|
ppc405_eth_send,
|
93 |
|
|
ppc405_eth_recv,
|
94 |
|
|
ppc405_eth_deliver,
|
95 |
|
|
ppc405_eth_int,
|
96 |
|
|
ppc405_eth_int_vector);
|
97 |
|
|
|
98 |
|
|
NETDEVTAB_ENTRY(ppc405_netdev,
|
99 |
|
|
"eth0",
|
100 |
|
|
ppc405_eth_init,
|
101 |
|
|
&ppc405_eth0_sc);
|
102 |
|
|
|
103 |
|
|
#ifdef CYGPKG_REDBOOT
|
104 |
|
|
#include
|
105 |
|
|
#ifdef CYGSEM_REDBOOT_FLASH_CONFIG
|
106 |
|
|
#include
|
107 |
|
|
#include
|
108 |
|
|
RedBoot_config_option("eth0 network hardware address [MAC]",
|
109 |
|
|
eth0_esa,
|
110 |
|
|
ALWAYS_ENABLED, true,
|
111 |
|
|
CONFIG_ESA, _moab_eth0_ESA
|
112 |
|
|
);
|
113 |
|
|
#endif // CYGSEM_REDBOOT_FLASH_CONFIG
|
114 |
|
|
#endif // CYGPKG_REDBOOT
|
115 |
|
|
|
116 |
|
|
#endif // CYGHWR_DEVS_ETH_POWERPC_MOAB_ETH0
|
117 |
|
|
|
118 |
|
|
#endif // CYGONCE_DEVS_MOAB_ETH_INL
|
119 |
|
|
// ------------------------------------------------------------------------
|