2 * ADMTEK Adm6996 switch configuration module
4 * Copyright (C) 2005 Felix Fietkau <nbd@nbd.name>
6 * Partially based on Broadcom Home Networking Division 10/100 Mbit/s
7 * Ethernet Device Driver (from Montavista 2.4.20_mvl31 Kernel).
8 * Copyright (C) 2004 Broadcom Corporation
10 * adm_rreg function from adm6996
11 * Copyright (C) 2004 Nikki Chumakov <nikki@gattaca.ru>
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
29 #include <linux/autoconf.h>
30 #include <linux/module.h>
31 #include <linux/init.h>
33 #include <linux/if_arp.h>
34 #include <linux/sockios.h>
35 #include <linux/delay.h>
36 #include <asm/uaccess.h>
38 #include "switch-core.h"
41 #define DRIVER_NAME "adm6996"
42 #define DRIVER_VERSION "0.01"
50 MODULE_AUTHOR("Felix Fietkau <openwrt@nbd.name>");
51 MODULE_LICENSE("GPL");
52 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,52)
53 module_param(eecs
, int, 0);
54 module_param(eesk
, int, 0);
55 module_param(eedi
, int, 0);
56 module_param(eerc
, int, 0);
57 module_param(force
, int, 0);
59 MODULE_PARM(eecs
, "i");
60 MODULE_PARM(eesk
, "i");
61 MODULE_PARM(eedi
, "i");
62 MODULE_PARM(eerc
, "i");
63 MODULE_PARM(force
, "i");
66 /* Minimum timing constants */
67 #define EECK_EDGE_TIME 3 /* 3us - max(adm 2.5us, 93c 1us) */
68 #define EEDI_SETUP_TIME 1 /* 1us - max(adm 10ns, 93c 400ns) */
69 #define EECS_SETUP_TIME 1 /* 1us - max(adm no, 93c 200ns) */
71 /* Handy macros for writing fixed length values */
72 #define adm_write8(cs, b) { __u8 val = (__u8) (b); adm_write(cs, &val, sizeof(val)*8); }
73 #define adm_write16(cs, w) { __u16 val = hton16(w); adm_write(cs, (__u8 *)&val, sizeof(val)*8); }
74 #define adm_write32(cs, i) { uint32 val = hton32(i); adm_write(cs, (__u8 *)&val, sizeof(val)*8); }
76 #define atoi(str) simple_strtoul(((str != NULL) ? str : ""), NULL, 0)
79 extern char *nvram_get(char *name
);
81 /* Return gpio pin number assigned to the named pin */
83 * Variable should be in format:
87 * 'def_pin' is returned if there is no such variable found.
89 static unsigned int get_gpiopin(char *pin_name
, unsigned int def_pin
)
91 char name
[] = "gpioXXXX";
95 /* Go thru all possibilities till a match in pin name */
96 for (pin
= 0; pin
< 16; pin
++) {
97 sprintf(name
, "gpio%d", pin
);
98 val
= nvram_get(name
);
99 if (val
&& !strcmp(val
, pin_name
))
107 static void adm_write(int cs
, char *buf
, unsigned int bits
)
109 int i
, len
= (bits
+ 7) / 8;
112 gpio_out(eecs
, (cs
? eecs
: 0));
113 udelay(EECK_EDGE_TIME
);
115 /* Byte assemble from MSB to LSB */
116 for (i
= 0; i
< len
; i
++) {
117 /* Bit bang from MSB to LSB */
118 for (mask
= 0x80; mask
&& bits
> 0; mask
>>= 1, bits
--) {
121 udelay(EECK_EDGE_TIME
);
123 /* Output on rising edge */
124 gpio_out(eedi
, ((mask
& buf
[i
]) ? eedi
: 0));
125 udelay(EEDI_SETUP_TIME
);
128 gpio_out(eesk
, eesk
);
129 udelay(EECK_EDGE_TIME
);
135 udelay(EECK_EDGE_TIME
);
142 static void adm_read(int cs
, char *buf
, unsigned int bits
)
144 int i
, len
= (bits
+ 7) / 8;
147 gpio_out(eecs
, (cs
? eecs
: 0));
148 udelay(EECK_EDGE_TIME
);
150 /* Byte assemble from MSB to LSB */
151 for (i
= 0; i
< len
; i
++) {
154 /* Bit bang from MSB to LSB */
155 for (mask
= 0x80, byte
= 0; mask
&& bits
> 0; mask
>>= 1, bits
--) {
160 udelay(EECK_EDGE_TIME
);
162 /* Input on rising edge */
168 gpio_out(eesk
, eesk
);
169 udelay(EECK_EDGE_TIME
);
177 udelay(EECK_EDGE_TIME
);
184 /* Enable outputs with specified value to the chip */
185 static void adm_enout(__u8 pins
, __u8 val
)
187 /* Prepare GPIO output value */
190 /* Enable GPIO outputs */
191 gpio_outen(pins
, pins
);
192 udelay(EECK_EDGE_TIME
);
196 /* Disable outputs to the chip */
197 static void adm_disout(__u8 pins
)
199 /* Disable GPIO outputs */
201 udelay(EECK_EDGE_TIME
);
205 /* Advance clock(s) */
206 static void adm_adclk(int clocks
)
209 for (i
= 0; i
< clocks
; i
++) {
211 gpio_out(eesk
, eesk
);
212 udelay(EECK_EDGE_TIME
);
216 udelay(EECK_EDGE_TIME
);
220 static __u32
adm_rreg(__u8 table
, __u8 addr
)
222 /* cmd: 01 10 T DD R RRRRRR */
224 0xFF, 0xFF, 0xFF, 0xFF,
225 (0x06 << 4) | ((table
& 0x01) << 3 | (addr
&64)>>6),
231 /* Enable GPIO outputs with all pins to 0 */
232 adm_enout((__u8
)(eecs
| eesk
| eedi
), 0);
234 adm_write(0, bits
, 46);
235 adm_disout((__u8
)(eedi
));
237 adm_read (0, rbits
, 32);
239 /* Extra clock(s) required per datasheet */
242 /* Disable GPIO outputs */
243 adm_disout((__u8
)(eecs
| eesk
));
245 if (!table
) /* EEPROM has 16-bit registers, but pumps out two registers in one request */
246 return (addr
& 0x01 ? (rbits
[0]<<8) | rbits
[1] : (rbits
[2]<<8) | (rbits
[3]));
248 return (rbits
[0]<<24) | (rbits
[1]<<16) | (rbits
[2]<<8) | rbits
[3];
253 /* Write chip configuration register */
254 /* Follow 93c66 timing and chip's min EEPROM timing requirement */
256 adm_wreg(__u8 addr
, __u16 val
)
258 /* cmd(27bits): sb(1) + opc(01) + addr(bbbbbbbb) + data(bbbbbbbbbbbbbbbb) */
260 (0x05 << 5) | (addr
>> 3),
261 (addr
<< 5) | (__u8
)(val
>> 11),
266 /* Enable GPIO outputs with all pins to 0 */
267 adm_enout((__u8
)(eecs
| eesk
| eedi
), 0);
269 /* Write cmd. Total 27 bits */
270 adm_write(1, bits
, 27);
272 /* Extra clock(s) required per datasheet */
275 /* Disable GPIO outputs */
276 adm_disout((__u8
)(eecs
| eesk
| eedi
));
280 /* Port configuration registers */
281 static int port_conf
[] = { 0x01, 0x03, 0x05, 0x07, 0x08, 0x09 };
283 /* Bits in VLAN port mapping */
284 static int vlan_ports
[] = { 1 << 0, 1 << 2, 1 << 4, 1 << 6, 1 << 7, 1 << 8 };
286 static int handle_vlan_port_read(void *driver
, char *buf
, int nr
)
288 int ports
, i
, c
, len
= 0;
290 if ((nr
< 0) || (nr
> 15))
293 /* Get VLAN port map */
294 ports
= adm_rreg(0, 0x13 + nr
);
296 for (i
= 0; i
<= 5; i
++) {
297 if (ports
& vlan_ports
[i
]) {
298 c
= adm_rreg(0, port_conf
[i
]);
300 len
+= sprintf(buf
+ len
, "%d", i
);
303 if (((c
& (0xf << 10)) >> 10) == nr
)
311 len
+= sprintf(buf
+ len
, "\n");
316 static int handle_vlan_port_write(void *driver
, char *buf
, int nr
)
319 switch_driver
*d
= (switch_driver
*) driver
;
320 switch_vlan_config
*c
= switch_parse_vlan(d
, buf
);
325 ports
= adm_rreg(0, 0x13 + nr
);
326 for (i
= 0; i
< d
->ports
; i
++) {
327 if (c
->port
& (1 << i
)) {
328 ports
|= vlan_ports
[i
];
330 cfg
= adm_rreg(0, port_conf
[i
]);
333 if (c
->untag
& (1 << i
))
338 if ((c
->untag
| c
->pvid
) & (1 << i
)) {
339 cfg
= (cfg
& ~(0xf << 10)) | (nr
<< 10);
342 adm_wreg(port_conf
[i
], (__u16
) cfg
);
344 ports
&= ~(vlan_ports
[i
]);
347 adm_wreg(0x13 + nr
, (__u16
) ports
);
352 static int handle_port_enable_read(void *driver
, char *buf
, int nr
)
354 return sprintf(buf
, "%d\n", ((adm_rreg(0, port_conf
[nr
]) & (1 << 5)) ? 0 : 1));
357 static int handle_port_enable_write(void *driver
, char *buf
, int nr
)
359 int reg
= adm_rreg(0, port_conf
[nr
]);
363 else if (buf
[0] == '1')
367 adm_wreg(port_conf
[nr
], (__u16
) reg
);
371 static int handle_port_media_read(void *driver
, char *buf
, int nr
)
375 int reg
= adm_rreg(0, port_conf
[nr
]);
378 media
|= SWITCH_MEDIA_AUTO
;
380 media
|= SWITCH_MEDIA_100
;
382 media
|= SWITCH_MEDIA_FD
;
384 len
= switch_print_media(buf
, media
);
385 return len
+ sprintf(buf
+ len
, "\n");
388 static int handle_port_media_write(void *driver
, char *buf
, int nr
)
390 int media
= switch_parse_media(buf
);
391 int reg
= adm_rreg(0, port_conf
[nr
]);
396 reg
&= ~((1 << 1) | (1 << 2) | (1 << 3));
397 if (media
& SWITCH_MEDIA_AUTO
)
399 if (media
& SWITCH_MEDIA_100
)
401 if (media
& SWITCH_MEDIA_FD
)
404 adm_wreg(port_conf
[nr
], reg
);
409 static int handle_vlan_enable_read(void *driver
, char *buf
, int nr
)
411 return sprintf(buf
, "%d\n", ((adm_rreg(0, 0x11) & (1 << 5)) ? 1 : 0));
414 static int handle_vlan_enable_write(void *driver
, char *buf
, int nr
)
416 int reg
= adm_rreg(0, 0x11);
420 else if (buf
[0] == '0')
424 adm_wreg(0x11, (__u16
) reg
);
428 static int handle_reset(void *driver
, char *buf
, int nr
)
434 * Reset sequence: RC high->low(100ms)->high(30ms)
436 * WAR: Certain boards don't have the correct power on
437 * reset logic therefore we must explicitly perform the
438 * sequence in software.
441 /* Keep RC high for at least 20ms */
442 adm_enout(eerc
, eerc
);
443 for (i
= 0; i
< 20; i
++)
445 /* Keep RC low for at least 100ms */
447 for (i
= 0; i
< 100; i
++)
449 /* Set default configuration */
450 adm_enout((__u8
)(eesk
| eedi
), eesk
);
451 /* Keep RC high for at least 30ms */
452 adm_enout(eerc
, eerc
);
453 for (i
= 0; i
< 30; i
++)
455 /* Leave RC high and disable GPIO outputs */
456 adm_disout((__u8
)(eecs
| eesk
| eedi
));
460 /* set up initial configuration for cpu port */
461 cfg
= (0x8000 | /* Auto MDIX */
462 (0xf << 10) | /* PVID */
463 (1 << 4) | /* Tagging */
464 0xf); /* full duplex, 100Mbps, auto neg, flow ctrl */
465 adm_wreg(port_conf
[5], cfg
);
467 /* vlan mode select register (0x11): vlan on, mac clone */
468 adm_wreg(0x11, 0xff30);
473 static int handle_registers(void *driver
, char *buf
, int nr
)
477 for (i
= 0; i
<= 0x33; i
++) {
478 len
+= sprintf(buf
+ len
, "0x%02x: 0x%04x\n", i
, adm_rreg(0, i
));
484 static int handle_counters(void *driver
, char *buf
, int nr
)
488 for (i
= 0; i
<= 0x3c; i
++) {
489 len
+= sprintf(buf
+ len
, "0x%02x: 0x%08x\n", i
, adm_rreg(1, i
));
495 static int detect_adm(void)
500 int boardflags
= atoi(nvram_get("boardflags"));
501 int boardnum
= atoi(nvram_get("boardnum"));
503 if ((boardnum
== 44) && (boardflags
== 0x0388)) { /* Trendware TEW-411BRP+ */
506 eecs
= get_gpiopin("adm_eecs", 2);
507 eesk
= get_gpiopin("adm_eesk", 3);
508 eedi
= get_gpiopin("adm_eedi", 4);
509 eerc
= get_gpiopin("adm_rc", 5);
511 } else if ((boardflags
& 0x80) || force
) {
514 eecs
= get_gpiopin("adm_eecs", 2);
515 eesk
= get_gpiopin("adm_eesk", 3);
516 eedi
= get_gpiopin("adm_eedi", 4);
517 eerc
= get_gpiopin("adm_rc", 0);
519 } else if ((strcmp(nvram_get("boardtype") ?: "", "bcm94710dev") == 0) &&
520 (strncmp(nvram_get("boardnum") ?: "", "42", 2) == 0)) {
521 /* WRT54G v1.1 hack */
528 printk("BFL_ENETADM not set in boardflags. Use force=1 to ignore.\n");
545 static int __init
adm_init(void)
547 switch_config cfg
[] = {
548 {"registers", handle_registers
, NULL
},
549 {"counters", handle_counters
, NULL
},
550 {"reset", NULL
, handle_reset
},
551 {"enable_vlan", handle_vlan_enable_read
, handle_vlan_enable_write
},
554 switch_config port
[] = {
555 {"enable", handle_port_enable_read
, handle_port_enable_write
},
556 {"media", handle_port_media_read
, handle_port_media_write
},
559 switch_config vlan
[] = {
560 {"ports", handle_vlan_port_read
, handle_vlan_port_write
},
563 switch_driver driver
= {
565 version
: DRIVER_VERSION
,
570 driver_handlers
: cfg
,
578 return switch_register_driver(&driver
);
581 static void __exit
adm_exit(void)
583 switch_unregister_driver(DRIVER_NAME
);
587 module_init(adm_init
);
588 module_exit(adm_exit
);
This page took 0.096908 seconds and 5 git commands to generate.