OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [devs/] [eth/] [arm/] [innovator/] [v2_0/] [include/] [devs_eth_innovator.inl] - Blame information for rev 346

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      devs/eth/arm/innovator/..../include/devs_eth_innovator.inl
4
//
5
//      Innovator 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 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):    Jordi Colomer , Patrick Doyle 
44
// Contributors: Patrick Doyle 
45
// Date:         2001-06-18
46
// Purpose:      Innovator ethernet definitions
47
//####DESCRIPTIONEND####
48
//==========================================================================
49
 
50
#include 
51
#include 
52
#include 
53
#include 
54
 
55
//  #define CYGNUM_DEVS_ETH_SMSC_LAN91CXX_SHIFT_ADDR    2
56
 
57
// MAC address is stored as a Redboot config option
58
#ifdef CYGPKG_REDBOOT
59
#include 
60
#ifdef CYGSEM_REDBOOT_FLASH_CONFIG
61
#include 
62
#include 
63
 
64
RedBoot_config_option("Network hardware address [MAC]",
65
                      innovator_esa,
66
                      ALWAYS_ENABLED, true,
67
                      CONFIG_ESA, 0
68
    );
69
#endif
70
#endif
71
 
72
// ESA address fetch function
73
static void innovator_get_ESA(struct lan91cxx_priv_data *cpd)
74
{
75
    // Fetch hardware address from RedBoot config
76
#if defined(CYGSEM_DEVS_ETH_ARM_INNOVATOR_REDBOOT_ESA)
77
#if defined(CYGPKG_REDBOOT) && \
78
    defined(CYGSEM_REDBOOT_FLASH_CONFIG)
79
    flash_get_config("innovator_esa", cpd->enaddr, CONFIG_ESA);
80
#else
81
#error "No RedBoot flash configuration to store ESA"
82
#endif
83
#else
84
    unsigned char static_esa[] = CYGDAT_DEVS_ETH_ARM_INNOVATOR_ESA;
85
    memcpy(cpd->enaddr, static_esa, 6);
86
#endif
87
}
88
 
89
static lan91cxx_priv_data lan91cxx_eth0_priv_data = {
90
 
91
    config_enaddr : innovator_get_ESA,
92
#ifndef CYGSEM_DEVS_ETH_ARM_INNOVATOR_REDBOOT_ESA
93
    enaddr: CYGDAT_DEVS_ETH_ARM_INNOVATOR_ESA,
94
#endif
95
#if 0
96
    base : (unsigned short *) SA1110_FHH_ETH_IOBASE,
97
    attbase : (unsigned char *) SA1110_FHH_ETH_MMBASE,
98
    interrupt : SA1110_IRQ_GPIO_ETH
99
#else
100
    base : (unsigned short *) 0x08000300,
101
#endif
102
};
103
 
104
ETH_DRV_SC(lan91cxx_sc,
105
           &lan91cxx_eth0_priv_data,          // Driver specific data
106
           CYGDAT_DEVS_ETH_ARM_INNOVATOR_NAME, // Name for device
107
           lan91cxx_start,
108
           lan91cxx_stop,
109
           lan91cxx_control,
110
           lan91cxx_can_send,
111
           lan91cxx_send,
112
           lan91cxx_recv,
113
           lan91cxx_deliver,
114
           lan91cxx_poll,
115
           lan91cxx_int_vector
116
);
117
 
118
NETDEVTAB_ENTRY(lan91cxx_netdev,
119
                "lan91cxx_" CYGDAT_DEVS_ETH_ARM_INNOVATOR_NAME,
120
                smsc_lan91cxx_init,
121
                &lan91cxx_sc);
122
 
123
//EOF devs_eth_innovator.inl
124
 
125
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.