]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/frv/pdk403/v2_0/include/devs_eth_pdk403.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / frv / pdk403 / v2_0 / include / devs_eth_pdk403.inl
1 //==========================================================================
2 //
3 //      devs/eth/frv/pdk403/..../include/devs_eth_pdk403.inl
4 //
5 //      PDK403 ethernet I/O definitions.
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):    jskov, hmt, gthomas
44 // Contributors: jskov
45 // Date:         2001-02-28
46 // Purpose:      PDK403 ethernet defintions
47 //####DESCRIPTIONEND####
48 //==========================================================================
49
50 #include <cyg/hal/hal_intr.h>           // CYGNUM_HAL_INTERRUPT_ETHR
51 #include <cyg/hal/hal_if.h>
52
53 #ifdef __WANT_CONFIG
54
55 #define CYGHWR_NS_DP83902A_PLF_16BIT_DATA
56 #define CYGHWR_NS_DP83902A_PLF_BROKEN_RX_DMA
57
58 #define CYGHWR_NS_DP83902A_PLF_INIT(dp) cyg_ax88796_eth_init(dp)
59
60 #ifndef CYGINT_IO_ETH_INT_SUPPORT_REQUIRED
61
62 #define CYGHWR_NS_DP83902A_PLF_INT_CLEAR(dp) \
63                 cyg_drv_interrupt_acknowledge((dp)->interrupt)
64 #endif
65
66 #endif // __WANT_CONFIG
67
68 #ifdef __WANT_DEVS
69
70 #if defined(CYGSEM_DEVS_ETH_PDK403_ETH0_SET_ESA) 
71 #if defined(CYGPKG_REDBOOT) 
72 #include <pkgconf/redboot.h>
73 #ifdef CYGSEM_REDBOOT_FLASH_CONFIG
74 #include <redboot.h>
75 #include <flash_config.h>
76 RedBoot_config_option("Network hardware address [MAC]",
77                       lan_esa,
78                       ALWAYS_ENABLED, true,
79                       CONFIG_ESA, 0
80     );
81 #endif  // CYGSEM_REDBOOT_FLASH_CONFIG
82 #endif  // CYGPKG_REDBOOT
83 #include <cyg/hal/hal_if.h>
84 #ifndef CONFIG_ESA
85 #define CONFIG_ESA 6
86 #endif
87 #endif
88
89 extern void cyg_ax88796_eth_init(dp83902a_priv_data_t *dp);
90
91
92 #ifdef CYGPKG_DEVS_ETH_PDK403_ETH0
93
94 static dp83902a_priv_data_t dp83902a_eth0_priv_data = { 
95     base : (cyg_uint8*) 0x10000200,  //
96     data : (cyg_uint8*) 0x10000210,  // Filled in at runtime
97     reset: (cyg_uint8*) 0x1000021f,  //
98     interrupt: CYGNUM_HAL_INTERRUPT_LAN,           //
99     tx_buf1: 0x40,          // 
100     tx_buf2: 0x48,          // Buffer layout - change with care
101     rx_buf_start: 0x50,     //
102     rx_buf_end: 0x80,       //
103 #ifdef CYGSEM_DEVS_ETH_PDK403_ETH0_SET_ESA
104     esa : CYGDAT_DEVS_ETH_PDK403_ETH0_ESA,
105     hardwired_esa : true,
106 #else
107     hardwired_esa : false,
108 #endif
109 };
110
111 ETH_DRV_SC(dp83902a_sc,
112            &dp83902a_eth0_priv_data, // Driver specific data
113            CYGDAT_DEVS_ETH_PDK403_ETH0_NAME,
114            dp83902a_start,
115            dp83902a_stop,
116            dp83902a_control,
117            dp83902a_can_send,
118            dp83902a_send,
119            dp83902a_recv,
120            dp83902a_deliver,     // "pseudoDSR" called from fast net thread
121            dp83902a_poll,        // poll function, encapsulates ISR and DSR
122            dp83902a_int_vector);
123
124 NETDEVTAB_ENTRY(dp83902a_netdev, 
125                 "dp83902a_" CYGDAT_DEVS_ETH_PDK403_ETH0_NAME,
126                 dp83902a_init, 
127                 &dp83902a_sc);
128
129 #endif // CYGPKG_DEVS_ETH_PDK403_ETH0
130
131 #endif // __WANT_DEVS
132
133 // --------------------------------------------------------------
134
135 // EOF devs_eth_pdk403.inl