search for: seq_buf

Displaying 6 results from an estimated 6 matches for "seq_buf".

Did you mean: req_buf
2015 Oct 30
0
[PATCH 1/3] Provide simple noop dma ops
...4ba71 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -13,7 +13,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ sha1.o md5.o irq_regs.o argv_split.o \ proportions.o flex_proportions.o ratelimit.o show_mem.o \ is_single_threaded.o plist.o decompress.o kobject_uevent.o \ - earlycpio.o seq_buf.o nmi_backtrace.o + earlycpio.o seq_buf.o nmi_backtrace.o dma-noop.o obj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o lib-$(CONFIG_MMU) += ioremap.o diff --git a/lib/dma-noop.c b/lib/dma-noop.c new file mode 100644 index 0000000..3ce31302 --- /dev/null +++ b/lib/dma-noop.c @@...
2015 Mar 11
3
[PATCH] pmu/gk20a: PMU boot support.
..."); + goto err_free_mutex; + } + + pmu_seq_init(pmu); + + INIT_WORK(&pmu->isr_workq, pmu_process_message); + init_waitqueue_head(&ppmu->init_wq); + ppmu->gr_initialised = false; + + /* allocate memory for pmu fw area */ + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_SEQ_BUF_SIZE, + 0x1000, 0, &pmu->seq_buf.pmubufobj); + if (ret) + return ret; + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_TRACE_BUFSIZE, + 0, 0, &pmu->trace_buf.pmubufobj); + if (ret) + return ret; + /* map allocated memory into GMMU */ + ret = nvkm_gpuobj_map_v...
2015 Mar 11
0
[PATCH] pmu/gk20a: PMU boot support.
...+ > + INIT_WORK(&pmu->isr_workq, pmu_process_message); > + init_waitqueue_head(&ppmu->init_wq); > + ppmu->gr_initialised = false; > + > + /* allocate memory for pmu fw area */ > + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_SEQ_BUF_SIZE, > + 0x1000, 0, &pmu->seq_buf.pmubufobj); > + if (ret) > + return ret; > + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_TRACE_BUFSIZE, > + 0, 0, &pm...
2015 Mar 12
2
[PATCH] pmu/gk20a: PMU boot support.
...+ > + INIT_WORK(&pmu->isr_workq, pmu_process_message); > + init_waitqueue_head(&ppmu->init_wq); > + ppmu->gr_initialised = false; > + > + /* allocate memory for pmu fw area */ > + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_SEQ_BUF_SIZE, > + 0x1000, 0, &pmu->seq_buf.pmubufobj); > + if (ret) > + return ret; > + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_TRACE_BUFSIZE, > + 0, 0, &pm...
2015 Oct 30
8
[PATCHv2 0/3] dma ops and virtio
here is the 2nd version of providing an DMA API for s390. There are some attempts to unify the dma ops (Christoph) as well as some attempts to make virtio use the dma API (Andy). At kernel summit we concluded that we want to use the same code on all platforms, whereever possible, so having a dummy dma_op might be the easiest solution to keep virtio-ccw as similar as possible to
2015 Oct 30
8
[PATCHv2 0/3] dma ops and virtio
here is the 2nd version of providing an DMA API for s390. There are some attempts to unify the dma ops (Christoph) as well as some attempts to make virtio use the dma API (Andy). At kernel summit we concluded that we want to use the same code on all platforms, whereever possible, so having a dummy dma_op might be the easiest solution to keep virtio-ccw as similar as possible to