]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/devs/eth/arm/imx_3stack/v2_0/include/devs_eth_arm_board.inl
Initial revision
[karo-tx-redboot.git] / packages / devs / eth / arm / imx_3stack / v2_0 / include / devs_eth_arm_board.inl
1 //==========================================================================
2 //
3 //      devs_eth_arm_board.inl
4 //
5 //      Board 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
42 #include <cyg/hal/hal_intr.h>           // CYGNUM_HAL_INTERRUPT_ETHR
43 #include <cyg/hal/hal_if.h>
44
45 #ifdef CYGPKG_REDBOOT
46 #include <pkgconf/redboot.h>
47 #ifdef CYGSEM_REDBOOT_FLASH_CONFIG
48 #include <redboot.h>
49 #include <flash_config.h>
50 #endif
51 #endif
52
53 extern unsigned int sys_ver;
54
55 #ifdef __WANT_DEVS
56
57 #ifdef CYGPKG_DEVS_ETH_ARM_MXCBOARD_ETH0
58 #if defined(CYGPKG_REDBOOT) && defined(CYGSEM_REDBOOT_FLASH_CONFIG)
59 RedBoot_config_option("Set " CYGDAT_DEVS_ETH_ARM_MXCBOARD_ETH0_NAME " network hardware address [MAC]",
60                       eth0_esa,
61                       ALWAYS_ENABLED, true,
62                       CONFIG_BOOL, false
63                      );
64 RedBoot_config_option(CYGDAT_DEVS_ETH_ARM_MXCBOARD_ETH0_NAME " network hardware address [MAC]",
65                       eth0_esa_data,
66                       "eth0_esa", true,
67                       CONFIG_ESA, 0
68                      );
69 #endif // CYGPKG_REDBOOT && CYGSEM_REDBOOT_FLASH_CONFIG
70
71 #ifdef CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
72 // Note that this section *is* active in an application, outside RedBoot,
73 // where the above section is not included.
74
75 #include <cyg/hal/hal_if.h>
76
77 #ifndef CONFIG_ESA
78 #define CONFIG_ESA (6)
79 #endif
80 #ifndef CONFIG_BOOL
81 #define CONFIG_BOOL (1)
82 #endif
83
84 cyg_bool _board_provide_eth0_esa(unsigned char * mac)
85 {
86     cyg_bool set_esa;
87     int ok;
88     ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,
89                                       "eth0_esa", &set_esa, CONFIG_BOOL);
90     if (ok && set_esa) {
91         ok = CYGACC_CALL_IF_FLASH_CFG_OP( CYGNUM_CALL_IF_FLASH_CFG_GET,
92                                           "eth0_esa_data", mac, CONFIG_ESA);
93     }
94
95     return ok && set_esa;
96 }
97 #endif // CYGSEM_HAL_VIRTUAL_VECTOR_SUPPORT
98
99 #endif // CYGPKG_DEVS_ETH_ARM_MXCBOARD_ETH0
100
101 #endif // __WANT_DEVS