Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / mmc / host / cavium-octeon.c
blob2c4b2df52adb1f774d77296dc9bbc168864f4f05
1 /*
2 * Driver for MMC and SSD cards for Cavium OCTEON SOCs.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 2012-2017 Cavium Inc.
9 */
10 #include <linux/dma-mapping.h>
11 #include <linux/gpio/consumer.h>
12 #include <linux/interrupt.h>
13 #include <linux/mmc/mmc.h>
14 #include <linux/mmc/slot-gpio.h>
15 #include <linux/module.h>
16 #include <linux/of_platform.h>
17 #include <asm/octeon/octeon.h>
18 #include "cavium.h"
20 #define CVMX_MIO_BOOT_CTL CVMX_ADD_IO_SEG(0x00011800000000D0ull)
23 * The l2c* functions below are used for the EMMC-17978 workaround.
25 * Due to a bug in the design of the MMC bus hardware, the 2nd to last
26 * cache block of a DMA read must be locked into the L2 Cache.
27 * Otherwise, data corruption may occur.
29 static inline void *phys_to_ptr(u64 address)
31 return (void *)(address | (1ull << 63)); /* XKPHYS */
35 * Lock a single line into L2. The line is zeroed before locking
36 * to make sure no dram accesses are made.
38 static void l2c_lock_line(u64 addr)
40 char *addr_ptr = phys_to_ptr(addr);
42 asm volatile (
43 "cache 31, %[line]" /* Unlock the line */
44 ::[line] "m" (*addr_ptr));
47 /* Unlock a single line in the L2 cache. */
48 static void l2c_unlock_line(u64 addr)
50 char *addr_ptr = phys_to_ptr(addr);
52 asm volatile (
53 "cache 23, %[line]" /* Unlock the line */
54 ::[line] "m" (*addr_ptr));
57 /* Locks a memory region in the L2 cache. */
58 static void l2c_lock_mem_region(u64 start, u64 len)
60 u64 end;
62 /* Round start/end to cache line boundaries */
63 end = ALIGN(start + len - 1, CVMX_CACHE_LINE_SIZE);
64 start = ALIGN(start, CVMX_CACHE_LINE_SIZE);
66 while (start <= end) {
67 l2c_lock_line(start);
68 start += CVMX_CACHE_LINE_SIZE;
70 asm volatile("sync");
73 /* Unlock a memory region in the L2 cache. */
74 static void l2c_unlock_mem_region(u64 start, u64 len)
76 u64 end;
78 /* Round start/end to cache line boundaries */
79 end = ALIGN(start + len - 1, CVMX_CACHE_LINE_SIZE);
80 start = ALIGN(start, CVMX_CACHE_LINE_SIZE);
82 while (start <= end) {
83 l2c_unlock_line(start);
84 start += CVMX_CACHE_LINE_SIZE;
88 static void octeon_mmc_acquire_bus(struct cvm_mmc_host *host)
90 if (!host->has_ciu3) {
91 down(&octeon_bootbus_sem);
92 /* For CN70XX, switch the MMC controller onto the bus. */
93 if (OCTEON_IS_MODEL(OCTEON_CN70XX))
94 writeq(0, (void __iomem *)CVMX_MIO_BOOT_CTL);
95 } else {
96 down(&host->mmc_serializer);
100 static void octeon_mmc_release_bus(struct cvm_mmc_host *host)
102 if (!host->has_ciu3)
103 up(&octeon_bootbus_sem);
104 else
105 up(&host->mmc_serializer);
108 static void octeon_mmc_int_enable(struct cvm_mmc_host *host, u64 val)
110 writeq(val, host->base + MIO_EMM_INT(host));
111 if (!host->has_ciu3)
112 writeq(val, host->base + MIO_EMM_INT_EN(host));
115 static void octeon_mmc_set_shared_power(struct cvm_mmc_host *host, int dir)
117 if (dir == 0)
118 if (!atomic_dec_return(&host->shared_power_users))
119 gpiod_set_value_cansleep(host->global_pwr_gpiod, 0);
120 if (dir == 1)
121 if (atomic_inc_return(&host->shared_power_users) == 1)
122 gpiod_set_value_cansleep(host->global_pwr_gpiod, 1);
125 static void octeon_mmc_dmar_fixup(struct cvm_mmc_host *host,
126 struct mmc_command *cmd,
127 struct mmc_data *data,
128 u64 addr)
130 if (cmd->opcode != MMC_WRITE_MULTIPLE_BLOCK)
131 return;
132 if (data->blksz * data->blocks <= 1024)
133 return;
135 host->n_minus_one = addr + (data->blksz * data->blocks) - 1024;
136 l2c_lock_mem_region(host->n_minus_one, 512);
139 static void octeon_mmc_dmar_fixup_done(struct cvm_mmc_host *host)
141 if (!host->n_minus_one)
142 return;
143 l2c_unlock_mem_region(host->n_minus_one, 512);
144 host->n_minus_one = 0;
147 static int octeon_mmc_probe(struct platform_device *pdev)
149 struct device_node *cn, *node = pdev->dev.of_node;
150 struct cvm_mmc_host *host;
151 void __iomem *base;
152 int mmc_irq[9];
153 int i, ret = 0;
154 u64 val;
156 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
157 if (!host)
158 return -ENOMEM;
160 spin_lock_init(&host->irq_handler_lock);
161 sema_init(&host->mmc_serializer, 1);
163 host->dev = &pdev->dev;
164 host->acquire_bus = octeon_mmc_acquire_bus;
165 host->release_bus = octeon_mmc_release_bus;
166 host->int_enable = octeon_mmc_int_enable;
167 host->set_shared_power = octeon_mmc_set_shared_power;
168 if (OCTEON_IS_MODEL(OCTEON_CN6XXX) ||
169 OCTEON_IS_MODEL(OCTEON_CNF7XXX)) {
170 host->dmar_fixup = octeon_mmc_dmar_fixup;
171 host->dmar_fixup_done = octeon_mmc_dmar_fixup_done;
174 host->sys_freq = octeon_get_io_clock_rate();
176 if (of_device_is_compatible(node, "cavium,octeon-7890-mmc")) {
177 host->big_dma_addr = true;
178 host->need_irq_handler_lock = true;
179 host->has_ciu3 = true;
180 host->use_sg = true;
182 * First seven are the EMM_INT bits 0..6, then two for
183 * the EMM_DMA_INT bits
185 for (i = 0; i < 9; i++) {
186 mmc_irq[i] = platform_get_irq(pdev, i);
187 if (mmc_irq[i] < 0)
188 return mmc_irq[i];
190 /* work around legacy u-boot device trees */
191 irq_set_irq_type(mmc_irq[i], IRQ_TYPE_EDGE_RISING);
193 } else {
194 host->big_dma_addr = false;
195 host->need_irq_handler_lock = false;
196 host->has_ciu3 = false;
197 /* First one is EMM second DMA */
198 for (i = 0; i < 2; i++) {
199 mmc_irq[i] = platform_get_irq(pdev, i);
200 if (mmc_irq[i] < 0)
201 return mmc_irq[i];
205 host->last_slot = -1;
207 base = devm_platform_ioremap_resource(pdev, 0);
208 if (IS_ERR(base))
209 return PTR_ERR(base);
210 host->base = base;
211 host->reg_off = 0;
213 base = devm_platform_ioremap_resource(pdev, 1);
214 if (IS_ERR(base))
215 return PTR_ERR(base);
216 host->dma_base = base;
218 * To keep the register addresses shared we intentionaly use
219 * a negative offset here, first register used on Octeon therefore
220 * starts at 0x20 (MIO_EMM_DMA_CFG).
222 host->reg_off_dma = -0x20;
224 ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
225 if (ret)
226 return ret;
229 * Clear out any pending interrupts that may be left over from
230 * bootloader.
232 val = readq(host->base + MIO_EMM_INT(host));
233 writeq(val, host->base + MIO_EMM_INT(host));
235 if (host->has_ciu3) {
236 /* Only CMD_DONE, DMA_DONE, CMD_ERR, DMA_ERR */
237 for (i = 1; i <= 4; i++) {
238 ret = devm_request_irq(&pdev->dev, mmc_irq[i],
239 cvm_mmc_interrupt,
240 0, cvm_mmc_irq_names[i], host);
241 if (ret < 0) {
242 dev_err(&pdev->dev, "Error: devm_request_irq %d\n",
243 mmc_irq[i]);
244 return ret;
247 } else {
248 ret = devm_request_irq(&pdev->dev, mmc_irq[0],
249 cvm_mmc_interrupt, 0, KBUILD_MODNAME,
250 host);
251 if (ret < 0) {
252 dev_err(&pdev->dev, "Error: devm_request_irq %d\n",
253 mmc_irq[0]);
254 return ret;
258 host->global_pwr_gpiod = devm_gpiod_get_optional(&pdev->dev,
259 "power",
260 GPIOD_OUT_HIGH);
261 if (IS_ERR(host->global_pwr_gpiod)) {
262 dev_err(&pdev->dev, "Invalid power GPIO\n");
263 return PTR_ERR(host->global_pwr_gpiod);
266 platform_set_drvdata(pdev, host);
268 i = 0;
269 for_each_child_of_node(node, cn) {
270 host->slot_pdev[i] =
271 of_platform_device_create(cn, NULL, &pdev->dev);
272 if (!host->slot_pdev[i]) {
273 i++;
274 continue;
276 ret = cvm_mmc_of_slot_probe(&host->slot_pdev[i]->dev, host);
277 if (ret) {
278 dev_err(&pdev->dev, "Error populating slots\n");
279 octeon_mmc_set_shared_power(host, 0);
280 goto error;
282 i++;
284 return 0;
286 error:
287 for (i = 0; i < CAVIUM_MAX_MMC; i++) {
288 if (host->slot[i])
289 cvm_mmc_of_slot_remove(host->slot[i]);
290 if (host->slot_pdev[i])
291 of_platform_device_destroy(&host->slot_pdev[i]->dev, NULL);
293 return ret;
296 static int octeon_mmc_remove(struct platform_device *pdev)
298 struct cvm_mmc_host *host = platform_get_drvdata(pdev);
299 u64 dma_cfg;
300 int i;
302 for (i = 0; i < CAVIUM_MAX_MMC; i++)
303 if (host->slot[i])
304 cvm_mmc_of_slot_remove(host->slot[i]);
306 dma_cfg = readq(host->dma_base + MIO_EMM_DMA_CFG(host));
307 dma_cfg &= ~MIO_EMM_DMA_CFG_EN;
308 writeq(dma_cfg, host->dma_base + MIO_EMM_DMA_CFG(host));
310 octeon_mmc_set_shared_power(host, 0);
311 return 0;
314 static const struct of_device_id octeon_mmc_match[] = {
316 .compatible = "cavium,octeon-6130-mmc",
319 .compatible = "cavium,octeon-7890-mmc",
323 MODULE_DEVICE_TABLE(of, octeon_mmc_match);
325 static struct platform_driver octeon_mmc_driver = {
326 .probe = octeon_mmc_probe,
327 .remove = octeon_mmc_remove,
328 .driver = {
329 .name = KBUILD_MODNAME,
330 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
331 .of_match_table = octeon_mmc_match,
335 module_platform_driver(octeon_mmc_driver);
337 MODULE_AUTHOR("Cavium Inc. <support@cavium.com>");
338 MODULE_DESCRIPTION("Low-level driver for Cavium OCTEON MMC/SSD card");
339 MODULE_LICENSE("GPL");