Searched refs:dma (Results 276 - 300 of 1571) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx88/
H A Dcx88-vbi.c57 buf->vb.width, buf->risc.dma);
74 /* start dma */
85 /* stop dma */
106 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
134 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", dev->core->name,
135 buf, buf->vb.i, (unsigned long)buf->risc.dma);
171 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb); local
180 dma->sglist,
204 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
220 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dsmc91x.h425 #include <linux/dma-mapping.h>
426 #include <mach/dma.h>
431 smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
433 smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma, argument
440 if (dma == (unsigned char)-1) {
454 DCSR(dma) = DCSR_NODESC;
455 DTADR(dma) = dmabuf;
456 DSADR(dma) = physaddr + reg;
457 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
459 DCSR(dma)
472 smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma, u_char *buf, int len) argument
507 smc_pxa_dma_irq(int dma, void *dummy) argument
[all...]
H A Dcs89x0.c107 * Note that even if DMA is turned off we still support the 'dma' and 'use_dma'
152 #include <asm/dma.h>
225 int use_dma; /* Flag: we're using dma */
226 int dma; /* DMA channel */ member in struct:net_local
518 lp->dma = g_cs89x0_dma;
755 printk(", DMA %d", dev->dma);
799 if (lp->dma) {
800 dev->dma = lp->dma;
805 dev->dma
816 write_dma(struct net_device *dev, int chip_type, int dma) argument
1735 static int dma; variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Doxu210hp.h193 #define QTD_NEXT(dma) cpu_to_le32((u32)dma)
243 #define Q_NEXT_TYPE(dma) ((dma) & cpu_to_le32 (3 << 1))
249 #define QH_NEXT(dma) (cpu_to_le32(((u32)dma)&~0x01f)|Q_TYPE_QH)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/oss/
H A Dpas2_pcm.c262 if (audio_devs[dev]->dmap_out->dma > 3)
277 if (audio_devs[dev]->dmap_out->dma > 3)
309 if (audio_devs[dev]->dmap_out->dma > 3)
321 if (audio_devs[dev]->dmap_out->dma > 3)
406 hw_config->dma,
407 hw_config->dma)) < 0)
H A Dpss.c137 int dma; member in struct:pss_confdata
180 int irq, dma; local
184 dma = devc->dma = hw_config->dma;
243 static int set_dma(pss_confdata * devc, int dev, int dma) argument
253 if (dma < 0 || dma > 7)
258 if ((bits = dma_bits[dma]) == 0 && dma !
[all...]
H A Ddmabuf.c71 dma_pagesize = (dmap->dma < 4) ? (64 * 1024) : (128 * 1024);
108 /* now check if it fits into the same dma-pagesize */
152 int chan = dmap->dma;
198 if (dmap->dma >= 0 && sound_open_dma(dmap->dma, adev->name)) {
199 printk(KERN_WARNING "Unable to grab(2) DMA%d for the audio driver\n", dmap->dma);
221 if (dmap->dma >= 0) {
222 sound_close_dma(dmap->dma);
224 disable_dma(dmap->dma);
369 clear_dma_ff(dmap->dma);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/message/i2o/
H A Dexec-osm.c50 struct i2o_dma dma; /* DMA buffers to free on failure */ member in struct:i2o_exec_wait
108 * @dma: i2o_dma struct of the DMA buffer to free on failure
123 unsigned long timeout, struct i2o_dma *dma)
140 if (dma)
141 wait->dma = *dma;
174 if (dma)
175 dma->virt = NULL;
247 i2o_dma_free(dev, &wait->dma);
122 i2o_msg_post_wait_mem(struct i2o_controller *c, struct i2o_message *msg, unsigned long timeout, struct i2o_dma *dma) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/b43/
H A DMakefile14 b43-y += dma.o
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Ddma-mapping.h12 #include <asm-generic/dma-coherent.h>
13 #include <asm-generic/dma-mapping-common.h>
H A Ddma.h2 * include/asm-sh/dma.h
18 #include <cpu/dma.h>
19 #include <asm-generic/dma.h>
120 /* arch/sh/drivers/dma/dma-api.c */
149 /* arch/sh/drivers/dma/dma-sysfs.c */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/kernel/
H A Ddma.c10 #include <linux/dma-mapping.h>
12 #include <linux/dma-debug.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Ddma-mapping.h11 #include <linux/dma-debug.h>
48 #include <asm-generic/dma-mapping-common.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-davinci/
H A Dusb.c6 #include <linux/dma-mapping.h>
36 .dma = true,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-msm/
H A DMakefile2 obj-y += io.o idle.o timer.o dma.o
H A Ddevices-qsd8x50.c19 #include <linux/dma-mapping.h>
22 #include <mach/dma.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5p6440/
H A Ddev-spi.c12 #include <linux/dma-mapping.h>
15 #include <mach/dma.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5pv210/
H A Ddev-spi.c12 #include <linux/dma-mapping.h>
15 #include <mach/dma.h>
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/kernel/
H A DMakefile25 obj-$(CONFIG_ISA_DMA_API) += dma.o
30 obj-$(CONFIG_ISA_DMA) += dma-isa.o
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/irda/
H A Dnsc-ircc.c56 #include <linux/dma-mapping.h>
61 #include <asm/dma.h>
95 static unsigned int dma[] = { 0, 0, 0, 0, 0 }; variable
258 info.dma = pnp_info.dma;
281 info.dma = dma[i];
404 self->io.dma = info->dma;
551 * Function nsc_ircc_init_108 (iobase, cfg_base, irq, dma)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/atm/
H A Deni.c348 u32 dma[RX_DMA_BUF*2]; local
371 dma[j++] = (here << MID_DMA_COUNT_SHIFT) | (vcc->vci
391 dma[j++] = MID_DT_WORD | (init << MID_DMA_COUNT_SHIFT) |
393 dma[j++] = paddr;
399 dma[j++] = MID_DT_16W | ((words >> 4) <<
402 dma[j++] = paddr;
409 dma[j++] = MID_DT_8W | ((words >> 3) <<
412 dma[j++] = paddr;
419 dma[j++] = MID_DT_4W | ((words >> 2) <<
422 dma[
929 put_dma(int chan,u32 *dma,int *j,dma_addr_t paddr, u32 size) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/
H A Ddrm_vm.c296 struct drm_device_dma *dma = dev->dma; local
301 if (!dma)
303 if (!dma->pagelist)
308 page = virt_to_page((dma->pagelist[page_nr] + (offset & (~PAGE_MASK))));
487 struct drm_device_dma *dma; local
491 dma = dev->dma;
496 if (!dma || (length >> PAGE_SHIFT) != dma
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Dide-atapi.c531 u16 bcount, u8 dma)
533 cmd->protocol = dma ? ATAPI_PROT_DMA : ATAPI_PROT_PIO;
537 cmd->tf.feature = dma; /* Use PIO/DMA */
600 if (drive->dma)
657 if (drive->dma)
686 if (drive->dma)
687 drive->dma = !ide_dma_prepare(drive, cmd);
706 drive->dma = !ide_dma_prepare(drive, cmd);
708 if (!drive->dma)
715 ide_init_packet_cmd(cmd, valid_tf, bcount, drive->dma);
530 ide_init_packet_cmd(struct ide_cmd *cmd, u8 valid_tf, u16 bcount, u8 dma) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/isa/
H A Dsc6000.c32 #include <asm/dma.h>
58 static int dma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0, 1, 3 */ variable
77 module_param_array(dma, int, NULL, 0444);
78 MODULE_PARM_DESC(dma, "DMA # for sc-6000 driver.");
151 * sc6000_dma_to_softcfg - Decode dma number into cfg code.
153 static __devinit unsigned char sc6000_dma_to_softcfg(int dma) argument
157 switch (dma) {
395 sc6000_dma_to_softcfg(dma[dev]);
529 if (dma[dev] != SNDRV_AUTO_DMA && !sc6000_dma_to_softcfg(dma[de
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/soc/pxa/
H A Dpxa-ssp.c34 #include <mach/dma.h>
91 struct pxa2xx_pcm_dma_data *dma; local
93 dma = kzalloc(sizeof(struct pxa2xx_pcm_dma_data), GFP_KERNEL);
94 if (dma == NULL)
97 snprintf(dma->name, 20, "SSP%d PCM %s %s", ssp->port_id,
100 dma->params.name = dma->name;
101 dma->params.drcmr = &DRCMR(out ? ssp->drcmr_tx : ssp->drcmr_rx);
102 dma->params.dcmd = (out ? (DCMD_INCSRCADDR | DCMD_FLOWTRG) :
105 dma
[all...]

Completed in 291 milliseconds

<<11121314151617181920>>