|
@@ -1124,15 +1124,6 @@ void __init s3c64xx_spi0_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
|
|
|
pd.num_cs = num_cs;
|
|
|
pd.src_clk_nr = src_clk_nr;
|
|
|
pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi0_cfg_gpio;
|
|
|
- pd.dma_tx = (void *)DMACH_SPI0_TX;
|
|
|
- pd.dma_rx = (void *)DMACH_SPI0_RX;
|
|
|
-#if defined(CONFIG_PL330_DMA)
|
|
|
- pd.filter = pl330_filter;
|
|
|
-#elif defined(CONFIG_S3C64XX_PL080)
|
|
|
- pd.filter = pl08x_filter_id;
|
|
|
-#elif defined(CONFIG_S3C24XX_DMAC)
|
|
|
- pd.filter = s3c24xx_dma_filter;
|
|
|
-#endif
|
|
|
|
|
|
s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi0);
|
|
|
}
|
|
@@ -1169,14 +1160,6 @@ void __init s3c64xx_spi1_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
|
|
|
pd.num_cs = num_cs;
|
|
|
pd.src_clk_nr = src_clk_nr;
|
|
|
pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi1_cfg_gpio;
|
|
|
- pd.dma_tx = (void *)DMACH_SPI1_TX;
|
|
|
- pd.dma_rx = (void *)DMACH_SPI1_RX;
|
|
|
-#if defined(CONFIG_PL330_DMA)
|
|
|
- pd.filter = pl330_filter;
|
|
|
-#elif defined(CONFIG_S3C64XX_PL080)
|
|
|
- pd.filter = pl08x_filter_id;
|
|
|
-#endif
|
|
|
-
|
|
|
|
|
|
s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi1);
|
|
|
}
|
|
@@ -1213,13 +1196,6 @@ void __init s3c64xx_spi2_set_platdata(int (*cfg_gpio)(void), int src_clk_nr,
|
|
|
pd.num_cs = num_cs;
|
|
|
pd.src_clk_nr = src_clk_nr;
|
|
|
pd.cfg_gpio = (cfg_gpio) ? cfg_gpio : s3c64xx_spi2_cfg_gpio;
|
|
|
- pd.dma_tx = (void *)DMACH_SPI2_TX;
|
|
|
- pd.dma_rx = (void *)DMACH_SPI2_RX;
|
|
|
-#if defined(CONFIG_PL330_DMA)
|
|
|
- pd.filter = pl330_filter;
|
|
|
-#elif defined(CONFIG_S3C64XX_PL080)
|
|
|
- pd.filter = pl08x_filter_id;
|
|
|
-#endif
|
|
|
|
|
|
s3c_set_platdata(&pd, sizeof(pd), &s3c64xx_device_spi2);
|
|
|
}
|