OpenCores
URL https://opencores.org/ocsvn/1g_ethernet_dpi/1g_ethernet_dpi/trunk

Subversion Repositories 1g_ethernet_dpi

[/] [1g_ethernet_dpi/] [tags/] [v0.0/] [hw/] [src/] [rtl/] [tri_mode_emac/] [sw/] [src/] [tri_mode_emac.c] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 kuzmi4
// base: tri_mode_ethernet_mac_0_axi_lite_sm
2
 
3
#include <stdio.h>
4
 
5
#include "xil_io.h"
6
//#include "xstatus.h"
7
 
8
#include "tri_mode_emac.h"
9
 
10
#define TMEMAC_MDIO_TOUT    (0x1FFFFFFF)
11
#define TMEMAC_AN_TOUT      (0x1FFFFFFF)
12
 
13
// KC705 Evaluation Board Features:
14
//  ..On power-up, or on reset, the PHY is configured to operate in GMII mode with PHY address
15
//  0b00111 using the settings shown in Table 1-17. These settings can be overwritten via
16
//  software commands passed over the MDIO interface.
17
//  {Table 1-17: Board Connections for PHY Configuration Pins}
18
//
19
// 88E1111Datasheet_Rev_J.pdf:
20
//  2.3.4 Mode Switching
21
//  reg: 0_4, 0_1.12, 0_27.12, 
22
//  HWCFG_MODE[3:0] == 1011
23
 
24
 
25
 
26
// 
27
u32 u32_tmemac_base;// = XPAR_TMEMAC_0_BASEADDR;
28
// 
29
int phy_addr;
30
int phy_id1;
31
int phy_id2;
32
int phy_link_speed;
33
int phy_duplex;
34
/**/
35
int tri_mode_emac_phy_cfg(void);
36
int tri_mode_emac_phy_det(void);
37
int tmemac_phy_rd_reg(u8 reg_addr);
38
int tmemac_phy_wr_reg(u8 reg_addr, u16 reg_data);
39
/**/
40
 
41
int tri_mode_emac_init(tmemac_cfg_t *iv_tmemac_cfg)
42
{
43
    // dec vars
44
    int Value;
45
 
46
    // wr base
47
    u32_tmemac_base = iv_tmemac_cfg->base;
48
 
49
    // -> STARTUP
50
    Xil_Out32(u32_tmemac_base+CONFIG_MANAGEMENT_ADD, (1 << 6) | (24)); // MDIO Enable[6], Clock Divide[5:0]
51
    // -> UPDATE_SPEED
52
    Value = Xil_In32(u32_tmemac_base+SPEED_CONFIG_ADD);
53
    if (Value == 0) {
54
        Xil_Out32(+SPEED_CONFIG_ADD, (2 << 30)); // 2'b10 == 1Gbps, 
55
    }
56
    //xil_printf("ms=%x\n", Xil_In32(u32_tmemac_base+SPEED_CONFIG_ADD));
57
    // PHY cfg
58
    Value = tri_mode_emac_phy_cfg();
59
    if (Value < 0) {
60
        return Value;
61
    }
62
 
63
    // Reseting MAC RX
64
    Xil_Out32(u32_tmemac_base+RECEIVER_ADD, (1 << 31) | (1 << 28)); // Reset, Receiver Enable
65
    // Reseting MAC TX
66
    Xil_Out32(u32_tmemac_base+TRANSMITTER_ADD, (1 << 31) | (1 << 28)); // Reset, Transmit Enable
67
    // Disabling Flow control
68
    Xil_Out32(u32_tmemac_base+CONFIG_FLOW_CTRL_ADD, 0);
69
    // Configuring unicast address
70
    Xil_Out32(u32_tmemac_base+CONFIG_UNI1_CTRL_ADD, iv_tmemac_cfg->mac_high);   // high word
71
    Xil_Out32(u32_tmemac_base+CONFIG_UNI0_CTRL_ADD, iv_tmemac_cfg->mac_low);    // low ..
72
    // Setting core to promiscuous mode
73
    Xil_Out32(u32_tmemac_base+CONFIG_ADDR_CTRL_ADD, (1 << 31));
74
 
75
    // Final
76
    return 0;
77
}
78
 
79
int tri_mode_emac_phy_cfg(void)
80
{
81
#ifndef MSIM
82
    // dec vars
83
    int Value;
84
    u32 x;
85
 
86
    // PHY det
87
    if (tri_mode_emac_phy_det()) {
88
        return -1;
89
    }
90
    // further phy-cfg:
91
    // TSE_PHY_MDIO_1000BASE_T_CTRL
92
    if (tmemac_phy_wr_reg(TSE_PHY_MDIO_1000BASE_T_CTRL, 1 << 9)) { // 1G Full-Duplex
93
        return -2;
94
    }
95
    // TSE_PHY_MDIO_ADV
96
    if (tmemac_phy_wr_reg(TSE_PHY_MDIO_ADV, (1 << 8) | (1 << 6))) { // 100M Full-Duplex, 10M Full-Duplex
97
        return -3;
98
    }
99
    // HWCFG_MODE[3:0] == RGMII 
100
    Value = tmemac_phy_rd_reg(MRVL_PHY_MDIO_ESPEC_STS);
101
    Value &= ~(0x0F);
102
    Value |= MARVELL_PHY_RGMII; // [3:0] == 1011
103
    if (tmemac_phy_wr_reg(MRVL_PHY_MDIO_ESPEC_STS, Value)) {
104
        return -4;
105
    }
106
    // add/remove the clock delay
107
    Value = tmemac_phy_rd_reg(MRVL_PHY_MDIO_ESPEC_CTRL);
108
    Value &= ~((1 << 7) | (1 << 1));
109
    Value |= (1 << 7) | (0 << 1); // tri_mode_ethernet_mac_0_axi_lite_sm.v, MDIO_DELAY_RD_POLL
110
    if (tmemac_phy_wr_reg(MRVL_PHY_MDIO_ESPEC_CTRL, Value)) {
111
        return -5;
112
    }
113
    // set autoneg and reset
114
    Value = (1 << 15) | (1 << 12); // bit15: software reset, bit12 : AN enable (set after power up)
115
    if (tmemac_phy_wr_reg(TSE_PHY_MDIO_CONTROL, Value)) {
116
        return -6;
117
    }
118
    // w8 4 rst-low
119
    x = 0;
120
    do {
121
        Value = tmemac_phy_rd_reg(TSE_PHY_MDIO_CONTROL);
122
        if (++x == TMEMAC_AN_TOUT) {
123
            return -7;
124
        }
125
    } while((Value & (1 << 15)) == 1); // .. When the reset operation is done, this bit is cleared to 0 automatically.
126
    //xil_printf(" [phy_rst ] reg 0_0 = 0x%04x\n\r", Value);
127
    // Wait for Autonegotiation to complete
128
    x = 0;
129
    do {
130
        // useful ibala
131
        {
132
            volatile int wait;
133
            for (wait=0; wait < 100000; wait++);
134
            for (wait=0; wait < 100000; wait++);
135
        }
136
        // 
137
        Value = tmemac_phy_rd_reg(TSE_PHY_MDIO_STATUS);
138
        if (Value == -1) {
139
            return -8;
140
        }
141
        // 
142
        if (++x == TMEMAC_AN_TOUT) {
143
            xil_printf("ERR: Auto-Negotiation FAILED, STATUS: 0x%04x\n\r", tmemac_phy_rd_reg(TSE_PHY_MDIO_STATUS));
144
            return -9;
145
        }
146
    } while((Value & (1 << 5)) == 0);
147
    xil_printf(" [phy_rst ] OK, reg 0_1 = 0x%04x\n\r", Value);
148
    // get PHY-{Speed+Duplex}
149
    Value = tmemac_phy_rd_reg(MRVL_PHY_MDIO_SPEC_STS_C);
150
    if (Value == -1) {
151
        return -10;
152
    }
153
    //xil_printf("reg 0_17 = 0x%04x\n", Value);
154
    phy_duplex = Value && (1 << 13);
155
    phy_link_speed =    (Value && (1 << 15))?  1000 :
156
                        (Value && (1 << 14))?   100 :
157
                                                 10 ;
158
    xil_printf(" [phy_cfg ] Speed is 0x%x  Full Duplex is %x\n\r", phy_link_speed, phy_duplex);
159
#else
160
    phy_link_speed = 1000;
161
    phy_duplex = 1;
162
    printf(" [phy_init] MSIM: found Marvell 88E1111 PHY\n");
163
    printf(" [phy_cfg ] MSIM: Speed is %d  Full Duplex is %d\n", phy_link_speed, phy_duplex);
164
#endif // MSIM
165
    // Final
166
    return 0;
167
}
168
 
169
int tri_mode_emac_phy_det(void) // phy detection
170
{
171
    for (phy_addr = 0; phy_addr < 32; phy_addr++) {
172
        // TSE_PHY_MDIO_PHY_ID1
173
        phy_id1 = tmemac_phy_rd_reg(TSE_PHY_MDIO_PHY_ID1);
174
        if (phy_id1 == -1) { return -1; }
175
        // TSE_PHY_MDIO_PHY_ID2
176
        phy_id2 = tmemac_phy_rd_reg(TSE_PHY_MDIO_PHY_ID2);
177
        if (phy_id2 == -1) { return -1; }
178
        // check
179
        if (phy_id1 != phy_id2) {
180
            //xil_printf(" [phy_init] phyID = 0x%02x 0x%04x 0x%04x\n", phy_addr, phy_id1, phy_id2);
181
            // 
182
            if (MARVELL_PHY_ID_OK(phy_id1) & MARVELL_PHY_MODEL_OK(phy_id2)) {
183
                xil_printf(" [phy_init] found Marvell 88E1111 PHY\n\r");
184
                return 0;
185
            }
186
            // 
187
            break;
188
        }
189
    }
190
    return -1;
191
}
192
 
193
int tmemac_phy_rd_reg(u8 reg_addr) // phy reg-read
194
{
195
    u32 Value, j;
196
    // poll MDIO sts
197
    do {
198
        Value = Xil_In32(u32_tmemac_base+MDIO_CONTROL);
199
        if (++j == TMEMAC_MDIO_TOUT) {
200
            return -1;
201
        }
202
    } while((Value & (1 << 7)) == 0);// MDIO Control Word (0x504), [7] == MDIO ready: When set ..  previous transaction has completed..
203
    // post RD-req
204
    Value = (phy_addr << 24) |      // TX_PHYAD
205
            (reg_addr << 16) |      // TX_REGAD
206
            (MDIO_OP_RD << 14) |    // TX_OP
207
            (1 << 11);              // Initiate
208
    Xil_Out32(u32_tmemac_base+MDIO_CONTROL, Value);
209
    // poll RD-resp
210
    do {
211
        Value = Xil_In32(u32_tmemac_base+MDIO_RX_DATA);
212
        if (++j == TMEMAC_MDIO_TOUT) {
213
            return -1;
214
        }
215
    } while((Value & (1 << 16)) == 0);
216
    // Final
217
    return (Value & 0x0000FFFF); // [15:0]
218
}
219
 
220
int tmemac_phy_wr_reg(u8 reg_addr, u16 reg_data) // phy reg-write
221
{
222
    u32 Value, j;
223
    // poll MDIO sts
224
    do {
225
        Value = Xil_In32(u32_tmemac_base+MDIO_CONTROL);
226
        if (++j == TMEMAC_MDIO_TOUT) {
227
            return -1;
228
        }
229
    } while((Value & (1 << 7)) == 0);// MDIO Control Word (0x504), [7] == MDIO ready: When set ..  previous transaction has completed..
230
    // put WR-data
231
    Xil_Out32(u32_tmemac_base+MDIO_TX_DATA, reg_data);
232
    // post WR-req
233
    Value = (phy_addr << 24) |      // TX_PHYAD
234
            (reg_addr << 16) |      // TX_REGAD
235
            (MDIO_OP_WR << 14) |    // TX_OP
236
            (1 << 11);              // Initiate
237
    Xil_Out32(u32_tmemac_base+MDIO_CONTROL, Value);
238
    // Final
239
    return 0;
240
}

powered by: WebSVN 2.1.0

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