summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2007-08-06 22:51:19 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2007-08-06 22:51:19 +0000
commit27ce1dca8fd2447fb99333a0f6166ef7ed8bae7b (patch)
tree6054d416a6f63fb0a6d788f9e8f06787b65d4aa9
parentd569c9b0c585d1ada0bb33679611b77eba528140 (diff)
o Replace bus_space_write_2 for-loops in TX/RX with
bus_space_write_raw_multi_2. o Make TX/RX work on big endian archs (tested on macppc). in co-operation and OK claudio@
-rw-r--r--sys/dev/pcmcia/if_malo.c31
-rw-r--r--sys/dev/pcmcia/if_malovar.h6
2 files changed, 20 insertions, 17 deletions
diff --git a/sys/dev/pcmcia/if_malo.c b/sys/dev/pcmcia/if_malo.c
index 68a2a9e951f..bc810b6ad4f 100644
--- a/sys/dev/pcmcia/if_malo.c
+++ b/sys/dev/pcmcia/if_malo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_malo.c,v 1.41 2007/08/06 14:21:24 mglocker Exp $ */
+/* $OpenBSD: if_malo.c,v 1.42 2007/08/06 22:51:18 mglocker Exp $ */
/*
* Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
@@ -831,18 +831,20 @@ cmalo_rx(struct malo_softc *sc)
struct malo_rx_desc *rxdesc;
struct mbuf *m;
uint8_t *data;
- uint16_t psize, *uc;
+ uint16_t psize;
int i;
splassert(IPL_NET);
/* read the whole RX packet which is always 802.3 */
psize = MALO_READ_2(sc, MALO_REG_DATA_READ_LEN);
- uc = (uint16_t *)sc->sc_data;
- for (i = 0; i < psize / 2; i++)
- uc[i] = htole16(MALO_READ_2(sc, MALO_REG_DATA_READ));
- if (psize & 0x0001)
- uc[i] = MALO_READ_1(sc, MALO_REG_DATA_READ);
+ if (psize & 0x0001) {
+ MALO_READ_MULTI_2(sc, MALO_REG_DATA_READ, sc->sc_data,
+ psize - 1);
+ data = (uint8_t *)sc->sc_data;
+ data[psize - 1] = MALO_READ_1(sc, MALO_REG_DATA_READ);
+ } else
+ MALO_READ_MULTI_2(sc, MALO_REG_DATA_READ, sc->sc_data, psize);
MALO_WRITE_1(sc, MALO_REG_HOST_STATUS, MALO_VAL_RX_DL_OVER);
MALO_WRITE_2(sc, MALO_REG_CARD_INTR_CAUSE, MALO_VAL_RX_DL_OVER);
@@ -922,8 +924,7 @@ cmalo_tx(struct malo_softc *sc, struct mbuf *m)
struct ifnet *ifp = &sc->sc_ic.ic_if;
struct malo_tx_desc *txdesc = sc->sc_data;
uint8_t *data;
- uint16_t psize, *uc;
- int i;
+ uint16_t psize;
splassert(IPL_NET);
@@ -942,11 +943,13 @@ cmalo_tx(struct malo_softc *sc, struct mbuf *m)
/* send TX packet to the device */
MALO_WRITE_2(sc, MALO_REG_DATA_WRITE_LEN, psize);
- uc = (uint16_t *)sc->sc_data;
- for (i = 0; i < psize / 2; i++)
- MALO_WRITE_2(sc, MALO_REG_DATA_WRITE, uc[i]);
- if (psize & 0x0001)
- MALO_WRITE_1(sc, MALO_REG_DATA_WRITE, uc[i]);
+ if (psize & 0x0001) {
+ MALO_WRITE_MULTI_2(sc, MALO_REG_DATA_WRITE, sc->sc_data,
+ psize - 1);
+ data = (uint8_t *)sc->sc_data;
+ MALO_WRITE_1(sc, MALO_REG_DATA_WRITE, data[psize - 1]);
+ } else
+ MALO_WRITE_MULTI_2(sc, MALO_REG_DATA_WRITE, sc->sc_data, psize);
MALO_WRITE_1(sc, MALO_REG_HOST_STATUS, MALO_VAL_TX_DL_OVER);
MALO_WRITE_2(sc, MALO_REG_CARD_INTR_CAUSE, MALO_VAL_TX_DL_OVER);
diff --git a/sys/dev/pcmcia/if_malovar.h b/sys/dev/pcmcia/if_malovar.h
index 3e6720711d8..fc00d0c422a 100644
--- a/sys/dev/pcmcia/if_malovar.h
+++ b/sys/dev/pcmcia/if_malovar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_malovar.h,v 1.20 2007/08/05 14:53:02 mglocker Exp $ */
+/* $OpenBSD: if_malovar.h,v 1.21 2007/08/06 22:51:18 mglocker Exp $ */
/*
* Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
@@ -22,14 +22,14 @@
#define MALO_READ_2(sc, reg) \
bus_space_read_2((sc)->sc_iot, (sc)->sc_ioh, (reg))
#define MALO_READ_MULTI_2(sc, reg, off, size) \
- bus_space_read_multi_2((sc)->sc_iot, (sc)->sc_ioh, (reg), (off), \
+ bus_space_read_raw_multi_2((sc)->sc_iot, (sc)->sc_ioh, (reg), (off), \
(size))
#define MALO_WRITE_1(sc, reg, val) \
bus_space_write_1((sc)->sc_iot, (sc)->sc_ioh, (reg), (val))
#define MALO_WRITE_2(sc, reg, val) \
bus_space_write_2((sc)->sc_iot, (sc)->sc_ioh, (reg), (val))
#define MALO_WRITE_MULTI_2(sc, reg, off, size) \
- bus_space_write_multi_2((sc)->sc_iot, (sc)->sc_ioh, (reg), (off), \
+ bus_space_write_raw_multi_2((sc)->sc_iot, (sc)->sc_ioh, (reg), (off), \
(size))
/* miscellaneous */