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
|
/*
* Common [OS-independent] portion of
* Broadcom Home Networking Division 10/100 Mbit/s Ethernet
* Device Driver.
*
* Copyright 2007, Broadcom Corporation
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
* the contents of this file may not be disclosed to third parties, copied
* or duplicated in any form, in whole or in part, without the prior
* written permission of Broadcom Corporation.
* $Id: etc.c,v 1.1.1.1 2008/07/21 09:14:16 james26_jang Exp $
*/
#include <typedefs.h>
#include <osl.h>
#include <bcmendian.h>
#include <proto/ethernet.h>
#include <proto/vlan.h>
#include <proto/bcmip.h>
#include <bcmenetmib.h>
#include <bcmenetrxh.h>
#include <bcmenetphy.h>
#include <et_dbg.h>
#include <etc.h>
#include <et_export.h>
#include <bcmutils.h>
#ifdef ETROBO
#ifndef _sbutils_h_
typedef const struct sb_pub sb_t;
#endif
#include <bcmrobo.h>
#endif /* ETROBO */
uint32 et_msg_level =
0;
/* local prototypes */
static void etc_loopback(etc_info_t *etc, int on);
/* find the chip opsvec for this chip */
struct chops*
etc_chipmatch(uint vendor, uint device)
{
{
extern struct chops bcm47xx_et_chops;
if (bcm47xx_et_chops.id(vendor, device))
return (&bcm47xx_et_chops);
}
return (NULL);
}
void*
etc_attach(void *et, uint vendor, uint device, uint unit, void *osh, void *regsva)
{
etc_info_t *etc;
ET_TRACE(("et%d: etc_attach: vendor 0x%x device 0x%x\n", unit, vendor, device));
/* some code depends on packed structures */
ASSERT(sizeof(struct ether_addr) == ETHER_ADDR_LEN);
ASSERT(sizeof(struct ether_header) == ETHER_HDR_LEN);
/* allocate etc_info_t state structure */
if ((etc = (etc_info_t*) MALLOC(osh, sizeof(etc_info_t))) == NULL) {
ET_ERROR(("et%d: etc_attach: out of memory, malloced %d bytes\n", unit,
MALLOCED(osh)));
return (NULL);
}
bzero((char*)etc, sizeof(etc_info_t));
etc->et = et;
etc->unit = unit;
etc->osh = osh;
etc->vendorid = (uint16) vendor;
etc->deviceid = (uint16) device;
etc->forcespeed = ET_AUTO;
etc->linkstate = FALSE;
/* set chip opsvec */
etc->chops = etc_chipmatch(vendor, device);
ASSERT(etc->chops);
/* chip attach */
if ((etc->ch = (*etc->chops->attach)(etc, osh, regsva)) == NULL) {
ET_ERROR(("et%d: chipattach error\n", unit));
goto fail;
}
return ((void*)etc);
fail:
etc_detach(etc);
return (NULL);
}
void
etc_detach(etc_info_t *etc)
{
if (etc == NULL)
return;
/* free chip private state */
if (etc->ch) {
(*etc->chops->detach)(etc->ch);
etc->chops = etc->ch = NULL;
}
MFREE(etc->osh, etc, sizeof(etc_info_t));
}
void
etc_reset(etc_info_t *etc)
{
ET_TRACE(("et%d: etc_reset\n", etc->unit));
etc->reset++;
/* reset the chip */
(*etc->chops->reset)(etc->ch);
/* free any posted tx packets */
(*etc->chops->txreclaim)(etc->ch, TRUE);
#ifdef DMA
/* free any posted rx packets */
(*etc->chops->rxreclaim)(etc->ch);
#endif /* DMA */
}
void
etc_init(etc_info_t *etc)
{
ET_TRACE(("et%d: etc_init\n", etc->unit));
ASSERT(etc->pioactive == NULL);
ASSERT(!ETHER_ISNULLADDR(&etc->cur_etheraddr));
ASSERT(!ETHER_ISMULTI(&etc->cur_etheraddr));
/* init the chip */
(*etc->chops->init)(etc->ch, TRUE);
}
/* mark interface up */
void
etc_up(etc_info_t *etc)
{
etc->up = TRUE;
et_init(etc->et);
}
/* mark interface down */
uint
etc_down(etc_info_t *etc, int reset)
{
uint callback;
callback = 0;
etc->up = FALSE;
if (reset)
et_reset(etc->et);
/* suppress link state changes during power management mode changes */
if (etc->linkstate) {
etc->linkstate = FALSE;
if (!etc->pm_modechange)
et_link_down(etc->et);
}
return (callback);
}
unsigned int etc_arl_dump(etc_info_t *etc, char *buff, int maxno)
{
uint8 val;
uint8 res_reg[8];
uint8 res_ext_reg;
int size=0;
int offset=0;
int count=0;
int port_id = -1;
robo_info_t *robo = (robo_info_t *)etc->robo;
//printk(KERN_ERR "etc_arl_dump\n");
if (etc->robo)
{
robo->ops->read_reg(etc->robo, 0x04, 0x0, &val, 1);
// ARL Search Control Register page=5 addr=0x20
// start
val = 0x80;
robo->ops->write_reg(etc->robo, 0x05, 0x20, &val, 1);
while(1)
{
robo->ops->read_reg(etc->robo, 0x05, 0x20, &val, 1);
if(val&0x80)
{
if(val&0x01)
{
robo->ops->read_reg(etc->robo, 0x05, 0x2c, &res_ext_reg, 1);
robo->ops->read_reg(etc->robo, 0x05, 0x24, res_reg, 8);
port_id = -1;
port_id = (int)res_reg[6];
if(port_id < 0 || port_id > 3)
continue;
size = sprintf(buff+offset, "%02x:%02x:%02x:%02x:%02x:%02x %02x %02x %02x\n", res_reg[5], res_reg[4], res_reg[3], res_reg[2], res_reg[1], res_reg[0], res_reg[6], res_reg[7], res_ext_reg);
//printk("rreg: %s\n", buff+offset);
offset+=size;
count++;
if(count>=maxno) break;
}
}
else break;
}
}
//printk("%x %x %x %x\n", offset, count, maxno, *len);
return offset;
}
/* common ioctl handler. return: 0=ok, -1=error */
int
etc_ioctl(etc_info_t *etc, int cmd, void *arg)
{
int error;
int val;
int *vec = (int*)arg;
error = 0;
val = arg ? *(int*)arg : 0;
ET_TRACE(("et%d: etc_ioctl: cmd 0x%x\n", etc->unit, cmd));
switch (cmd) {
case ETCUP:
et_up(etc->et);
break;
case ETCDOWN:
et_down(etc->et, TRUE);
break;
case ETCLOOP:
etc_loopback(etc, val);
break;
case ETCDUMP:
if (et_msg_level & 0x10000)
bcmdumplog((char *)arg, 4096);
break;
case ETCSETMSGLEVEL:
et_msg_level = val;
break;
case ETCPROMISC:
etc_promisc(etc, val);
break;
case ETCQOS:
etc_qos(etc, val);
break;
case ETCSPEED:
if ((val != ET_AUTO) && (val != ET_10HALF) && (val != ET_10FULL) &&
(val != ET_100HALF) && (val != ET_100FULL))
goto err;
etc->forcespeed = val;
/* explicitly reset the phy */
(*etc->chops->phyreset)(etc->ch, etc->phyaddr);
/* request restart autonegotiation if we're reverting to adv mode */
if ((etc->forcespeed == ET_AUTO) & etc->advertise)
etc->needautoneg = TRUE;
et_init(etc->et);
break;
case ETCPHYRD:
if (vec) {
vec[1] = (*etc->chops->phyrd)(etc->ch, etc->phyaddr, vec[0]);
ET_TRACE(("etc_ioctl: ETCPHYRD of reg 0x%x => 0x%x\n", vec[0], vec[1]));
}
break;
case ETCPHYRD2:
if (vec) {
uint phyaddr, reg;
phyaddr = vec[0] >> 16;
if (phyaddr < MAXEPHY) {
reg = vec[0] & 0xffff;
vec[1] = (*etc->chops->phyrd)(etc->ch, phyaddr, reg);
ET_TRACE(("etc_ioctl: ETCPHYRD2 of phy 0x%x, reg 0x%x => 0x%x\n",
phyaddr, reg, vec[1]));
}
}
break;
case ETCPHYWR:
if (vec) {
ET_TRACE(("etc_ioctl: ETCPHYWR to reg 0x%x <= 0x%x\n", vec[0], vec[1]));
(*etc->chops->phywr)(etc->ch, etc->phyaddr, vec[0], (uint16)vec[1]);
}
break;
case ETCPHYWR2:
if (vec) {
uint phyaddr, reg;
phyaddr = vec[0] >> 16;
if (phyaddr < MAXEPHY) {
reg = vec[0] & 0xffff;
(*etc->chops->phywr)(etc->ch, phyaddr, reg, (uint16)vec[1]);
ET_TRACE(("etc_ioctl: ETCPHYWR2 to phy 0x%x, reg 0x%x <= 0x%x\n",
phyaddr, reg, vec[1]));
}
}
break;
#ifdef ETROBO
case ETCROBORD:
if (etc->robo && vec) {
uint page, reg;
uint16 val;
robo_info_t *robo = (robo_info_t *)etc->robo;
page = vec[0] >> 16;
reg = vec[0] & 0xffff;
val = -1;
robo->ops->read_reg(etc->robo, page, reg, &val, 2);
vec[1] = val;
ET_TRACE(("etc_ioctl: ETCROBORD of page 0x%x, reg 0x%x => 0x%x\n",
page, reg, val));
}
break;
case ETCROBOWR:
if (etc->robo && vec) {
uint page, reg;
uint16 val;
robo_info_t *robo = (robo_info_t *)etc->robo;
page = vec[0] >> 16;
reg = vec[0] & 0xffff;
val = vec[1];
robo->ops->write_reg(etc->robo, page, vec[0], &val, 2);
ET_TRACE(("etc_ioctl: ETCROBOWR to page 0x%x, reg 0x%x <= 0x%x\n",
page, reg, val));
}
break;
#endif /* ETROBO */
default:
err:
error = -1;
}
return (error);
}
/* called once per second */
void
etc_watchdog(etc_info_t *etc)
{
uint16 status;
uint16 adv;
uint16 lpa;
etc->now++;
/* no local phy registers */
if (etc->phyaddr == EPHY_NOREG) {
etc->linkstate = TRUE;
etc->speed = 100;
etc->duplex = 1;
return;
}
status = (*etc->chops->phyrd)(etc->ch, etc->phyaddr, 1);
adv = (*etc->chops->phyrd)(etc->ch, etc->phyaddr, 4);
lpa = (*etc->chops->phyrd)(etc->ch, etc->phyaddr, 5);
/* check for bad mdio read */
if (status == 0xffff) {
ET_ERROR(("et%d: etc_watchdog: bad mdio read: phyaddr %d mdcport %d\n",
etc->unit, etc->phyaddr, etc->mdcport));
return;
}
/* monitor link state */
if (!etc->linkstate && (status & STAT_LINK)) {
etc->linkstate = TRUE;
if (etc->pm_modechange)
etc->pm_modechange = FALSE;
else
et_link_up(etc->et);
}
else if (etc->linkstate && !(status & STAT_LINK)) {
etc->linkstate = FALSE;
if (!etc->pm_modechange)
et_link_down(etc->et);
}
/* update current speed and duplex */
if ((adv & ADV_100FULL) && (lpa & LPA_100FULL)) {
etc->speed = 100;
etc->duplex = 1;
} else if ((adv & ADV_100HALF) && (lpa & LPA_100HALF)) {
etc->speed = 100;
etc->duplex = 0;
} else if ((adv & ADV_10FULL) && (lpa & LPA_10FULL)) {
etc->speed = 10;
etc->duplex = 1;
} else {
etc->speed = 10;
etc->duplex = 0;
}
/* keep emac txcontrol duplex bit consistent with current phy duplex */
(*etc->chops->duplexupd)(etc->ch);
/* check for remote fault error */
if (status & STAT_REMFAULT) {
ET_ERROR(("et%d: remote fault\n", etc->unit));
}
/* check for jabber error */
if (status & STAT_JAB) {
ET_ERROR(("et%d: jabber\n", etc->unit));
}
/*
* Read chip mib counters occationally before the 16bit ones can wrap.
* We don't use the high-rate mib counters.
*/
if ((etc->now % 30) == 0)
(*etc->chops->statsupd)(etc->ch);
}
static void
etc_loopback(etc_info_t *etc, int on)
{
ET_TRACE(("et%d: etc_loopback: %d\n", etc->unit, on));
etc->loopbk = (bool) on;
et_init(etc->et);
}
void
etc_promisc(etc_info_t *etc, uint on)
{
ET_TRACE(("et%d: etc_promisc: %d\n", etc->unit, on));
etc->promisc = (bool) on;
et_init(etc->et);
}
void
etc_qos(etc_info_t *etc, uint on)
{
ET_TRACE(("et%d: etc_qos: %d\n", etc->unit, on));
etc->qos = (bool) on;
et_init(etc->et);
}
uint
etc_totlen(etc_info_t *etc, void *p)
{
uint total;
total = 0;
for (; p; p = PKTNEXT(etc->osh, p))
total += PKTLEN(etc->osh, p);
return (total);
}
|