aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/netfpga10g
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2014-06-26 16:49:45 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2014-06-26 16:49:45 +0000
commit68c332d3b93f58a75841bc4d44c89752c54e8620 (patch)
tree3bd70e5d45dbbfc2ce87f9ba2e38b28afb111e9b /sys/dev/netfpga10g
parent60169c88d96408a08b123cf0211b1aa84fa32286 (diff)
downloadsrc-68c332d3b93f58a75841bc4d44c89752c54e8620.tar.gz
src-68c332d3b93f58a75841bc4d44c89752c54e8620.zip
In preparation for 64bit mode remove all the _4 from the function and
macro names, rename val4 to val, and m4 to md. No functional change. MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=267918
Diffstat (limited to 'sys/dev/netfpga10g')
-rw-r--r--sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c116
1 files changed, 58 insertions, 58 deletions
diff --git a/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c b/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c
index 7076b7346e24..c152e7a06498 100644
--- a/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c
+++ b/sys/dev/netfpga10g/nf10bmac/if_nf10bmac.c
@@ -121,15 +121,15 @@ static poll_handler_t nf10bmac_poll;
static inline void
-nf10bmac_write_4(struct resource *res, uint32_t reg, uint32_t val4,
+nf10bmac_write(struct resource *res, uint32_t reg, uint32_t val,
const char *f __unused, const int l __unused)
{
- bus_write_4(res, reg, htole32(val4));
+ bus_write_4(res, reg, htole32(val));
}
static inline uint32_t
-nf10bmac_read_4(struct resource *res, uint32_t reg,
+nf10bmac_read(struct resource *res, uint32_t reg,
const char *f __unused, const int l __unused)
{
@@ -137,50 +137,50 @@ nf10bmac_read_4(struct resource *res, uint32_t reg,
}
static inline void
-nf10bmac_write_4_be(struct resource *res, uint32_t reg, uint32_t val4,
+nf10bmac_write_be(struct resource *res, uint32_t reg, uint32_t val,
const char *f __unused, const int l __unused)
{
- bus_write_4(res, reg, htobe32(val4));
+ bus_write_4(res, reg, htobe32(val));
}
static inline uint32_t
-nf10bmac_read_4_be(struct resource *res, uint32_t reg,
+nf10bmac_read_be(struct resource *res, uint32_t reg,
const char *f __unused, const int l __unused)
{
return (be32toh(bus_read_4(res, reg)));
}
-#define NF10BMAC_WRITE_CTRL_4(sc, reg, val) \
- nf10bmac_write_4((sc)->nf10bmac_ctrl_res, (reg), (val), \
+#define NF10BMAC_WRITE_CTRL(sc, reg, val) \
+ nf10bmac_write((sc)->nf10bmac_ctrl_res, (reg), (val), \
__func__, __LINE__)
-#define NF10BMAC_WRITE_4(sc, reg, val) \
- nf10bmac_write_4((sc)->nf10bmac_tx_mem_res, (reg), (val), \
+#define NF10BMAC_WRITE(sc, reg, val) \
+ nf10bmac_write((sc)->nf10bmac_tx_mem_res, (reg), (val), \
__func__, __LINE__)
-#define NF10BMAC_READ_4(sc, reg) \
- nf10bmac_read_4((sc)->nf10bmac_rx_mem_res, (reg), \
+#define NF10BMAC_READ(sc, reg) \
+ nf10bmac_read((sc)->nf10bmac_rx_mem_res, (reg), \
__func__, __LINE__)
-#define NF10BMAC_WRITE_4_BE(sc, reg, val) \
- nf10bmac_write_4_be((sc)->nf10bmac_tx_mem_res, (reg), (val), \
+#define NF10BMAC_WRITE_BE(sc, reg, val) \
+ nf10bmac_write_be((sc)->nf10bmac_tx_mem_res, (reg), (val), \
__func__, __LINE__)
-#define NF10BMAC_READ_4_BE(sc, reg) \
- nf10bmac_read_4_be((sc)->nf10bmac_rx_mem_res, (reg), \
+#define NF10BMAC_READ_BE(sc, reg) \
+ nf10bmac_read_be((sc)->nf10bmac_rx_mem_res, (reg), \
__func__, __LINE__)
-#define NF10BMAC_WRITE_INTR_4(sc, reg, val, _f, _l) \
- nf10bmac_write_4((sc)->nf10bmac_intr_res, (reg), (val), \
+#define NF10BMAC_WRITE_INTR(sc, reg, val, _f, _l) \
+ nf10bmac_write((sc)->nf10bmac_intr_res, (reg), (val), \
(_f), (_l))
#define NF10BMAC_RX_INTR_CLEAR_DIS(sc) \
- NF10BMAC_WRITE_INTR_4((sc), NF10BMAC_INTR_CLEAR_DIS, 1, \
+ NF10BMAC_WRITE_INTR((sc), NF10BMAC_INTR_CLEAR_DIS, 1, \
__func__, __LINE__)
#define NF10BMAC_RX_INTR_ENABLE(sc) \
- NF10BMAC_WRITE_INTR_4((sc), NF10BMAC_INTR_CTRL, 1, \
+ NF10BMAC_WRITE_INTR((sc), NF10BMAC_INTR_CTRL, 1, \
__func__, __LINE__)
#define NF10BMAC_RX_INTR_DISABLE(sc) \
- NF10BMAC_WRITE_INTR_4((sc), NF10BMAC_INTR_CTRL, 0, \
+ NF10BMAC_WRITE_INTR((sc), NF10BMAC_INTR_CTRL, 0, \
__func__, __LINE__)
@@ -196,7 +196,7 @@ static int
nf10bmac_tx_locked(struct nf10bmac_softc *sc, struct mbuf *m)
{
int32_t len, l, ml;
- uint32_t m4, val4;
+ uint32_t md, val;
NF10BMAC_LOCK_ASSERT(sc);
@@ -211,16 +211,16 @@ nf10bmac_tx_locked(struct nf10bmac_softc *sc, struct mbuf *m)
len = m->m_pkthdr.len;
/* Write the length at start of packet. */
- NF10BMAC_WRITE_4(sc, NF10BMAC_TX_LEN, len);
+ NF10BMAC_WRITE(sc, NF10BMAC_TX_LEN, len);
/* Write the meta data and data. */
- ml = len / sizeof(val4);
- len -= (ml * sizeof(val4));
+ ml = len / sizeof(val);
+ len -= (ml * sizeof(val));
for (l = 0; l <= ml; l++) {
int32_t cl;
- cl = sizeof(val4);
- m4 = (NF10BMAC_TUSER_CPU0 << NF10BMAC_DATA_SPORT_SHIFT);
+ cl = sizeof(val);
+ md = (NF10BMAC_TUSER_CPU0 << NF10BMAC_DATA_SPORT_SHIFT);
if (l == ml || (len == 0 && l == (ml - 1))) {
if (l == ml && len == 0) {
break;
@@ -234,15 +234,15 @@ nf10bmac_tx_locked(struct nf10bmac_softc *sc, struct mbuf *m)
for (s = 0, sl = len; sl > 0; sl--)
s |= (1 << (sl - 1));
- m4 |= (s & NF10BMAC_DATA_STRB);
- m4 |= NF10BMAC_DATA_LAST;
+ md |= (s & NF10BMAC_DATA_STRB);
+ md |= NF10BMAC_DATA_LAST;
}
} else {
- m4 |= NF10BMAC_DATA_STRB;
+ md |= NF10BMAC_DATA_STRB;
}
- NF10BMAC_WRITE_4(sc, NF10BMAC_TX_META, m4);
- bcopy(&sc->nf10bmac_tx_buf[l*sizeof(val4)], &val4, cl);
- NF10BMAC_WRITE_4_BE(sc, NF10BMAC_TX_DATA, val4);
+ NF10BMAC_WRITE(sc, NF10BMAC_TX_META, md);
+ bcopy(&sc->nf10bmac_tx_buf[l*sizeof(val)], &val, cl);
+ NF10BMAC_WRITE_BE(sc, NF10BMAC_TX_DATA, val);
}
/* If anyone is interested give them a copy. */
@@ -311,14 +311,14 @@ nf10bmac_start(struct ifnet *ifp)
static void
nf10bmac_eat_packet_munch_munch(struct nf10bmac_softc *sc)
{
- uint32_t m4, val4;
+ uint32_t md, val;
do {
- m4 = NF10BMAC_READ_4_BE(sc, NF10BMAC_RX_META);
- if ((m4 & NF10BMAC_DATA_STRB) != 0)
- val4 = NF10BMAC_READ_4_BE(sc, NF10BMAC_RX_DATA);
- } while ((m4 & NF10BMAC_DATA_STRB) != 0 &&
- (m4 & NF10BMAC_DATA_LAST) == 0);
+ md = NF10BMAC_READ_BE(sc, NF10BMAC_RX_META);
+ if ((md & NF10BMAC_DATA_STRB) != 0)
+ val = NF10BMAC_READ_BE(sc, NF10BMAC_RX_DATA);
+ } while ((md & NF10BMAC_DATA_STRB) != 0 &&
+ (md & NF10BMAC_DATA_LAST) == 0);
}
static int
@@ -326,7 +326,7 @@ nf10bmac_rx_locked(struct nf10bmac_softc *sc)
{
struct ifnet *ifp;
struct mbuf *m;
- uint32_t m4, val4;
+ uint32_t md, val;
int32_t len, l;
/*
@@ -336,21 +336,21 @@ nf10bmac_rx_locked(struct nf10bmac_softc *sc)
* skip to tlast).
*/
- len = NF10BMAC_READ_4(sc, NF10BMAC_RX_LEN) & NF10BMAC_DATA_LEN_MASK;
+ len = NF10BMAC_READ(sc, NF10BMAC_RX_LEN) & NF10BMAC_DATA_LEN_MASK;
if (len > (MCLBYTES - ETHER_ALIGN)) {
nf10bmac_eat_packet_munch_munch(sc);
return (0);
}
- m4 = NF10BMAC_READ_4(sc, NF10BMAC_RX_META);
- if (len == 0 && (m4 & NF10BMAC_DATA_STRB) == 0) {
+ md = NF10BMAC_READ(sc, NF10BMAC_RX_META);
+ if (len == 0 && (md & NF10BMAC_DATA_STRB) == 0) {
/* No packet data available. */
return (0);
- } else if (len == 0 && (m4 & NF10BMAC_DATA_STRB) != 0) {
+ } else if (len == 0 && (md & NF10BMAC_DATA_STRB) != 0) {
/* We are in the middle of a packet. */
nf10bmac_eat_packet_munch_munch(sc);
return (0);
- } else if ((m4 & NF10BMAC_DATA_STRB) == 0) {
+ } else if ((md & NF10BMAC_DATA_STRB) == 0) {
/* Invalid length "hint". */
device_printf(sc->nf10bmac_dev,
"Unexpected length %d on zero strb\n", len);
@@ -377,13 +377,13 @@ nf10bmac_rx_locked(struct nf10bmac_softc *sc)
ifp = sc->nf10bmac_ifp;
l = 0;
/*
- while ((m4 & NF10BMAC_DATA_STRB) != 0 && l < len) {
+ while ((md & NF10BMAC_DATA_STRB) != 0 && l < len) {
*/
while (l < len) {
size_t cl;
- if ((m4 & NF10BMAC_DATA_LAST) == 0 &&
- (len - l) < sizeof(val4)) {
+ if ((md & NF10BMAC_DATA_LAST) == 0 &&
+ (len - l) < sizeof(val)) {
/*
* Our length and LAST disagree. We have a valid STRB.
* We could continue until we fill the mbuf and just
@@ -394,34 +394,34 @@ nf10bmac_rx_locked(struct nf10bmac_softc *sc)
ifp->if_ierrors++;
m_freem(m);
return (0);
- } else if ((len - l) <= sizeof(val4)) {
+ } else if ((len - l) <= sizeof(val)) {
cl = len - l;
} else {
- cl = sizeof(val4);
+ cl = sizeof(val);
}
/* Read the first bytes of data as well. */
- val4 = NF10BMAC_READ_4_BE(sc, NF10BMAC_RX_DATA);
- bcopy(&val4, (uint8_t *)(m->m_data + l), cl);
+ val = NF10BMAC_READ_BE(sc, NF10BMAC_RX_DATA);
+ bcopy(&val, (uint8_t *)(m->m_data + l), cl);
l += cl;
- if ((m4 & NF10BMAC_DATA_LAST) != 0 || l >= len)
+ if ((md & NF10BMAC_DATA_LAST) != 0 || l >= len)
break;
else {
DELAY(50);
- m4 = NF10BMAC_READ_4(sc, NF10BMAC_RX_META);
+ md = NF10BMAC_READ(sc, NF10BMAC_RX_META);
}
cl = 10;
- while ((m4 & NF10BMAC_DATA_STRB) == 0 && cl-- > 0) {
+ while ((md & NF10BMAC_DATA_STRB) == 0 && cl-- > 0) {
DELAY(10);
- m4 = NF10BMAC_READ_4(sc, NF10BMAC_RX_META);
+ md = NF10BMAC_READ(sc, NF10BMAC_RX_META);
}
}
/* We should get out of this loop with tlast and tsrb. */
- if ((m4 & NF10BMAC_DATA_LAST) == 0 || (m4 & NF10BMAC_DATA_STRB) == 0) {
+ if ((md & NF10BMAC_DATA_LAST) == 0 || (md & NF10BMAC_DATA_STRB) == 0) {
device_printf(sc->nf10bmac_dev, "Unexpected rx loop end state: "
- "m4=0x%08x len=%d l=%d\n", m4, len, l);
+ "md=0x%08x len=%d l=%d\n", md, len, l);
ifp->if_ierrors++;
m_freem(m);
return (0);