aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mxc/asrc
Commit message (Collapse)AuthorAge
* ENGR00318773-4 mxc: asrc: Add driver suspend and resume to support MEGA FastNicolin Chen2014-06-19
| | | | | | | | | | For i.MX6 SoloX, there is a mode of the SoC to shutdown all power source of modules during system suspend and resume procedure. Thus, ASRC needs to save all the values of registers before the system suspend and restore them after the system resume. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
* ENGR00318773-3 mxc: asrc: Simplify buffer processing functionNicolin Chen2014-06-19
| | | | | | | We actually do nothing to process input buffer. Thus simplify it. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
* ENGR00318773-2 mxc: asrc: Abstract a helper function for duplicated ↵Nicolin Chen2014-06-19
| | | | | | | | | | | wait_for_compeltion code After dropping the extra task for last period buffer fetching, we have a total symmetrical wait_for_compeltion here so it's better to abstract a function to make the driver neat. Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
* ENGR00318773-1 mxc: asrc: Don't use the extra work thread to handle the last ↵Nicolin Chen2014-06-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | period data The original design: -> Input DMA task -> complete() | -> Output DMA task -> complete() | | | -> Last period polling work thread -> complete() | Main thread --------------> wait_for_completion() of Input and last period It's too complicated and worthless to use an extra work thread for last period data. So this patch just switches the flow into a simpler approach: -> Input DMA task -> complete() | -> Output DMA task -> complete() | Main thread --------------> wait_for_completion() of In/Output -> Last period polling Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
* ENGR00303122-1 mxc: asrc: Fix asrc clocks managementNicolin Chen2014-04-16
| | | | | | | | | | | | | ASRC needs three clocks from SoC, they are: mem_clk: Peripheral access clock ipg_clk: Peripheral clock asrck_clk: ASRC module clock while the current driver only maintains two of them and has confusing clock names. Thus fix it. Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
* ENGR00289381 mxc: asrc: Fix RCU stall in output_task_workerNicolin Chen2014-04-16
| | | | | | | | | | | | | In kernel 3.10.17, RCU has its threshold to detect RCU stall. So it might be risky for us to use a whole second to wait for the completion, which would be surely returned within 100ms. Thus, we shrink the wait period so as to circumvent some potential RCU stall issue. This patch also moved pair_hold into spin_lock protection due to a race with pair_hold in close() and release(). Signed-off-by: Nicolin Chen <b42378@freescale.com> (cherry picked from commit 5b35fca56107cb04bdf342969887b386683da901)
* ENGR00288421-4 mxc: asrc: keep map/unmap parameters symmeticNicolin Chen2014-04-16
| | | | | | | | We are using DEV_TO_MEM for dma_map but MEM_TO_DEV for dma_unmap, thus fix it. It also adds missing device pointer since assigning it to dma_free_coherent(). Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00281859-1 mxc: asrc: Add debug message for asrc_isr()Nicolin Chen2014-04-16
| | | | | | | | | | asrc_isr() is mainly used to detect and record overload error, so we add some print massage to make it easy to debug. Also fixed an incorrect function name -- dev_debug() by using the correct one -- dev_dbg() in dump_regs(). Signed-off-by: Nicolin Chen <B42378@freescale.com>
* ENGR00280852-9 mxc: asrc: Use threshold to clear dma requestNicolin Chen2014-04-16
| | | | | | | | | | | | | | | | | | | | Previously, we used sdma's event pending to forcibly re-schedule sdma for work round, because sdma channel for ASRC input task would fail to be opened due to its dma request always keeping high after ASRC opens the pair, which cause sdma miss the trigger point of dma request. Now, instead of using event pending, we clear the dma request on ASRC driver side by setting its thresholds to an impossible trigger area during its stall state. Since ASRC would stall its process when input fifo is near empty or output fifo is near full, during the stall state, the specific thresholds, 0 for input fifo and 63 for output fifo, would never let asrc meet this condition. So dma request can be cleared and raised again after we restore the true required thresholds. Accordingly, since we don't need event pending any more, we dropped the code from the sdma driver. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-8 mxc: asrc: Add polling mode working without dma for debuggingNicolin Chen2014-04-16
| | | | | | | Add polling mode for data transmitting without dma support for debugging when sdma may have issue. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-7 mxc: asrc: Only set ASRC to STALL level in start_conv()Nicolin Chen2014-04-16
| | | | | | | | | | | | | | | | We don't need to set ASRC to STALL level everytime, instead we only need to do that at the beginning. If we insert null data into input fifo during the sequence of valid datas, there would be a noise occur to it. By doing this, we can assure ASRC would keep each period's perturbation of output dma task within 8 sample sizes, which is the default value for last period number. Thus we don't need to expand the last period number any more. This patch also dropped some unused functions since the driver no long needs them and replaced wrapped function for channel number configuration with direct regmap_update_bits() to make the driver clean. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-6 mxc: asrc: Use devtype instead of specific DT propertiesNicolin Chen2014-04-16
| | | | | | | We can determine the IP version from DT compatible name to decide which clock map and channel bits should be used. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-5 mxc: asrc: Simplify codeNicolin Chen2014-04-16
| | | | | | | | * Dropped unused header files. * Use pair-explicit error massage. * Fixed some coding style issue. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-4 mxc: asrc: Use completion instead of counterNicolin Chen2014-04-16
| | | | | | | Use completion instead of counter to make driver clean and drop implicit mdelay by using wait_for_completion(). Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-3 mxc: asrc: Use regmap to control register accessingNicolin Chen2014-04-16
| | | | | | | | | | | Dropped the legency readl/writel() and use regmap instead. Also removed core clock's clk_prepare() and spin_lock()/unlock() outside regmap due to regmap already has these features. This patch also added a missing writable register to the regmap in order to assure the regsiter updating success. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00280852-1 mxc: asrc: Add spba clock control for sdma shp scriptNicolin Chen2014-04-16
| | | | | | | | | | | ASRC is using shp_2_mcu and mcu_2_shp sdma scripts that use spba bus to transfer data, while the driver hasn't include the control code of spba clock. This would cause multiple pair conversion failed in most of time. Thus we need to add its support. Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00279368-3 mxc: asrc: Add missing clock controlNicolin Chen2014-04-16
| | | | | | | | | * Add missing clock control * Set ASRC clock to 7.5MHz as 3.0.35 does * Use the same divisor for ideal ratio mode as 3.0.35 does Acked-by: Wang Shengjiu <b02247@freescale.com> Signed-off-by: Nicolin Chen <b42378@freescale.com>
* ENGR00275310 mxc: asrc: update asrc by dma_slave_config is updated.Shengjiu Wang2014-04-16
| | | | | | | Because of adding two parameter in dma_slave_config, so asrc driver need to be updated. Signed-off-by: Shengjiu Wang <b02247@freescale.com>
* ENGR00274286-2 mxc: asrc: Add asrc m2m driverNicolin Chen2014-04-16
Add ASRC M2M driver. Signed-off-by: Nicolin Chen <b42378@freescale.com>