summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2007-01-22 16:55:23 +0000
committerEric Norum <WENorum@lbl.gov>2007-01-22 16:55:23 +0000
commit1bf40dc84c16e2461832a1ffc51c741065d903e3 (patch)
treebbb81ebe5e5643ea7676d1f69916545735aaf4be /c
parent2007-01-19 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-1bf40dc84c16e2461832a1ffc51c741065d903e3.tar.bz2
Add capability to lock at 10-half.
Expand report to include auto/fixed status
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/m68k/uC5282/ChangeLog5
-rw-r--r--c/src/lib/libbsp/m68k/uC5282/README4
-rw-r--r--c/src/lib/libbsp/m68k/uC5282/network/network.c68
3 files changed, 64 insertions, 13 deletions
diff --git a/c/src/lib/libbsp/m68k/uC5282/ChangeLog b/c/src/lib/libbsp/m68k/uC5282/ChangeLog
index 161431efd4..fcfeb3bff2 100644
--- a/c/src/lib/libbsp/m68k/uC5282/ChangeLog
+++ b/c/src/lib/libbsp/m68k/uC5282/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-21 Eric Norum <norume@aps.anl.gov>
+
+ * network/network.c: Add capability to lock at 10-half.
+ Expand report to include auto/fixed status.
+
2006-12-18 Till Straumann <strauman@slac.stanford.edu>
* startup/bspstart.c: Changed BSP_installVME_isr() so that
diff --git a/c/src/lib/libbsp/m68k/uC5282/README b/c/src/lib/libbsp/m68k/uC5282/README
index 30ebd8de0b..b8e49d247c 100644
--- a/c/src/lib/libbsp/m68k/uC5282/README
+++ b/c/src/lib/libbsp/m68k/uC5282/README
@@ -85,7 +85,9 @@ port into RAM then executed or programmed into flash memory.
This forces the network link to half-duplex. If your network link is
locked at full duplex you'll have to find another port!
The RTEMS network driver can be forced to 100 Mbs/full-duplex by setting
- the bootstrap environment variable IPADDR0_100FULL to Y.
+ the bootstrap environment variable IPADDR0_100FULL to Y. The driver can
+ be forced to 10 Mbs/half-duplex by setting the bootstrap environment
+ variable IPADDR0_10HALF to Y.
4) Run 'tftp' on your host machine:
tftp> binary
diff --git a/c/src/lib/libbsp/m68k/uC5282/network/network.c b/c/src/lib/libbsp/m68k/uC5282/network/network.c
index a7b1edebf2..880bfc4af2 100644
--- a/c/src/lib/libbsp/m68k/uC5282/network/network.c
+++ b/c/src/lib/libbsp/m68k/uC5282/network/network.c
@@ -118,7 +118,8 @@ struct mcf5282_enet_struct {
/*
* Link parameters
*/
- int force100Full;
+ enum { link_auto, link_100Full, link_10Half } link;
+ uint16_t mii_cr;
uint16_t mii_sr2;
};
static struct mcf5282_enet_struct enet_driver[NIFACES];
@@ -280,10 +281,13 @@ mcf5282_fec_initialize_hardware(struct mcf5282_enet_struct *sc)
/*
* Set up Transmit Control Register:
- * Full duplex
+ * Full or half duplex
* No heartbeat
*/
- MCF5282_FEC_TCR = MCF5282_FEC_TCR_FDEN;
+ if (sc->link == link_10Half)
+ MCF5282_FEC_TCR = 0;
+ else
+ MCF5282_FEC_TCR = MCF5282_FEC_TCR_FDEN;
/*
* Initialize statistic counters
@@ -307,17 +311,38 @@ mcf5282_fec_initialize_hardware(struct mcf5282_enet_struct *sc)
* LED1 link status, LED2 receive status, LEDs stretched
* Advertise 100 Mb/s, full-duplex, IEEE-802.3
* Turn off auto-negotiate
- * Enable speed-change, duplex-change and link-status-change interrupts
- * Set 100/full and perhaps auto-negotiate
+ * Cleaer status
*/
setMII(1, 20, 0x42F2);
setMII(1, 4, 0x0181);
- setMII(1, 0, 0x2100);
+ setMII(1, 0, 0x0);
rtems_task_wake_after(2);
sc->mii_sr2 = getMII(1, 17);
- setMII(1, 18, 0x0072);
- if (!sc->force100Full)
+ switch (sc->link) {
+ case link_auto:
+ /*
+ * Enable speed-change, duplex-change and link-status-change interrupts
+ * Enable auto-negotiate (start at 100/FULL)
+ */
+ setMII(1, 18, 0x0072);
setMII(1, 0, 0x3100);
+ break;
+
+ case link_10Half:
+ /*
+ * Force 10/HALF
+ */
+ setMII(1, 0, 0x0);
+ break;
+
+ case link_100Full:
+ /*
+ * Force 100/FULL
+ */
+ setMII(1, 0, 0x2100);
+ break;
+ }
+ sc->mii_cr = getMII(1, 0);
/*
* Set up receive buffer descriptors
@@ -799,9 +824,23 @@ enet_stats(struct mcf5282_enet_struct *sc)
printf("LINK DOWN!\n");
}
else {
- printf("Link speed %d Mb/s, %s-duplex.\n",
- sc->mii_sr2 & 0x4000 ? 100 : 10,
- sc->mii_sr2 & 0x200 ? "full" : "half");
+ int speed;
+ int full;
+ int fixed;
+ if (sc->mii_cr & 0x1000) {
+ fixed = 0;
+ speed = sc->mii_sr2 & 0x4000 ? 100 : 10;
+ full = sc->mii_sr2 & 0x200 ? 1 : 0;
+ }
+ else {
+ fixed = 1;
+ speed = sc->mii_cr & 0x2000 ? 100 : 10;
+ full = sc->mii_cr & 0x100 ? "full" : "half";
+ }
+ printf("Link %s %d Mb/s, %s-duplex.\n",
+ fixed ? "fixed" : "auto-negotiate",
+ speed,
+ full ? "full" : "half");
}
printf(" EIR:%8.8lx ", MCF5282_FEC_EIR);
printf("EIMR:%8.8lx ", MCF5282_FEC_EIMR);
@@ -967,7 +1006,12 @@ rtems_fec_driver_attach(struct rtems_bsdnet_ifconfig *config, int attaching )
*/
if (((env = bsp_getbenv("IPADDR0_100FULL")) != NULL)
&& ((*env == 'y') || (*env == 'Y')))
- sc->force100Full = 1;
+ sc->link = link_100Full;
+ else if (((env = bsp_getbenv("IPADDR0_10HALF")) != NULL)
+ && ((*env == 'y') || (*env == 'Y')))
+ sc->link = link_10Half;
+ else
+ sc->link = link_auto;
/*
* Attach the interface