aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/coldfire/patches/051-Update-SD-MMC-over-SPI-driver-for-MCF54451-and-MCF54.patch
blob: a92acdc0fda9fb15592b147df8b350550c2cb79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
From 44d4e083f1527e0acc6d25eadd5258565c3b8a3a Mon Sep 17 00:00:00 2001
From: Alison Wang <b18965@freescale.com>
Date: Thu, 4 Aug 2011 09:59:55 +0800
Subject: [PATCH 51/52] Update SD/MMC over SPI driver for MCF54451 and MCF54418

This patch fixed the errors in initialization and module mode.

Signed-off-by: Alison Wang <b18965@freescale.com>
---
 arch/m68k/coldfire/m5445x/devices.c |    6 +++---
 drivers/mmc/host/Kconfig            |    8 ++++----
 drivers/spi/spi.c                   |    4 ++++
 3 files changed, 11 insertions(+), 7 deletions(-)

--- a/arch/m68k/coldfire/m5445x/devices.c
+++ b/arch/m68k/coldfire/m5445x/devices.c
@@ -20,7 +20,7 @@
 
 #include <linux/interrupt.h>
 #include <linux/init.h>
-#ifdef CONFIG_MMC_SPI
+#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
 #include <linux/mmc/host.h>
 #include <linux/spi/mmc_spi.h>
 #endif
@@ -107,7 +107,7 @@ static struct coldfire_dspi_chip codec_s
 };
 #endif
 
-#if defined(CONFIG_MMC_SPI)
+#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
 int mmc_spi_init(struct device *mmc_spi_device,
 		irqreturn_t mmc_spi_irq_handler(int irq, void *private),
 		void *irq_privatedata)
@@ -234,7 +234,7 @@ static struct spi_board_info spi_board_i
 	},
 #endif
 
-#if defined(CONFIG_MMC_SPI)
+#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
 	{
 		.modalias = "mmc_spi",
 		.max_speed_hz = 25000000,
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -369,7 +369,7 @@ config MMC_SPI
 	  If unsure, or if your system has no SPI master driver, say N.
 
 config M54451_SD_HW_DETECT
-	tristate "use extern IRQ7 to detect SD/MMC card"
+	bool "use extern IRQ7 to detect SD/MMC card"
 	depends on MMC_SPI && M54451
 	default y
 	help
@@ -377,7 +377,7 @@ config M54451_SD_HW_DETECT
 	  use irq7 to dectect the card inserting/removing.
 
 config M5441X_SD_HW_DETECT
-	tristate "use extern IRQ to detect SD/MMC card"
+	bool "use extern IRQ to detect SD/MMC card"
 	depends on MMC_SPI && M5441X
 	help
 	  MMC/SD interface on 54418evb was over SPI. Enable this option will
@@ -388,14 +388,14 @@ choice
 	depends on M5441X_SD_HW_DETECT
 
 config DETECT_USE_EXTERN_IRQ7
-	tristate "based extern IRQ7"
+	bool "based extern IRQ7"
 	depends on M5441X_SD_HW_DETECT
 	help
 	  MMC/SD cards using spi controller,
 	  we use the extern irq7 to detect card.
 
 config DETECT_USE_EXTERN_IRQ1
-	tristate "based extern IRQ1"
+	bool "based extern IRQ1"
 	depends on M5441X_SD_HW_DETECT
 	help
 	  MMC/SD cards using spi controller,
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -725,18 +725,22 @@ EXPORT_SYMBOL_GPL(spi_busnum_to_master);
  */
 int spi_setup(struct spi_device *spi)
 {
+#ifndef CONFIG_COLDFIRE
 	unsigned	bad_bits;
+#endif
 	int		status;
 
 	/* help drivers fail *cleanly* when they need options
 	 * that aren't supported with their current master
 	 */
+#ifndef CONFIG_COLDFIRE
 	bad_bits = spi->mode & ~spi->master->mode_bits;
 	if (bad_bits) {
 		dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
 			bad_bits);
 		return -EINVAL;
 	}
+#endif
 
 	if (!spi->bits_per_word)
 		spi->bits_per_word = 8;