source: rtems/c/src/lib/libbsp/powerpc/gen83xx/network/network.c @ ac4b164

4.104.115
Last change on this file since ac4b164 was ac4b164, checked in by Joel Sherrill <joel.sherrill@…>, on 09/22/08 at 17:07:02

2008-09-22 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, network/network.c: Fix missed name change.
  • Property mode set to 100644
File size: 5.5 KB
Line 
1/*===============================================================*\
2| Project: RTEMS support for MPC83xx                              |
3+-----------------------------------------------------------------+
4|                    Copyright (c) 2007                           |
5|                    Embedded Brains GmbH                         |
6|                    Obere Lagerstr. 30                           |
7|                    D-82178 Puchheim                             |
8|                    Germany                                      |
9|                    rtems@embedded-brains.de                     |
10+-----------------------------------------------------------------+
11| The license and distribution terms for this file may be         |
12| found in the file LICENSE in this distribution or at            |
13|                                                                 |
14| http://www.rtems.com/license/LICENSE.                           |
15|                                                                 |
16+-----------------------------------------------------------------+
17| this file contains the board specific portion                   |
18| of the network interface driver                                 |
19\*===============================================================*/
20
21#include <rtems.h>
22#include <rtems/rtems_bsdnet.h>
23#include <rtems/rtems_bsdnet_internal.h>
24#include <bsp.h>
25#include <mpc83xx/tsec.h>
26#include <mpc83xx/mpc83xx.h>
27#include <stdio.h>
28
29#define TSEC_IFMODE_RGMII 0
30#define TSEC_IFMODE_GMII  1
31
32#if defined( MPC8313ERDB)
33
34#define TSEC_IFMODE TSEC_IFMODE_RGMII
35
36#elif defined( MPC8349EAMDS)
37
38#define TSEC_IFMODE TSEC_IFMODE_GMII
39
40#elif defined( HSC_CM01)
41
42#define TSEC_IFMODE TSEC_IFMODE_RGMII
43
44#else
45
46#warning No TSEC configuration available
47
48#endif
49
50/*=========================================================================*\
51| Function:                                                                 |
52\*-------------------------------------------------------------------------*/
53int BSP_tsec_attach
54(
55/*-------------------------------------------------------------------------*\
56| Purpose:                                                                  |
57|   attach or detach the driver                                             |
58+---------------------------------------------------------------------------+
59| Input Parameters:                                                         |
60\*-------------------------------------------------------------------------*/
61 struct rtems_bsdnet_ifconfig *config, /* interface configuration          */
62 int attaching                         /* 0 = detach, else attach          */
63)
64/*-------------------------------------------------------------------------*\
65| Return Value:                                                             |
66|    1, if success                                                       |
67\*=========================================================================*/
68{
69  int    unitNumber;
70  char   *unitName;
71
72  /*
73   * Parse driver name
74   */
75  if((unitNumber = rtems_bsdnet_parse_driver_name(config, &unitName)) < 0) {
76    return 0;
77  }
78  if (attaching) {
79#if (TSEC_IFMODE==TSEC_IFMODE_GMII)
80#if !defined(HSC_CM01)
81
82      /*
83       * do not change system I/O configuration registers on HSC board
84       * because should initialize from RCW
85       */
86
87
88    if (unitNumber == 1) {
89      /*
90       * init system I/O configuration registers
91       * to ensure proper pin functions
92       */
93      mpc83xx.syscon.sicrh = mpc83xx.syscon.sicrh & ~0x1F800000;
94      /*
95       * init port registers (GPIO2DIR) for TSEC1
96       */
97      mpc83xx.gpio[1].gpdir = ((mpc83xx.gpio[1].gpdir & ~0x00000FFF)
98                               |                         0x0000001f);
99    }
100    if (unitNumber == 2) {
101      /*
102       * init system I/O configuration registers
103       * to ensure proper pin functions
104       */
105      mpc83xx.syscon.sicrh = mpc83xx.syscon.sicrh & ~0x007f8000;
106      /*
107       * init port registers (GPIO2DIR) for TSEC2
108       */
109      mpc83xx.gpio[0].gpdir = ((mpc83xx.gpio[0].gpdir & ~0x000FFFFF)
110                               |                         0x00087881);
111    }
112#endif /* !defined(HSC_CM01) */
113#endif
114#if (TSEC_IFMODE==TSEC_IFMODE_RGMII)
115
116    /*
117     * Nothing special needed for TSEC1 operation
118     */
119#endif   
120  }
121  /*
122   * add MAC address into config->hardware_adderss
123   * FIXME: get the real address we need
124   */
125  if (config->hardware_address == NULL) {
126
127#ifdef HAS_UBOOT
128
129    switch (unitNumber) {
130      case 1:
131        config->hardware_address = bsp_uboot_board_info.bi_enetaddr;
132        break;
133
134#ifdef CONFIG_HAS_ETH1
135      case 2:
136        config->hardware_address = bsp_uboot_board_info.bi_enet1addr;
137        break;
138#endif /* CONFIG_HAS_ETH1 */
139
140#ifdef CONFIG_HAS_ETH2
141      case 3:
142        config->hardware_address = bsp_uboot_board_info.bi_enet2addr;
143        break;
144#endif /* CONFIG_HAS_ETH2 */
145
146#ifdef CONFIG_HAS_ETH3
147      case 4:
148        config->hardware_address = bsp_uboot_board_info.bi_enet3addr;
149        break;
150#endif /* CONFIG_HAS_ETH3 */
151
152      default:
153        return 0;
154    }
155
156#else /* HAS_UBOOT */
157
158    char hw_addr [6] = { 0x00, 0x04, 0x9f, 0x00, 0x2f, 0xcb};
159
160    config->hardware_address = hw_addr;
161
162#endif /* HAS_UBOOT */
163
164  }
165  /*
166   * set interrupt number for given interface
167   */
168  config->irno = (unsigned) (
169      unitNumber == 1
170      ? BSP_IPIC_IRQ_TSEC1_TX
171      : BSP_IPIC_IRQ_TSEC2_TX
172    );
173  /*
174   * call attach function of board independent driver
175   */
176  if (0 == rtems_mpc83xx_tsec_driver_attach_detach(config,attaching)) {
177    return 0;
178  }
179  return 1;
180}
Note: See TracBrowser for help on using the repository browser.