1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2018-2022 Marvell International Ltd.
*
* Interface to the SMI/MDIO hardware, including support for both IEEE 802.3
* clause 22 and clause 45 operations.
*/
#ifndef __CVMX_MIO_H__
#define __CVMX_MIO_H__
/**
* PHY register 0 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_CONTROL 0
typedef union {
u16 u16;
struct {
u16 reset : 1;
u16 loopback : 1;
u16 speed_lsb : 1;
u16 autoneg_enable : 1;
u16 power_down : 1;
u16 isolate : 1;
u16 restart_autoneg : 1;
u16 duplex : 1;
u16 collision_test : 1;
u16 speed_msb : 1;
u16 unidirectional_enable : 1;
u16 reserved_0_4 : 5;
} s;
} cvmx_mdio_phy_reg_control_t;
/**
* PHY register 1 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_STATUS 1
typedef union {
u16 u16;
struct {
u16 capable_100base_t4 : 1;
u16 capable_100base_x_full : 1;
u16 capable_100base_x_half : 1;
u16 capable_10_full : 1;
u16 capable_10_half : 1;
u16 capable_100base_t2_full : 1;
u16 capable_100base_t2_half : 1;
u16 capable_extended_status : 1;
u16 capable_unidirectional : 1;
u16 capable_mf_preamble_suppression : 1;
u16 autoneg_complete : 1;
u16 remote_fault : 1;
u16 capable_autoneg : 1;
u16 link_status : 1;
u16 jabber_detect : 1;
u16 capable_extended_registers : 1;
} s;
} cvmx_mdio_phy_reg_status_t;
/**
* PHY register 2 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_ID1 2
typedef union {
u16 u16;
struct {
u16 oui_bits_3_18;
} s;
} cvmx_mdio_phy_reg_id1_t;
/**
* PHY register 3 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_ID2 3
typedef union {
u16 u16;
struct {
u16 oui_bits_19_24 : 6;
u16 model : 6;
u16 revision : 4;
} s;
} cvmx_mdio_phy_reg_id2_t;
/**
* PHY register 4 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_AUTONEG_ADVER 4
typedef union {
u16 u16;
struct {
u16 next_page : 1;
u16 reserved_14 : 1;
u16 remote_fault : 1;
u16 reserved_12 : 1;
u16 asymmetric_pause : 1;
u16 pause : 1;
u16 advert_100base_t4 : 1;
u16 advert_100base_tx_full : 1;
u16 advert_100base_tx_half : 1;
u16 advert_10base_tx_full : 1;
u16 advert_10base_tx_half : 1;
u16 selector : 5;
} s;
} cvmx_mdio_phy_reg_autoneg_adver_t;
/**
* PHY register 5 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_LINK_PARTNER_ABILITY 5
typedef union {
u16 u16;
struct {
u16 next_page : 1;
u16 ack : 1;
u16 remote_fault : 1;
u16 reserved_12 : 1;
u16 asymmetric_pause : 1;
u16 pause : 1;
u16 advert_100base_t4 : 1;
u16 advert_100base_tx_full : 1;
u16 advert_100base_tx_half : 1;
u16 advert_10base_tx_full : 1;
u16 advert_10base_tx_half : 1;
u16 selector : 5;
} s;
} cvmx_mdio_phy_reg_link_partner_ability_t;
/**
* PHY register 6 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_AUTONEG_EXPANSION 6
typedef union {
u16 u16;
struct {
u16 reserved_5_15 : 11;
u16 parallel_detection_fault : 1;
u16 link_partner_next_page_capable : 1;
u16 local_next_page_capable : 1;
u16 page_received : 1;
u16 link_partner_autoneg_capable : 1;
} s;
} cvmx_mdio_phy_reg_autoneg_expansion_t;
/**
* PHY register 9 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_CONTROL_1000 9
typedef union {
u16 u16;
struct {
u16 test_mode : 3;
u16 manual_master_slave : 1;
u16 master : 1;
u16 port_type : 1;
u16 advert_1000base_t_full : 1;
u16 advert_1000base_t_half : 1;
u16 reserved_0_7 : 8;
} s;
} cvmx_mdio_phy_reg_control_1000_t;
/**
* PHY register 10 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_STATUS_1000 10
typedef union {
u16 u16;
struct {
u16 master_slave_fault : 1;
u16 is_master : 1;
u16 local_receiver_ok : 1;
u16 remote_receiver_ok : 1;
u16 remote_capable_1000base_t_full : 1;
u16 remote_capable_1000base_t_half : 1;
u16 reserved_8_9 : 2;
u16 idle_error_count : 8;
} s;
} cvmx_mdio_phy_reg_status_1000_t;
/**
* PHY register 15 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_EXTENDED_STATUS 15
typedef union {
u16 u16;
struct {
u16 capable_1000base_x_full : 1;
u16 capable_1000base_x_half : 1;
u16 capable_1000base_t_full : 1;
u16 capable_1000base_t_half : 1;
u16 reserved_0_11 : 12;
} s;
} cvmx_mdio_phy_reg_extended_status_t;
/**
* PHY register 13 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_MMD_CONTROL 13
typedef union {
u16 u16;
struct {
u16 function : 2;
u16 reserved_5_13 : 9;
u16 devad : 5;
} s;
} cvmx_mdio_phy_reg_mmd_control_t;
/**
* PHY register 14 from the 802.3 spec
*/
#define CVMX_MDIO_PHY_REG_MMD_ADDRESS_DATA 14
typedef union {
u16 u16;
struct {
u16 address_data : 16;
} s;
} cvmx_mdio_phy_reg_mmd_address_data_t;
/* Operating request encodings. */
#define MDIO_CLAUSE_22_WRITE 0
#define MDIO_CLAUSE_22_READ 1
#define MDIO_CLAUSE_45_ADDRESS 0
#define MDIO_CLAUSE_45_WRITE 1
#define MDIO_CLAUSE_45_READ_INC 2
#define MDIO_CLAUSE_45_READ 3
/* MMD identifiers, mostly for accessing devices within XENPAK modules. */
#define CVMX_MMD_DEVICE_PMA_PMD 1
#define CVMX_MMD_DEVICE_WIS 2
#define CVMX_MMD_DEVICE_PCS 3
#define CVMX_MMD_DEVICE_PHY_XS 4
#define CVMX_MMD_DEVICE_DTS_XS 5
#define CVMX_MMD_DEVICE_TC 6
#define CVMX_MMD_DEVICE_CL22_EXT 29
#define CVMX_MMD_DEVICE_VENDOR_1 30
#define CVMX_MMD_DEVICE_VENDOR_2 31
#define CVMX_MDIO_TIMEOUT 100000 /* 100 millisec */
static inline int cvmx_mdio_bus_id_to_node(int bus_id)
{
if (OCTEON_IS_MODEL(OCTEON_CN78XX))
return (bus_id >> 2) & CVMX_NODE_MASK;
else
return 0;
}
static inline int cvmx_mdio_bus_id_to_bus(int bus_id)
{
if (OCTEON_IS_MODEL(OCTEON_CN78XX))
return bus_id & 3;
else
return bus_id;
}
/* Helper function to put MDIO interface into clause 45 mode */
static inline void __cvmx_mdio_set_clause45_mode(int bus_id)
{
cvmx_smix_clk_t smi_clk;
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
/* Put bus into clause 45 mode */
smi_clk.u64 = csr_rd_node(node, CVMX_SMIX_CLK(bus));
smi_clk.s.mode = 1;
smi_clk.s.preamble = 1;
csr_wr_node(node, CVMX_SMIX_CLK(bus), smi_clk.u64);
}
/* Helper function to put MDIO interface into clause 22 mode */
static inline void __cvmx_mdio_set_clause22_mode(int bus_id)
{
cvmx_smix_clk_t smi_clk;
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
/* Put bus into clause 22 mode */
smi_clk.u64 = csr_rd_node(node, CVMX_SMIX_CLK(bus));
smi_clk.s.mode = 0;
csr_wr_node(node, CVMX_SMIX_CLK(bus), smi_clk.u64);
}
/**
* @INTERNAL
* Function to read SMIX_RD_DAT and check for timeouts. This
* code sequence is done fairly often, so put in one spot.
*
* @param bus_id SMI/MDIO bus to read
*
* @return Value of SMIX_RD_DAT. pending will be set on
* a timeout.
*/
static inline cvmx_smix_rd_dat_t __cvmx_mdio_read_rd_dat(int bus_id)
{
cvmx_smix_rd_dat_t smi_rd;
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
u64 done;
done = get_timer(0);
do {
mdelay(1);
smi_rd.u64 = csr_rd_node(node, CVMX_SMIX_RD_DAT(bus));
if (get_timer(done) > (CVMX_MDIO_TIMEOUT / 1000))
break;
} while (smi_rd.s.pending);
return smi_rd;
}
/**
* Perform an MII read. This function is used to read PHY
* registers controlling auto negotiation.
*
* @param bus_id MDIO bus number. Zero on most chips, but some chips (ex CN56XX)
* support multiple busses.
* @param phy_id The MII phy id
* @param location Register location to read
*
* @return Result from the read or -1 on failure
*/
static inline int cvmx_mdio_read(int bus_id, int phy_id, int location)
{
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
cvmx_smix_cmd_t smi_cmd;
cvmx_smix_rd_dat_t smi_rd;
if (octeon_has_feature(OCTEON_FEATURE_MDIO_CLAUSE_45))
__cvmx_mdio_set_clause22_mode(bus_id);
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_22_READ;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = location;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
smi_rd = __cvmx_mdio_read_rd_dat(bus_id);
if (smi_rd.s.val)
return smi_rd.s.dat;
else
return -1;
}
/**
* Perform an MII write. This function is used to write PHY
* registers controlling auto negotiation.
*
* @param bus_id MDIO bus number. Zero on most chips, but some chips (ex CN56XX)
* support multiple busses.
* @param phy_id The MII phy id
* @param location Register location to write
* @param val Value to write
*
* @return -1 on error
* 0 on success
*/
static inline int cvmx_mdio_write(int bus_id, int phy_id, int location, int val)
{
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
cvmx_smix_cmd_t smi_cmd;
cvmx_smix_wr_dat_t smi_wr;
if (octeon_has_feature(OCTEON_FEATURE_MDIO_CLAUSE_45))
__cvmx_mdio_set_clause22_mode(bus_id);
smi_wr.u64 = 0;
smi_wr.s.dat = val;
csr_wr_node(node, CVMX_SMIX_WR_DAT(bus), smi_wr.u64);
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_22_WRITE;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = location;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
if (CVMX_WAIT_FOR_FIELD64_NODE(node, CVMX_SMIX_WR_DAT(bus),
cvmx_smix_wr_dat_t, pending, ==, 0,
CVMX_MDIO_TIMEOUT))
return -1;
return 0;
}
/**
* Perform an IEEE 802.3 clause 45 MII read. This function is used to read PHY
* registers controlling auto negotiation.
*
* @param bus_id MDIO bus number. Zero on most chips, but some chips (ex CN56XX)
* support multiple busses.
* @param phy_id The MII phy id
* @param device MDIO Manageable Device (MMD) id
* @param location Register location to read
*
* @return Result from the read or -1 on failure
*/
static inline int cvmx_mdio_45_read(int bus_id, int phy_id, int device,
int location)
{
cvmx_smix_cmd_t smi_cmd;
cvmx_smix_rd_dat_t smi_rd;
cvmx_smix_wr_dat_t smi_wr;
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
if (!octeon_has_feature(OCTEON_FEATURE_MDIO_CLAUSE_45))
return -1;
__cvmx_mdio_set_clause45_mode(bus_id);
smi_wr.u64 = 0;
smi_wr.s.dat = location;
csr_wr_node(node, CVMX_SMIX_WR_DAT(bus), smi_wr.u64);
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_45_ADDRESS;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = device;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
if (CVMX_WAIT_FOR_FIELD64_NODE(node, CVMX_SMIX_WR_DAT(bus),
cvmx_smix_wr_dat_t, pending, ==, 0,
CVMX_MDIO_TIMEOUT)) {
debug("cvmx_mdio_45_read: bus_id %d phy_id %2d device %2d register %2d TIME OUT(address)\n",
bus_id, phy_id, device, location);
return -1;
}
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_45_READ;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = device;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
smi_rd = __cvmx_mdio_read_rd_dat(bus_id);
if (smi_rd.s.pending) {
debug("cvmx_mdio_45_read: bus_id %d phy_id %2d device %2d register %2d TIME OUT(data)\n",
bus_id, phy_id, device, location);
return -1;
}
if (smi_rd.s.val)
return smi_rd.s.dat;
debug("cvmx_mdio_45_read: bus_id %d phy_id %2d device %2d register %2d INVALID READ\n",
bus_id, phy_id, device, location);
return -1;
}
/**
* Perform an IEEE 802.3 clause 45 MII write. This function is used to write PHY
* registers controlling auto negotiation.
*
* @param bus_id MDIO bus number. Zero on most chips, but some chips (ex CN56XX)
* support multiple busses.
* @param phy_id The MII phy id
* @param device MDIO Manageable Device (MMD) id
* @param location Register location to write
* @param val Value to write
*
* @return -1 on error
* 0 on success
*/
static inline int cvmx_mdio_45_write(int bus_id, int phy_id, int device,
int location, int val)
{
cvmx_smix_cmd_t smi_cmd;
cvmx_smix_wr_dat_t smi_wr;
int node = cvmx_mdio_bus_id_to_node(bus_id);
int bus = cvmx_mdio_bus_id_to_bus(bus_id);
if (!octeon_has_feature(OCTEON_FEATURE_MDIO_CLAUSE_45))
return -1;
__cvmx_mdio_set_clause45_mode(bus_id);
smi_wr.u64 = 0;
smi_wr.s.dat = location;
csr_wr_node(node, CVMX_SMIX_WR_DAT(bus), smi_wr.u64);
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_45_ADDRESS;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = device;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
if (CVMX_WAIT_FOR_FIELD64_NODE(node, CVMX_SMIX_WR_DAT(bus),
cvmx_smix_wr_dat_t, pending, ==, 0,
CVMX_MDIO_TIMEOUT))
return -1;
smi_wr.u64 = 0;
smi_wr.s.dat = val;
csr_wr_node(node, CVMX_SMIX_WR_DAT(bus), smi_wr.u64);
smi_cmd.u64 = 0;
smi_cmd.s.phy_op = MDIO_CLAUSE_45_WRITE;
smi_cmd.s.phy_adr = phy_id;
smi_cmd.s.reg_adr = device;
csr_wr_node(node, CVMX_SMIX_CMD(bus), smi_cmd.u64);
if (CVMX_WAIT_FOR_FIELD64_NODE(node, CVMX_SMIX_WR_DAT(bus),
cvmx_smix_wr_dat_t, pending, ==, 0,
CVMX_MDIO_TIMEOUT))
return -1;
return 0;
}
#endif
|