]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/devs/eth/sh/dreamcast/v2_0/include/devs_eth_sh_dreamcast_rltk8139.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / sh / dreamcast / v2_0 / include / devs_eth_sh_dreamcast_rltk8139.inl
1 //==========================================================================
2 //
3 //      devs/eth/sh/dreamcast/include/devs_eth_sh_dreamcast_rltk8139.inl
4 //
5 //      SEGA Dreamcast Broadband Adapter I/O definitions.
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 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 //####ECOSGPLCOPYRIGHTEND####
37 //==========================================================================
38 //#####DESCRIPTIONBEGIN####
39 //
40 // Author(s):   Yoshinori Sato
41 // Contributors:
42 // Date:        2004-04-22
43 // Purpose:     SEGA Dreamcast Broadband Adapter definitions
44 //####DESCRIPTIONEND####
45 //==========================================================================
46
47 #ifdef CYGPKG_DEVS_ETH_SH_DREAMCAST_RLTK8139_ETH0
48
49 static Rltk8139_t rltk8139_eth0_priv_data = {
50         0, 0, 0
51 };
52
53 ETH_DRV_SC(rltk8139_sc0,
54            &rltk8139_eth0_priv_data,
55            CYGDAT_DEVS_ETH_SH_DREAMCAST_RLTK8139_ETH0_NAME,
56            rltk8139_start,
57            rltk8139_stop,
58            rltk8139_control,
59            rltk8139_can_send,
60            rltk8139_send,
61            rltk8139_recv,
62            rltk8139_deliver,
63            rltk8139_poll,
64            rltk8139_int_vector
65            );
66
67 NETDEVTAB_ENTRY(rltk8139_netdev0,
68                 "rltk8139_" CYGDAT_DEVS_ETH_SH_DREAMCAST_RLTK8139_ETH0_NAME,
69                 rltk8139_init,
70                 &rltk8139_sc0);
71
72 void __dreamcast_bba_init(struct eth_drv_sc *sc);
73 #define CYGHWR_RLTK_8139_PLF_INIT(sc) __dreamcast_bba_init(sc);
74
75 #endif // CYGPKG_DEVS_ETH_SH_DREAMCAST_RLTK8139_ETH0
76
77 // EOF devs_eth_sh_dreamcast_rltk8139.inl