projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix path to libgcc.a in LIBGCC_S
[openwrt.git]
/
package
/
broadcom-57xx
/
src
/
bcmrobo.c
diff --git
a/package/broadcom-57xx/src/bcmrobo.c
b/package/broadcom-57xx/src/bcmrobo.c
index
72824f6
..
b60db49
100644
(file)
--- a/
package/broadcom-57xx/src/bcmrobo.c
+++ b/
package/broadcom-57xx/src/bcmrobo.c
@@
-96,6
+96,7
@@
#define DEVID5395 0x95 /* 5395 */
#define DEVID5397 0x97 /* 5397 */
#define DEVID5398 0x98 /* 5398 */
#define DEVID5395 0x95 /* 5395 */
#define DEVID5397 0x97 /* 5397 */
#define DEVID5398 0x98 /* 5398 */
+#define DEVID53115 0x3115 /* 53115 */
/* VLAN page registers */
#define REG_VLAN_CTRL0 0x00 /* VLAN Control 0 register */
/* VLAN page registers */
#define REG_VLAN_CTRL0 0x00 /* VLAN Control 0 register */
@@
-788,13
+789,6
@@
bcm_robo_attach(sb_t *sbh, void *h, char *name, char *vars, miird_f miird, miiwr
sb_gpioouten(robo->sbh, reset, reset, GPIO_DRV_PRIORITY);
bcm_mdelay(50);
sb_gpioouten(robo->sbh, reset, reset, GPIO_DRV_PRIORITY);
bcm_mdelay(50);
- if (robo->devid == DEVID5395)
- nvram_set("switch_type", "BCM5395");
- else if(robo->devid == DEVID5397)
- nvram_set("switch_type", "BCM5397");
- else
- nvram_set("switch_type", "unknown");
-
/* Keep RESET high for at least 20 ms */
sb_gpioout(robo->sbh, reset, reset, GPIO_DRV_PRIORITY);
bcm_mdelay(20);
/* Keep RESET high for at least 20 ms */
sb_gpioout(robo->sbh, reset, reset, GPIO_DRV_PRIORITY);
bcm_mdelay(20);
@@
-898,7
+892,8
@@
bcm_robo_attach(sb_t *sbh, void *h, char *name, char *vars, miird_f miird, miiwr
ASSERT((robo->devid == DEVID5325) ||
(robo->devid == DEVID5395) ||
(robo->devid == DEVID5397) ||
ASSERT((robo->devid == DEVID5325) ||
(robo->devid == DEVID5395) ||
(robo->devid == DEVID5397) ||
- (robo->devid == DEVID5398));
+ (robo->devid == DEVID5398) ||
+ (robo->devid == DEVID53115));
bcm_robo_reset(robo);
config_attach(robo);
bcm_robo_reset(robo);
config_attach(robo);
@@
-1260,7
+1255,7
@@
static int handle_vlan_port_write(void *driver, char *buf, int nr)
val32 = ((c->untag << 9) | /* untag enable */
c->port); /* vlan members */
val32 = ((c->untag << 9) | /* untag enable */
c->port); /* vlan members */
- if (
robo->devid == DEVID5395
) {
+ if (
(robo->devid == DEVID5395) || (robo->devid == DEVID53115)
) {
vtble = REG_VTBL_ENTRY_5395;
vtbli = REG_VTBL_INDX_5395;
vtbla = REG_VTBL_ACCESS_5395;
vtble = REG_VTBL_ENTRY_5395;
vtbli = REG_VTBL_INDX_5395;
vtbla = REG_VTBL_ACCESS_5395;
This page took
0.023937 seconds
and
4
git commands to generate.