]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commitdiff
ARM: EXYNOS: Remove unused non-dt support for dwmci controller
authorThomas Abraham <thomas.abraham@linaro.org>
Tue, 27 Nov 2012 00:00:32 +0000 (09:00 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Tue, 27 Nov 2012 22:56:00 +0000 (07:56 +0900)
With device tree support enabled for dwmci controller, the unused
non-dt support for dwmci controller can be removed.

Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org>
[kgene.kim@samsung.com: updated as per Seungwon Jeon's pointing out]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-exynos/Kconfig
arch/arm/mach-exynos/Makefile
arch/arm/mach-exynos/dev-dwmci.c [deleted file]
arch/arm/mach-exynos/include/mach/dwmci.h [deleted file]
arch/arm/plat-samsung/include/plat/devs.h

index da55107033ddad6490550722863ade8273695ffc..69d10373a41029a7de3525f124b09b7068bb2c3a 100644 (file)
@@ -98,11 +98,6 @@ config EXYNOS_DEV_SYSMMU
        help
          Common setup code for SYSTEM MMU in EXYNOS platforms
 
-config EXYNOS4_DEV_DWMCI
-       bool
-       help
-         Compile in platform device definitions for DWMCI
-
 config EXYNOS4_DEV_USB_OHCI
        bool
        help
index 9b58024f7d43919fcc1c2c07ed6732d39bcd128d..0c74bdc6b6986e6af8115fcd422ede2041393a97 100644 (file)
@@ -50,7 +50,6 @@ obj-$(CONFIG_MACH_EXYNOS5_DT)         += mach-exynos5-dt.o
 obj-y                                  += dev-uart.o
 obj-$(CONFIG_ARCH_EXYNOS4)             += dev-audio.o
 obj-$(CONFIG_EXYNOS4_DEV_AHCI)         += dev-ahci.o
-obj-$(CONFIG_EXYNOS4_DEV_DWMCI)                += dev-dwmci.o
 obj-$(CONFIG_EXYNOS_DEV_DMA)           += dma.o
 obj-$(CONFIG_EXYNOS4_DEV_USB_OHCI)     += dev-ohci.o
 obj-$(CONFIG_EXYNOS_DEV_DRM)           += dev-drm.o
diff --git a/arch/arm/mach-exynos/dev-dwmci.c b/arch/arm/mach-exynos/dev-dwmci.c
deleted file mode 100644 (file)
index 7903501..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * linux/arch/arm/mach-exynos4/dev-dwmci.c
- *
- * Copyright (c) 2011 Samsung Electronics Co., Ltd.
- *             http://www.samsung.com
- *
- * Platform device for Synopsys DesignWare Mobile Storage IP
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#include <linux/kernel.h>
-#include <linux/dma-mapping.h>
-#include <linux/platform_device.h>
-#include <linux/interrupt.h>
-#include <linux/ioport.h>
-#include <linux/mmc/dw_mmc.h>
-
-#include <plat/devs.h>
-
-#include <mach/map.h>
-
-static int exynos4_dwmci_get_bus_wd(u32 slot_id)
-{
-       return 4;
-}
-
-static int exynos4_dwmci_init(u32 slot_id, irq_handler_t handler, void *data)
-{
-       return 0;
-}
-
-static struct resource exynos4_dwmci_resource[] = {
-       [0] = DEFINE_RES_MEM(EXYNOS4_PA_DWMCI, SZ_4K),
-       [1] = DEFINE_RES_IRQ(EXYNOS4_IRQ_DWMCI),
-};
-
-static struct dw_mci_board exynos4_dwci_pdata = {
-       .num_slots                      = 1,
-       .quirks                         = DW_MCI_QUIRK_BROKEN_CARD_DETECTION,
-       .bus_hz                         = 80 * 1000 * 1000,
-       .detect_delay_ms        = 200,
-       .init                           = exynos4_dwmci_init,
-       .get_bus_wd                     = exynos4_dwmci_get_bus_wd,
-};
-
-static u64 exynos4_dwmci_dmamask = DMA_BIT_MASK(32);
-
-struct platform_device exynos4_device_dwmci = {
-       .name           = "dw_mmc",
-       .id             = -1,
-       .num_resources  = ARRAY_SIZE(exynos4_dwmci_resource),
-       .resource       = exynos4_dwmci_resource,
-       .dev            = {
-               .dma_mask               = &exynos4_dwmci_dmamask,
-               .coherent_dma_mask      = DMA_BIT_MASK(32),
-               .platform_data  = &exynos4_dwci_pdata,
-       },
-};
-
-void __init exynos4_dwmci_set_platdata(struct dw_mci_board *pd)
-{
-       struct dw_mci_board *npd;
-
-       npd = s3c_set_platdata(pd, sizeof(struct dw_mci_board),
-                       &exynos4_device_dwmci);
-
-       if (!npd->init)
-               npd->init = exynos4_dwmci_init;
-       if (!npd->get_bus_wd)
-               npd->get_bus_wd = exynos4_dwmci_get_bus_wd;
-}
diff --git a/arch/arm/mach-exynos/include/mach/dwmci.h b/arch/arm/mach-exynos/include/mach/dwmci.h
deleted file mode 100644 (file)
index 7ce6574..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* linux/arch/arm/mach-exynos4/include/mach/dwmci.h
- *
- * Copyright (c) 2011 Samsung Electronics Co., Ltd.
- *             http://www.samsung.com/
- *
- * Synopsys DesignWare Mobile Storage for EXYNOS4210
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-#ifndef __ASM_ARM_ARCH_DWMCI_H
-#define __ASM_ARM_ARCH_DWMCI_H __FILE__
-
-#include <linux/mmc/dw_mmc.h>
-
-extern void exynos4_dwmci_set_platdata(struct dw_mci_board *pd);
-
-#endif /* __ASM_ARM_ARCH_DWMCI_H */
index 5da4b4f38f40ebb41c076fbe74bd205aefefdacf..a9b8096b8252b04b4c50849c93e9b7ee8a26ed52 100644 (file)
@@ -123,7 +123,6 @@ extern struct platform_device s5pv210_device_spdif;
 
 extern struct platform_device exynos4_device_ac97;
 extern struct platform_device exynos4_device_ahci;
-extern struct platform_device exynos4_device_dwmci;
 extern struct platform_device exynos4_device_i2s0;
 extern struct platform_device exynos4_device_i2s1;
 extern struct platform_device exynos4_device_i2s2;