summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrik <rik@FreeBSD.org>2004-06-23 18:13:10 +0000
committerrik <rik@FreeBSD.org>2004-06-23 18:13:10 +0000
commit7c1f24f113cdd75f461006273324186a74e573f7 (patch)
tree3076b9aed8f43d43d0fe617a08a9ebd9208ead1f
parentb597657d93c100a9e52c4ec3f2cb9eb99ec92fe1 (diff)
downloadFreeBSD-src-7c1f24f113cdd75f461006273324186a74e573f7.zip
FreeBSD-src-7c1f24f113cdd75f461006273324186a74e573f7.tar.gz
Use bus_dma* instead of contigmalloc()+vtophys() for RELENG_5.
-rw-r--r--sys/dev/cp/if_cp.c173
-rw-r--r--sys/dev/ctau/if_ct.c153
-rw-r--r--sys/dev/cx/if_cx.c154
3 files changed, 371 insertions, 109 deletions
diff --git a/sys/dev/cp/if_cp.c b/sys/dev/cp/if_cp.c
index 8a500c2..dfb4a7e 100644
--- a/sys/dev/cp/if_cp.c
+++ b/sys/dev/cp/if_cp.c
@@ -18,7 +18,7 @@
* as long as this message is kept with the software, all derivative
* works or modified versions.
*
- * $Cronyx: if_cp.c,v 1.1.2.32 2004/02/26 17:56:39 rik Exp $
+ * Cronyx Id: if_cp.c,v 1.1.2.41 2004/06/23 17:09:13 rik Exp $
*/
#include <sys/cdefs.h>
@@ -66,11 +66,7 @@ __FBSDID("$FreeBSD$");
# endif
# include <netgraph/ng_message.h>
# include <netgraph/netgraph.h>
-# if __FreeBSD_version >= 500000
-# include <dev/cp/ng_cp.h>
-# else
-# include <netgraph/ng_cp.h>
-# endif
+# include <dev/cp/ng_cp.h>
#else
# include <net/if_sppp.h>
# define PP_CISCO IFF_LINK2
@@ -80,13 +76,8 @@ __FBSDID("$FreeBSD$");
# include <net/bpf.h>
# define NBPFILTER NBPF
#endif
-#if __FreeBSD_version >= 500000
#include <dev/cx/machdep.h>
#include <dev/cp/cpddk.h>
-#else
-#include <i386/isa/cronyx/machdep.h>
-#include <pci/cpddk.h>
-#endif
#include <machine/cserial.h>
#include <machine/resource.h>
#include <machine/pmap.h>
@@ -116,26 +107,21 @@ static device_method_t cp_methods[] = {
{0, 0}
};
-typedef struct _bdrv_t {
- cp_board_t *board;
- struct resource *cp_res;
- struct resource *cp_irq;
- void *cp_intrhand;
-} bdrv_t;
-
-static driver_t cp_driver = {
- "cp",
- cp_methods,
- sizeof(bdrv_t),
-};
-
-static devclass_t cp_devclass;
+typedef struct _cp_dma_mem_t {
+ unsigned long phys;
+ void *virt;
+ size_t size;
+#if __FreeBSD_version >= 500000
+ bus_dma_tag_t dmat;
+ bus_dmamap_t mapp;
+#endif
+} cp_dma_mem_t;
typedef struct _drv_t {
char name [8];
cp_chan_t *chan;
cp_board_t *board;
- cp_buf_t buf;
+ cp_dma_mem_t dmamem;
int running;
#ifdef NETGRAPH
char nodename [NG_NODELEN+1];
@@ -152,6 +138,23 @@ typedef struct _drv_t {
struct cdev *devt;
} drv_t;
+typedef struct _bdrv_t {
+ cp_board_t *board;
+ struct resource *cp_res;
+ struct resource *cp_irq;
+ void *cp_intrhand;
+ cp_dma_mem_t dmamem;
+ drv_t channel [NCHAN];
+} bdrv_t;
+
+static driver_t cp_driver = {
+ "cp",
+ cp_methods,
+ sizeof(bdrv_t),
+};
+
+static devclass_t cp_devclass;
+
static void cp_receive (cp_chan_t *c, unsigned char *data, int len);
static void cp_transmit (cp_chan_t *c, void *attachment, int len);
static void cp_error (cp_chan_t *c, int data);
@@ -172,7 +175,6 @@ static void cp_initialize (void *softc);
static cp_board_t *adapter [NBRD];
static drv_t *channel [NBRD*NCHAN];
-static cp_qbuf_t *queue [NBRD];
static struct callout_handle led_timo [NBRD];
static struct callout_handle timeout_handle;
@@ -298,6 +300,86 @@ static void cp_intr (void *arg)
extern struct cdevsw cp_cdevsw;
+#if __FreeBSD_version >= 500000
+static void
+cp_bus_dmamap_addr (void *arg, bus_dma_segment_t *segs, int nseg, int error)
+{
+ unsigned long *addr;
+
+ if (error)
+ return;
+
+ KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
+ addr = arg;
+ *addr = segs->ds_addr;
+}
+
+static int
+cp_bus_dma_mem_alloc (int bnum, int cnum, cp_dma_mem_t *dmem)
+{
+ int error;
+
+ error = bus_dma_tag_create (NULL, 16, 0, BUS_SPACE_MAXADDR_32BIT,
+ BUS_SPACE_MAXADDR, NULL, NULL, dmem->size, 1,
+ dmem->size, 0, NULL, NULL, &dmem->dmat);
+ if (error) {
+ if (cnum >= 0) printf ("cp%d-%d: ", bnum, cnum);
+ else printf ("cp%d: ", bnum);
+ printf ("couldn't allocate tag for dma memory\n");
+ return 0;
+ }
+ error = bus_dmamem_alloc (dmem->dmat, (void **)&dmem->virt,
+ BUS_DMA_NOWAIT | BUS_DMA_ZERO, &dmem->mapp);
+ if (error) {
+ if (cnum >= 0) printf ("cp%d-%d: ", bnum, cnum);
+ else printf ("cp%d: ", bnum);
+ printf ("couldn't allocate mem for dma memory\n");
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ error = bus_dmamap_load (dmem->dmat, dmem->mapp, dmem->virt,
+ dmem->size, cp_bus_dmamap_addr, &dmem->phys, 0);
+ if (error) {
+ if (cnum >= 0) printf ("cp%d-%d: ", bnum, cnum);
+ else printf ("cp%d: ", bnum);
+ printf ("couldn't load mem map for dma memory\n");
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ return 1;
+}
+
+static void
+cp_bus_dma_mem_free (cp_dma_mem_t *dmem)
+{
+ bus_dmamap_unload (dmem->dmat, dmem->mapp);
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+}
+#else
+static int
+cp_bus_dma_mem_alloc (int bnum, int cnum, cp_dma_mem_t *dmem)
+{
+ dmem->virt = contigmalloc (dmem->size, M_DEVBUF, M_WAITOK,
+ 0x100000, 0xffffffff, 16, 0);
+ if (dmem->virt == NULL) {
+ if (cnum >= 0) printf ("cp%d-%d: ", bnum, cnum);
+ else printf ("cp%d: ", bnum);
+ printf ("couldn't allocate memory for dma memory\n", unit);
+ return 0;
+ }
+ dmem->phys = vtophys (dmem->virt);
+ return 1;
+}
+
+static void
+cp_bus_dma_mem_free (cp_dma_mem_t *dmem)
+{
+ contigfree (dmem->virt, dmem->size, M_DEVBUF);
+}
+#endif
+
/*
* Called if the probe succeeded.
*/
@@ -305,12 +387,12 @@ static int cp_attach (device_t dev)
{
bdrv_t *bd = device_get_softc (dev);
int unit = device_get_unit (dev);
- int rid, error;
+ unsigned short res;
vm_offset_t vbase;
- cp_board_t *b;
+ int rid, error;
+ cp_board_t *b;
cp_chan_t *c;
- drv_t *d;
- unsigned short res;
+ drv_t *d;
int s = splimp ();
b = malloc (sizeof(cp_board_t), M_DEVBUF, M_WAITOK);
@@ -343,15 +425,14 @@ static int cp_attach (device_t dev)
splx (s);
return (ENXIO);
}
- queue[unit] = contigmalloc (sizeof(cp_qbuf_t), M_DEVBUF, M_WAITOK,
- 0x100000, 0xffffffff, 16, 0);
- if (queue[unit] == NULL) {
- printf ("cp%d: allocate memory for qbuf_t\n", unit);
+
+ bd->dmamem.size = sizeof(cp_qbuf_t);
+ if (! cp_bus_dma_mem_alloc (unit, -1, &bd->dmamem)) {
free (b, M_DEVBUF);
splx (s);
return (ENXIO);
}
- cp_reset (b, queue[unit], vtophys (queue[unit]));
+ cp_reset (b, bd->dmamem.virt, bd->dmamem.phys);
rid = 0;
bd->cp_irq = bus_alloc_resource (dev, SYS_RES_IRQ, &rid, 0, ~0, 1,
@@ -380,14 +461,11 @@ static int cp_attach (device_t dev)
for (c=b->chan; c<b->chan+NCHAN; ++c) {
if (! c->type)
continue;
- d = contigmalloc (sizeof(drv_t), M_DEVBUF, M_WAITOK,
- 0x100000, 0xffffffff, 16, 0);
- if (d == NULL) {
- printf ("cp%d-%d: cannot allocate memory for drv_t\n",
- unit, c->num);
- }
+ d = &bd->channel[c->num];
+ d->dmamem.size = sizeof(cp_buf_t);
+ if (! cp_bus_dma_mem_alloc (unit, c->num, &d->dmamem))
+ continue;
channel [b->num*NCHAN + c->num] = d;
- bzero (d, sizeof(drv_t));
sprintf (d->name, "cp%d.%d", b->num, c->num);
d->board = b;
d->chan = c;
@@ -444,7 +522,7 @@ static int cp_attach (device_t dev)
bpfattach (&d->pp.pp_if, DLT_PPP, 4);
#endif /*NETGRAPH*/
cp_start_e1 (c);
- cp_start_chan (c, 1, 1, &d->buf, vtophys (&d->buf));
+ cp_start_chan (c, 1, 1, d->dmamem.virt, d->dmamem.phys);
/* Register callback functions. */
cp_register_transmit (c, &cp_transmit);
@@ -548,10 +626,10 @@ static int cp_detach (device_t dev)
continue;
channel [b->num*NCHAN + c->num] = 0;
/* Deallocate buffers. */
- contigfree (d, sizeof (*d), M_DEVBUF);
+ cp_bus_dma_mem_free (&d->dmamem);
}
adapter [b->num] = 0;
- contigfree (queue[b->num], sizeof (cp_qbuf_t), M_DEVBUF);
+ cp_bus_dma_mem_free (&bd->dmamem);
free (b, M_DEVBUF);
splx (s);
return 0;
@@ -2326,7 +2404,6 @@ static int ng_cp_disconnect (hook_p hook)
}
#endif
-
static int cp_modevent (module_t mod, int type, void *unused)
{
struct cdev *dev;
@@ -2400,7 +2477,7 @@ DRIVER_MODULE (cpmod, pci, cp_driver, cp_devclass, cp_modevent, NULL);
#else
DRIVER_MODULE (cp, pci, cp_driver, cp_devclass, cp_modevent, NULL);
#endif
-#elif __FreeBSD_version >= 400000
+#elif __FreeBSD_version >= 400000
#ifdef NETGRAPH
DRIVER_MODULE (cp, pci, cp_driver, cp_devclass, ng_mod_event, &typestruct);
#else
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c
index c521d6d..f4cf7b1 100644
--- a/sys/dev/ctau/if_ct.c
+++ b/sys/dev/ctau/if_ct.c
@@ -18,8 +18,9 @@
* as long as this message is kept with the software, all derivative
* works or modified versions.
*
- * Cronyx Id: if_ct.c,v 1.1.2.22 2004/02/26 19:06:51 rik Exp $
+ * Cronyx Id: if_ct.c,v 1.1.2.31 2004/06/23 17:09:13 rik Exp $
*/
+
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
@@ -111,30 +112,21 @@ static device_method_t ct_isa_methods [] = {
{0, 0}
};
-typedef struct _bdrv_t {
- ct_board_t *board;
- struct resource *base_res;
- struct resource *drq_res;
- struct resource *irq_res;
- int base_rid;
- int drq_rid;
- int irq_rid;
- void *intrhand;
-} bdrv_t;
-
-static driver_t ct_isa_driver = {
- "ct",
- ct_isa_methods,
- sizeof (bdrv_t),
-};
-
-static devclass_t ct_devclass;
+typedef struct _ct_dma_mem_t {
+ unsigned long phys;
+ void *virt;
+ size_t size;
+#if __FreeBSD_version >= 500000
+ bus_dma_tag_t dmat;
+ bus_dmamap_t mapp;
+#endif
+} ct_dma_mem_t;
typedef struct _drv_t {
char name [8];
ct_chan_t *chan;
ct_board_t *board;
- ct_buf_t buf;
+ ct_dma_mem_t dmamem;
int running;
#ifdef NETGRAPH
char nodename [NG_NODELEN+1];
@@ -151,6 +143,26 @@ typedef struct _drv_t {
struct cdev *devt;
} drv_t;
+typedef struct _bdrv_t {
+ ct_board_t *board;
+ struct resource *base_res;
+ struct resource *drq_res;
+ struct resource *irq_res;
+ int base_rid;
+ int drq_rid;
+ int irq_rid;
+ void *intrhand;
+ drv_t channel [NCHAN];
+} bdrv_t;
+
+static driver_t ct_isa_driver = {
+ "ct",
+ ct_isa_methods,
+ sizeof (bdrv_t),
+};
+
+static devclass_t ct_devclass;
+
static void ct_receive (ct_chan_t *c, char *data, int len);
static void ct_transmit (ct_chan_t *c, void *attachment, int len);
static void ct_error (ct_chan_t *c, int data);
@@ -446,6 +458,87 @@ static int ct_probe (device_t dev)
}
extern struct cdevsw ct_cdevsw;
+
+#if __FreeBSD_version >= 500000
+static void
+ct_bus_dmamap_addr (void *arg, bus_dma_segment_t *segs, int nseg, int error)
+{
+ unsigned long *addr;
+
+ if (error)
+ return;
+
+ KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
+ addr = arg;
+ *addr = segs->ds_addr;
+}
+
+static int
+ct_bus_dma_mem_alloc (int bnum, int cnum, ct_dma_mem_t *dmem)
+{
+ int error;
+
+ error = bus_dma_tag_create (NULL, 16, 0, BUS_SPACE_MAXADDR_24BIT,
+ BUS_SPACE_MAXADDR, NULL, NULL, dmem->size, 1,
+ dmem->size, 0, NULL, NULL, &dmem->dmat);
+ if (error) {
+ if (cnum >= 0) printf ("ct%d-%d: ", bnum, cnum);
+ else printf ("ct%d: ", bnum);
+ printf ("couldn't allocate tag for dma memory\n");
+ return 0;
+ }
+ error = bus_dmamem_alloc (dmem->dmat, (void **)&dmem->virt,
+ BUS_DMA_NOWAIT | BUS_DMA_ZERO, &dmem->mapp);
+ if (error) {
+ if (cnum >= 0) printf ("ct%d-%d: ", bnum, cnum);
+ else printf ("ct%d: ", bnum);
+ printf ("couldn't allocate mem for dma memory\n");
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ error = bus_dmamap_load (dmem->dmat, dmem->mapp, dmem->virt,
+ dmem->size, ct_bus_dmamap_addr, &dmem->phys, 0);
+ if (error) {
+ if (cnum >= 0) printf ("ct%d-%d: ", bnum, cnum);
+ else printf ("ct%d: ", bnum);
+ printf ("couldn't load mem map for dma memory\n");
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ return 1;
+}
+
+static void
+ct_bus_dma_mem_free (ct_dma_mem_t *dmem)
+{
+ bus_dmamap_unload (dmem->dmat, dmem->mapp);
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+}
+#else
+static int
+ct_bus_dma_mem_alloc (int bnum, int cnum, ct_dma_mem_t *dmem)
+{
+ dmem->virt = contigmalloc (dmem->size, M_DEVBUF, M_WAITOK,
+ 0x100000, 0x1000000, 16, 0);
+ if (dmem->virt == NULL) {
+ if (cnum >= 0) printf ("ct%d-%d: ", bnum, cnum);
+ else printf ("ct%d: ", bnum);
+ printf ("couldn't allocate memory for dma memory\n", unit);
+ return 0;
+ }
+ dmem->phys = vtophys (dmem->virt);
+ return 1;
+}
+
+static void
+ct_bus_dma_mem_free (ct_dma_mem_t *dmem)
+{
+ contigfree (dmem->virt, dmem->size, M_DEVBUF);
+}
+#endif
+
/*
* The adapter is present, initialize the driver structures.
*/
@@ -589,10 +682,11 @@ static int ct_attach (device_t dev)
b->osc == 20000000 ? "20" : "16.384");
for (c=b->chan; c<b->chan+NCHAN; ++c) {
- d = contigmalloc (sizeof(drv_t), M_DEVBUF, M_WAITOK,
- 0x100000, 0x1000000, 16, 0);
+ d = &bd->channel[c->num];
+ d->dmamem.size = sizeof(ct_buf_t);
+ if (! ct_bus_dma_mem_alloc (unit, c->num, &d->dmamem))
+ continue;
channel [b->num*NCHAN + c->num] = d;
- bzero (d, sizeof(drv_t));
sprintf (d->name, "ct%d.%d", b->num, c->num);
d->board = b;
d->chan = c;
@@ -603,7 +697,7 @@ static int ct_attach (device_t dev)
printf ("%s: cannot make common node\n", d->name);
channel [b->num*NCHAN + c->num] = 0;
c->sys = 0;
- contigfree (d, sizeof (*d), M_DEVBUF);
+ ct_bus_dma_mem_free (&d->dmamem);
continue;
}
#if __FreeBSD_version >= 500000
@@ -623,7 +717,7 @@ static int ct_attach (device_t dev)
#endif
channel [b->num*NCHAN + c->num] = 0;
c->sys = 0;
- contigfree (d, sizeof (*d), M_DEVBUF);
+ ct_bus_dma_mem_free (&d->dmamem);
continue;
}
d->queue.ifq_maxlen = IFQ_MAXLEN;
@@ -654,7 +748,7 @@ static int ct_attach (device_t dev)
* Header size is 4 bytes. */
bpfattach (&d->pp.pp_if, DLT_PPP, 4);
#endif /*NETGRAPH*/
- ct_start_chan (c, &d->buf, vtophys (&d->buf));
+ ct_start_chan (c, d->dmamem.virt, d->dmamem.phys);
ct_register_receive (c, &ct_receive);
ct_register_transmit (c, &ct_transmit);
ct_register_error (c, &ct_error);
@@ -748,7 +842,7 @@ static int ct_detach (device_t dev)
continue;
/* Deallocate buffers. */
- contigfree (d, sizeof (*d), M_DEVBUF);
+ ct_bus_dma_mem_free (&d->dmamem);
}
bd->board = 0;
adapter [b->num] = 0;
@@ -1504,7 +1598,7 @@ static int ct_ioctl (struct cdev *dev, u_long cmd, caddr_t data, int flag, struc
case SERIAL_SETCLK:
/* Only for superuser! */
#if __FreeBSD_version < 500000
- error = suser (p);
+ error = suser (p);
#else /* __FreeBSD_version >= 500000 */
error = suser (td);
#endif /* __FreeBSD_version >= 500000 */
@@ -2296,9 +2390,8 @@ static struct ng_type typestruct = {
.newhook = ng_ct_newhook,
.connect = ng_ct_connect,
.rcvdata = ng_ct_rcvdata,
- .disconnect = ng_ct_disconnect
+ .disconnect = ng_ct_disconnect,
};
-
#endif /*NETGRAPH*/
#if __FreeBSD_version >= 500000
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c
index 5b69114..f7e57fa 100644
--- a/sys/dev/cx/if_cx.c
+++ b/sys/dev/cx/if_cx.c
@@ -19,8 +19,9 @@
* as long as this message is kept with the software, all derivative
* works or modified versions.
*
- * Cronyx Id: if_cx.c,v 1.1.2.23 2004/02/26 17:56:40 rik Exp $
+ * Cronyx Id: if_cx.c,v 1.1.2.34 2004/06/23 17:09:13 rik Exp $
*/
+
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
@@ -57,8 +58,8 @@ __FBSDID("$FreeBSD$");
#include <machine/cserial.h>
#include <machine/clock.h>
#if __FreeBSD_version < 500000
-#include <machine/ipl.h>
-#include <i386/isa/isa_device.h>
+# include <machine/ipl.h>
+# include <i386/isa/isa_device.h>
#endif
#include <machine/resource.h>
#if __FreeBSD_version <= 501000
@@ -142,30 +143,21 @@ static device_method_t cx_isa_methods [] = {
{0, 0}
};
-typedef struct _bdrv_t {
- cx_board_t *board;
- struct resource *base_res;
- struct resource *drq_res;
- struct resource *irq_res;
- int base_rid;
- int drq_rid;
- int irq_rid;
- void *intrhand;
-} bdrv_t;
-
-static driver_t cx_isa_driver = {
- "cx",
- cx_isa_methods,
- sizeof (bdrv_t),
-};
-
-static devclass_t cx_devclass;
+typedef struct _cx_dma_mem_t {
+ unsigned long phys;
+ void *virt;
+ size_t size;
+#if __FreeBSD_version >= 500000
+ bus_dma_tag_t dmat;
+ bus_dmamap_t mapp;
+#endif
+} cx_dma_mem_t;
typedef struct _drv_t {
char name [8];
cx_chan_t *chan;
cx_board_t *board;
- cx_buf_t buf;
+ cx_dma_mem_t dmamem;
struct tty *tty;
struct callout_handle dcd_timeout_handle;
unsigned dtrwait;
@@ -196,6 +188,26 @@ typedef struct _drv_t {
short atimeout;
} drv_t;
+typedef struct _bdrv_t {
+ cx_board_t *board;
+ struct resource *base_res;
+ struct resource *drq_res;
+ struct resource *irq_res;
+ int base_rid;
+ int drq_rid;
+ int irq_rid;
+ void *intrhand;
+ drv_t channel [NCHAN];
+} bdrv_t;
+
+static driver_t cx_isa_driver = {
+ "cx",
+ cx_isa_methods,
+ sizeof (bdrv_t),
+};
+
+static devclass_t cx_devclass;
+
extern long csigma_fw_len;
extern const char *csigma_fw_version;
extern const char *csigma_fw_date;
@@ -571,6 +583,86 @@ static int cx_probe (device_t dev)
return 0;
}
+#if __FreeBSD_version >= 500000
+static void
+cx_bus_dmamap_addr (void *arg, bus_dma_segment_t *segs, int nseg, int error)
+{
+ unsigned long *addr;
+
+ if (error)
+ return;
+
+ KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
+ addr = arg;
+ *addr = segs->ds_addr;
+}
+
+static int
+cx_bus_dma_mem_alloc (int bnum, int cnum, cx_dma_mem_t *dmem)
+{
+ int error;
+
+ error = bus_dma_tag_create (NULL, 16, 0, BUS_SPACE_MAXADDR_24BIT,
+ BUS_SPACE_MAXADDR, NULL, NULL, dmem->size, 1,
+ dmem->size, 0, NULL, NULL, &dmem->dmat);
+ if (error) {
+ if (cnum >= 0) printf ("cx%d-%d: ", bnum, cnum);
+ else printf ("cx%d: ", bnum);
+ printf ("couldn't allocate tag for dma memory\n");
+ return 0;
+ }
+ error = bus_dmamem_alloc (dmem->dmat, (void **)&dmem->virt,
+ BUS_DMA_NOWAIT | BUS_DMA_ZERO, &dmem->mapp);
+ if (error) {
+ if (cnum >= 0) printf ("cx%d-%d: ", bnum, cnum);
+ else printf ("cx%d: ", bnum);
+ printf ("couldn't allocate mem for dma memory\n");
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ error = bus_dmamap_load (dmem->dmat, dmem->mapp, dmem->virt,
+ dmem->size, cx_bus_dmamap_addr, &dmem->phys, 0);
+ if (error) {
+ if (cnum >= 0) printf ("cx%d-%d: ", bnum, cnum);
+ else printf ("cx%d: ", bnum);
+ printf ("couldn't load mem map for dma memory\n");
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+ return 0;
+ }
+ return 1;
+}
+
+static void
+cx_bus_dma_mem_free (cx_dma_mem_t *dmem)
+{
+ bus_dmamap_unload (dmem->dmat, dmem->mapp);
+ bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
+ bus_dma_tag_destroy (dmem->dmat);
+}
+#else
+static int
+cx_bus_dma_mem_alloc (int bnum, int cnum, cx_dma_mem_t *dmem)
+{
+ dmem->virt = contigmalloc (dmem->size, M_DEVBUF, M_WAITOK,
+ 0x100000, 0x1000000, 16, 0);
+ if (dmem->virt == NULL) {
+ if (cnum >= 0) printf ("cx%d-%d: ", bnum, cnum);
+ else printf ("cx%d: ", bnum);
+ printf ("couldn't allocate memory for dma memory\n", unit);
+ return 0;
+ }
+ dmem->phys = vtophys (dmem->virt);
+ return 1;
+}
+
+static void
+cx_bus_dma_mem_free (cx_dma_mem_t *dmem)
+{
+ contigfree (dmem->virt, dmem->size, M_DEVBUF);
+}
+#endif
+
/*
* The adapter is present, initialize the driver structures.
*/
@@ -717,10 +809,11 @@ static int cx_attach (device_t dev)
char *dnmc="cua %x";
if (c->type == T_NONE)
continue;
- d = contigmalloc (sizeof(drv_t), M_DEVBUF, M_WAITOK,
- 0x100000, 0x1000000, 16, 0);
+ d = &bd->channel[c->num];
+ d->dmamem.size = sizeof(cx_buf_t);
+ if (! cx_bus_dma_mem_alloc (unit, c->num, &d->dmamem))
+ continue;
channel [b->num*NCHAN + c->num] = d;
- bzero (d, sizeof(drv_t));
sprintf (d->name, "cx%d.%d", b->num, c->num);
d->board = b;
d->chan = c;
@@ -741,7 +834,7 @@ static int cx_attach (device_t dev)
printf ("%s: cannot make common node\n", d->name);
channel [b->num*NCHAN + c->num] = 0;
c->sys = 0;
- contigfree (d, sizeof (*d), M_DEVBUF);
+ cx_bus_dma_mem_free (&d->dmamem);
continue;
}
#if __FreeBSD_version >= 500000
@@ -761,7 +854,7 @@ static int cx_attach (device_t dev)
#endif
channel [b->num*NCHAN + c->num] = 0;
c->sys = 0;
- contigfree (d, sizeof (*d), M_DEVBUF);
+ cx_bus_dma_mem_free (&d->dmamem);
continue;
}
d->lo_queue.ifq_maxlen = IFQ_MAXLEN;
@@ -793,7 +886,7 @@ static int cx_attach (device_t dev)
bpfattach (&d->pp.pp_if, DLT_PPP, 4);
#endif /*NETGRAPH*/
}
- cx_start_chan (c, &d->buf, vtophys (&d->buf));
+ cx_start_chan (c, d->dmamem.virt, d->dmamem.phys);
cx_register_receive (c, &cx_receive);
cx_register_transmit (c, &cx_transmit);
cx_register_error (c, &cx_error);
@@ -919,7 +1012,7 @@ static int cx_detach (device_t dev)
continue;
/* Deallocate buffers. */
- contigfree (d, sizeof (*d), M_DEVBUF);
+ cx_bus_dma_mem_free (&d->dmamem);
}
bd->board = 0;
adapter [b->num] = 0;
@@ -2815,9 +2908,8 @@ static struct ng_type typestruct = {
.newhook = ng_cx_newhook,
.connect = ng_cx_connect,
.rcvdata = ng_cx_rcvdata,
- .disconnect = ng_cx_disconnect
+ .disconnect = ng_cx_disconnect,
};
-
#endif /*NETGRAPH*/
#if __FreeBSD_version >= 500000
OpenPOWER on IntegriCloud