Searched refs:use_dma (Results 1 - 25 of 36) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s3c24xx/include/plat/
H A Dmci.h10 * @use_dma: Set to allow the use of DMA.
34 unsigned int use_dma : 1; member in struct:s3c24xx_mci_pdata
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-davinci/include/mach/
H A Dspi.h39 u8 use_dma; member in struct:davinci_spi_platform_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/spi/
H A Dspi_bitbang.h13 u8 use_dma; member in struct:spi_bitbang
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v10/drivers/
H A Dsync_serial.c119 char use_dma; /* 1 if port uses dma */ member in struct:sync_port
211 .use_dma = 1,
213 .use_dma = 0,
234 .use_dma = 1,
236 .use_dma = 0,
302 ports[0].use_dma = 1;
304 ports[0].use_dma = 0;
314 ports[1].use_dma = 1;
316 ports[1].use_dma = 0;
391 if (port->use_dma)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/memstick/host/
H A Dtifm_ms.c79 use_dma:1; member in struct:tifm_ms
267 host->use_dma = !no_dma;
272 host->use_dma = 0;
275 host->use_dma = 0;
283 if (host->use_dma) {
323 if (host->use_dma)
354 if (host->use_dma) {
400 if (host->use_dma && (fifo_status & 1)) {
404 if (!host->use_dma && (fifo_status & TIFM_FIFO_MORE)) {
611 if (host->use_dma)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/nand/
H A Dpxa3xx_nand.c150 int use_dma; /* use DMA ? */ member in struct:pxa3xx_nand_info
169 static int use_dma = 1; variable
170 module_param(use_dma, bool, 0444);
171 MODULE_PARM_DESC(use_dma, "enable DMA for data transfering to/from NAND HW");
516 ndcr |= info->use_dma ? NDCR_DMA_EN : 0;
623 if (info->use_dma) {
632 if (info->use_dma) {
672 if (info->use_dma == 0 && info->data_size > 0)
707 info->use_dma = (use_dma)
[all...]
H A Domap2.c108 static int use_dma = 1; variable
110 /* "modprobe ... use_dma=0" etc */
111 module_param(use_dma, bool, 0);
112 MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
114 const int use_dma; variable
118 const int use_dma; variable
849 if (use_dma) {
929 if (use_dma)
955 if ((1 == use_dma) && (0 == use_prefetch)) {
956 printk(KERN_INFO"Wrong parameters: 'use_dma' ca
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dcs89x0.c107 * Note that even if DMA is turned off we still support the 'dma' and 'use_dma'
225 int use_dma; /* Flag: we're using dma */ member in struct:net_local
517 lp->use_dma = 1;
753 if (lp->use_dma) {
833 if (lp->use_dma) {
855 if (lp->use_dma)
866 if (lp->use_dma) {
1227 if (lp->use_dma) {
1533 if (lp->use_dma && (status & RX_DMA)) {
1643 if (lp->use_dma
1734 static int use_dma; /* These generate unused var warnings if ALLOW_DMA = 0 */ variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/arch-v32/drivers/
H A Dsync_serial.c98 char use_dma; /* 1 if port uses dma */ member in struct:sync_port
220 .use_dma = 1,
222 .use_dma = 0,
233 .use_dma = 1,
235 .use_dma = 0,
350 tr_cfg.use_dma = port->use_dma ? regk_sser_yes : regk_sser_no;
358 rec_cfg.use_dma = port->use_dma ? regk_sser_yes : regk_sser_no;
451 if (port->use_dma) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/musb/
H A Dmusb_gadget.c226 int use_dma = 0; local
268 use_dma = (request->dma != DMA_ADDR_INVALID);
279 use_dma = use_dma && c->channel_program(
283 if (use_dma) {
332 use_dma = use_dma && c->channel_program(
337 if (!use_dma) {
345 use_dma = use_dma
578 int use_dma = 0; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/host/
H A Ddavinci_mmc.c155 static unsigned __initdata use_dma = 1; variable
156 module_param(use_dma, uint, 0);
157 MODULE_PARM_DESC(use_dma, "Whether to use DMA or not. Default = 1");
185 bool use_dma; member in struct:mmc_davinci_host
562 if (!host->use_dma)
685 if (host->use_dma && (host->bytes_left & (rw_threshold - 1)) == 0
1210 host->use_dma = use_dma;
1213 if (host->use_dma && davinci_acquire_dma_channels(host) != 0)
1214 host->use_dma
[all...]
H A Domap.c154 unsigned use_dma:1; member in struct:mmc_omap_host
1078 int i, use_dma, block_size; local
1103 use_dma = host->use_dma;
1104 if (use_dma) {
1107 use_dma = 0;
1114 if (use_dma) {
1131 use_dma = 0;
1135 if (!use_dma) {
1449 host->use_dma
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Domap_udc.c110 static unsigned use_dma = 1; variable
112 /* "modprobe omap_udc use_dma=y", or else as a kernel
113 * boot parameter "omap_udc:use_dma=y"
115 module_param (use_dma, bool, 0);
116 MODULE_PARM_DESC (use_dma, "enable/disable DMA");
120 #define use_dma 0 macro
232 if (use_dma && desc->bmAttributes == USB_ENDPOINT_XFER_BULK)
314 if (use_dma && ep->has_dma) {
942 if (use_dma
956 if (use_dma
[all...]
H A Damd5536udc.c32 * work without updating NET_IP_ALIGN. Or PIO mode (module param "use_dma=0")
163 static int use_dma = 1; variable
176 module_param(use_dma, bool, S_IRUGO);
177 MODULE_PARM_DESC(use_dma, "true for DMA");
201 DBG(dev, "USE DMA = %d\n", use_dma);
202 if (use_dma && use_dma_ppb && !use_dma_ppb_du) {
206 } else if (use_dma && use_dma_ppb_du && use_dma_ppb_du) {
211 if (use_dma && use_dma_bufferfill_mode) {
215 if (!use_dma) {
397 if (use_dma
[all...]
H A Dm66592-udc.c224 if (ep->use_dma)
323 if (ep->use_dma) {
344 ep->use_dma = 1;
351 ep->use_dma = 1;
357 ep->use_dma = 0;
364 ep->use_dma = 0;
387 if (ep->use_dma)
391 ep->use_dma = 0;
555 if (ep->use_dma) {
H A Dr8a66597-udc.h80 unsigned use_dma:1; member in struct:r8a66597_ep
H A Dgoku_udc.c72 static unsigned use_dma = 1; variable
139 ep->dma = (use_dma != 0) && (ep->num == UDC_MSTRD_ENDPOINT);
141 ep->dma = (use_dma == 2) && (ep->num == UDC_MSTWR_ENDPOINT);
988 if (use_dma == 0)
990 else if (use_dma == 2)
1818 if (use_dma)
H A Dr8a66597-udc.c226 if (ep->use_dma)
319 if (ep->use_dma) {
333 ep->use_dma = 0;
356 if (ep->use_dma)
360 ep->use_dma = 0;
524 if (ep->use_dma) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Dtrm290.c145 static void trm290_prepare_drive (ide_drive_t *drive, unsigned int use_dma) argument
152 reg = use_dma ? (0x21 | 0x82) : (0x21 & ~0x82);
H A Dns87415.c122 static void ns87415_prepare_drive (ide_drive_t *drive, unsigned int use_dma) argument
143 new = use_dma ? ((new & ~other) | bit) : (new & ~bit);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v32/arch/hwregs/
H A Dsser_defs.h139 unsigned int use_dma : 1; member in struct:__anon8668
166 unsigned int use_dma : 1; member in struct:__anon8669
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dmfd.c85 int use_dma; /* flag for DMA/PIO */ member in struct:uart_hsu_port
360 if (up->use_dma) {
374 if (up->use_dma)
454 if (up->use_dma)
608 if (up->use_dma) {
647 if (!up->use_dma || !up->running)
802 if (!up->use_dma)
811 if (up->use_dma) {
821 up->use_dma = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/spectra/
H A Dlld_nand.h71 u32 use_dma; member in struct:mrst_nand_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/spi/
H A Ddavinci_spi.c186 static unsigned use_dma; variable
455 if (use_dma && davinci_spi->dma_channels) {
575 if (use_dma && davinci_spi->dma_channels) {
1109 use_dma = pdata->use_dma;
1115 if (use_dma) {
1127 if (!use_dma ||
1132 use_dma = 0;
H A Dspi_s3c64xx.c603 int use_dma; local
619 use_dma = 0;
621 use_dma = 1;
629 enable_datapath(sdd, spi, xfer, use_dma);
639 status = wait_for_xfer(sdd, xfer, use_dma);
652 if (use_dma) {

Completed in 235 milliseconds

12