mmc: prepare tmio_mmc for passing of DMA configuration from the MFD cell
authorGuennadi Liakhovetski <[email protected]>
Wed, 19 May 2010 18:34:11 +0000 (18:34 +0000)
committerPaul Mundt <[email protected]>
Sat, 22 May 2010 07:51:18 +0000 (16:51 +0900)
After this patch, if the "dma" pointer in struct tmio_mmc_data is not NULL, it
points to a struct, containing two tokens, that have to be passed to the
dmaengine driver for channel configuration.

Signed-off-by: Guennadi Liakhovetski <[email protected]>
Acked-by: Samuel Ortiz <[email protected]>
Signed-off-by: Paul Mundt <[email protected]>
include/linux/mfd/tmio.h

index c3f7dff8effc08691c691f72657d904e9bd604ab..360fc953d7bb7ac1bbf39b45d4b4493117ef96e1 100644 (file)
@@ -55,12 +55,18 @@ int tmio_core_mmc_resume(void __iomem *cnf, int shift, unsigned long base);
 void tmio_core_mmc_pwr(void __iomem *cnf, int shift, int state);
 void tmio_core_mmc_clk_div(void __iomem *cnf, int shift, int state);
 
+struct tmio_mmc_dma {
+       void *chan_priv_tx;
+       void *chan_priv_rx;
+};
+
 /*
  * data for the MMC controller
  */
 struct tmio_mmc_data {
        unsigned int                    hclk;
        unsigned long                   capabilities;
+       struct tmio_mmc_dma             *dma;
        void (*set_pwr)(struct platform_device *host, int state);
        void (*set_clk_div)(struct platform_device *host, int state);
 };