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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [devs/] [eth/] [arm/] [ks32c5000/] [v2_0/] [src/] [lxt970.c] - Blame information for rev 587

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

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      lxt970.c
4
//
5
//      Driver for LXT970 PHY
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):    gthomas
44
// Contributors: gthomas, jskov
45
//               Grant Edwards <grante@visi.com>
46
// Date:         2001-07-31
47
// Purpose:      
48
// Description:  
49
//
50
//####DESCRIPTIONEND####
51
//
52
//========================================================================*/
53
 
54
#include "std.h"
55
#include "phy.h"
56
 
57
// address of the LX970 phy
58
#ifdef CYGPKG_DEVS_ETH_ARM_KS32C5000_PHYADDR
59
#define LX970_ADDR  CYGPKG_DEVS_ETH_ARM_KS32C5000_PHYADDR
60
#else
61
#define LX970_ADDR  1
62
#endif
63
 
64
// LX970 register offsets
65
#define LX970_CNTL_REG          0x00
66
#define LX970_STATUS_REG        0x01
67
#define LX970_ID_REG1           0x02
68
#define LX970_ID_REG2           0x03
69
#define LX970_ANA_REG           0x04
70
#define LX970_ANLPAR_REG        0x05
71
#define LX970_ANE_REG           0x06
72
#define LX970_MIRROR_REG        0x10
73
#define LX970_INTEN_REG         0x11
74
#define LX970_INTSTAT_REG       0x12
75
#define LX970_CONFIG_REG        0x13
76
#define LX970_CHIPSTAT_REG      0x14
77
 
78
// LX970 Control register bit defines
79
#define LX970_CNTL_RESET        0x8000
80
#define LX970_CNTL_LOOPBACK     0x4000
81
#define LX970_CNTL_SPEED        0x2000  // 1=100Meg, 0=10Meg
82
#define LX970_CNTL_AN           0x1000  // 1=Enable auto negotiation, 0=disable it
83
#define LX970_CNTL_PWRDN        0x0800  // 1=Enable power down
84
#define LX970_CNTL_ISOLATE      0x0400  // 1=Isolate from MII
85
#define LX970_CNTL_RSTRT_AN     0x0200  // 1=Restart Auto Negotioation process
86
#define LX970_CNTL_FULL_DUP     0x0100  // 1=Enable full duplex mode, 0=half dup
87
#define LX970_CNTL_TST_COLL     0x0080  // 1=Enable collision test
88
 
89
#define Bit(n) (1<<(n))
90
 
91
#define LX970_ANA_PAUSE_ENA    Bit(10)
92
#define LX970_ANA_100T4        Bit(9)
93
#define LX970_ANA_100TX_FULL   Bit(8)
94
#define LX970_ANA_100TX        Bit(7)
95
#define LX970_ANA_10T_FULL     Bit(6)
96
#define LX970_ANA_10T          Bit(5)
97
#define LX970_ANA_SEL_802_3    Bit(0)
98
 
99
#define LX970_CHIPSTAT_LINKUP    Bit(13)
100
#define LX970_CHIPSTAT_FULLDUP   Bit(12)
101
#define LX970_CHIPSTAT_100M      Bit(11)
102
#define LX970_CHIPSTAT_ANEG_DONE Bit(9)
103
#define LX970_CHIPSTAT_PAGE_RX   Bit(8)
104
#define LX970_CHIPSTAT_LOWVOLT   Bit(2)
105
 
106
// phy functions for Level1 PHY LXT970
107
 
108
void PhyReset(void)
109
{
110
    // first software reset the LX970      
111
    MiiStationWrite(LX970_CNTL_REG, LX970_ADDR, LX970_CNTL_RESET);
112
    MiiStationWrite(LX970_CNTL_REG, LX970_ADDR, 0);
113
 
114
    // set low level drive for MII lines, enable interrupt output
115
    MiiStationWrite(17, LX970_ADDR, BIT3+BIT1);
116
 
117
    // default values for 100M encryption are wrong, so fix them
118
    // and configure LEDC to be activity indicator
119
     MiiStationWrite(19, LX970_ADDR, BIT7);
120
 
121
    // initialize auto-negotiation capabilities
122
    MiiStationWrite(LX970_ANA_REG,LX970_ADDR,
123
                    LX970_ANA_PAUSE_ENA+
124
                    LX970_ANA_100T4+
125
                    LX970_ANA_100TX_FULL+
126
                    LX970_ANA_100TX+
127
                    LX970_ANA_10T_FULL+
128
                    LX970_ANA_10T+
129
                    LX970_ANA_SEL_802_3);
130
#if 1
131
    // Now start an auto negotiation
132
    MiiStationWrite(LX970_CNTL_REG, LX970_ADDR,
133
                    LX970_CNTL_AN+
134
                    LX970_CNTL_RSTRT_AN);
135
#else
136
    // force to 10M full duplex
137
    MiiStationWrite(LX970_CNTL_REG, LX970_ADDR,
138
                    LX970_CNTL_FULL_DUP);
139
#endif
140
}
141
 
142
unsigned PhyStatus(void)
143
{
144
  unsigned lxt970Status = MiiStationRead(LX970_CHIPSTAT_REG,LX970_ADDR);
145
  unsigned r = 0;
146
  if (lxt970Status & LX970_CHIPSTAT_LINKUP)
147
    r |= PhyStatus_LinkUp;
148
  if (lxt970Status & LX970_CHIPSTAT_FULLDUP)
149
    r |= PhyStatus_FullDuplex;
150
  if (lxt970Status & LX970_CHIPSTAT_100M)
151
    r |=  PhyStatus_100Mb;
152
  return r;
153
}
154
 
155
void PhyInterruptAck(void)
156
{
157
  MiiStationRead(1,LX970_ADDR);
158
  MiiStationRead(18,LX970_ADDR);
159
}
160
 
161
// EOF lxt970.c

powered by: WebSVN 2.1.0

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