search for: req_ctrl

Displaying 3 results from an estimated 3 matches for "req_ctrl".

2016 Aug 26
0
[PATCH v8 05/18] dmaengine: st_fdma: Add STMicroelectronics FDMA engine driver support
...PTR(-EPROBE_DEFER); + else if (ret) + return ERR_PTR(ret); + + chan = dma_get_any_slave_channel(&fdev->dma_device); + if (!chan) + goto err_chan; + + fchan = to_st_fdma_chan(chan); + + fchan->cfg.of_node = dma_spec->np; + fchan->cfg.req_line = dma_spec->args[0]; + fchan->cfg.req_ctrl = 0; + fchan->cfg.type = ST_FDMA_TYPE_FREE_RUN; + + if (dma_spec->args_count > 1) + fchan->cfg.req_ctrl = dma_spec->args[1] + & FDMA_REQ_CTRL_CFG_MASK; + + if (dma_spec->args_count > 2) + fchan->cfg.type = dma_spec->args[2]; + + if (fchan->cfg.type == ST_FDMA_T...
2016 Aug 26
32
[PATCH v8 00/18] Add support for FDMA DMA controller and slim core rproc found on STi chipsets
...and some unused structure fields / #define (Bjorn) - put clks in error path, also put clks before rproc_put() (Bjorn) - Make enum less generic (Bjorn) - Make slim_rproc_alloc() return a st_slim_rproc reference (Bjorn) - Alphabetical naming in Kconfig & Makefile (Vinod) - Add FDMA prefix to REQ_CTRL* (Vinod) - Print ret on some error paths (Vinod) - Add some acked-by (Peter) Changes since v3: - Remove elf loading code from fdma driver (Vinod) - Remove fdma_ prefix for clock names (Arnd) - Make _xlate use dma_get_any_channel rather than request_channel (Arnd) - Make a common function for...
2016 Aug 26
32
[PATCH v8 00/18] Add support for FDMA DMA controller and slim core rproc found on STi chipsets
...and some unused structure fields / #define (Bjorn) - put clks in error path, also put clks before rproc_put() (Bjorn) - Make enum less generic (Bjorn) - Make slim_rproc_alloc() return a st_slim_rproc reference (Bjorn) - Alphabetical naming in Kconfig & Makefile (Vinod) - Add FDMA prefix to REQ_CTRL* (Vinod) - Print ret on some error paths (Vinod) - Add some acked-by (Peter) Changes since v3: - Remove elf loading code from fdma driver (Vinod) - Remove fdma_ prefix for clock names (Arnd) - Make _xlate use dma_get_any_channel rather than request_channel (Arnd) - Make a common function for...