Thomas Gleixner | 97fb5e8 | 2019-05-29 07:17:58 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * Copyright (c) 2011, The Linux Foundation. All rights reserved. |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 5 | */ |
| 6 | #include <linux/of.h> |
| 7 | #include <linux/of_dma.h> |
| 8 | #include <linux/bitops.h> |
| 9 | #include <linux/mmc/host.h> |
| 10 | #include <linux/mmc/card.h> |
| 11 | #include "mmci.h" |
| 12 | |
| 13 | /* Registers */ |
| 14 | #define DML_CONFIG 0x00 |
| 15 | #define PRODUCER_CRCI_MSK GENMASK(1, 0) |
| 16 | #define PRODUCER_CRCI_DISABLE 0 |
| 17 | #define PRODUCER_CRCI_X_SEL BIT(0) |
| 18 | #define PRODUCER_CRCI_Y_SEL BIT(1) |
| 19 | #define CONSUMER_CRCI_MSK GENMASK(3, 2) |
| 20 | #define CONSUMER_CRCI_DISABLE 0 |
| 21 | #define CONSUMER_CRCI_X_SEL BIT(2) |
| 22 | #define CONSUMER_CRCI_Y_SEL BIT(3) |
| 23 | #define PRODUCER_TRANS_END_EN BIT(4) |
| 24 | #define BYPASS BIT(16) |
| 25 | #define DIRECT_MODE BIT(17) |
| 26 | #define INFINITE_CONS_TRANS BIT(18) |
| 27 | |
| 28 | #define DML_SW_RESET 0x08 |
| 29 | #define DML_PRODUCER_START 0x0c |
| 30 | #define DML_CONSUMER_START 0x10 |
| 31 | #define DML_PRODUCER_PIPE_LOGICAL_SIZE 0x14 |
| 32 | #define DML_CONSUMER_PIPE_LOGICAL_SIZE 0x18 |
| 33 | #define DML_PIPE_ID 0x1c |
| 34 | #define PRODUCER_PIPE_ID_SHFT 0 |
| 35 | #define PRODUCER_PIPE_ID_MSK GENMASK(4, 0) |
| 36 | #define CONSUMER_PIPE_ID_SHFT 16 |
| 37 | #define CONSUMER_PIPE_ID_MSK GENMASK(20, 16) |
| 38 | |
| 39 | #define DML_PRODUCER_BAM_BLOCK_SIZE 0x24 |
| 40 | #define DML_PRODUCER_BAM_TRANS_SIZE 0x28 |
| 41 | |
| 42 | /* other definitions */ |
| 43 | #define PRODUCER_PIPE_LOGICAL_SIZE 4096 |
| 44 | #define CONSUMER_PIPE_LOGICAL_SIZE 4096 |
| 45 | |
| 46 | #define DML_OFFSET 0x800 |
| 47 | |
Ulf Hansson | ea27c95 | 2019-03-06 15:04:53 +0100 | [diff] [blame] | 48 | static int qcom_dma_start(struct mmci_host *host, unsigned int *datactrl) |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 49 | { |
| 50 | u32 config; |
| 51 | void __iomem *base = host->base + DML_OFFSET; |
Ulf Hansson | ea27c95 | 2019-03-06 15:04:53 +0100 | [diff] [blame] | 52 | struct mmc_data *data = host->data; |
| 53 | int ret = mmci_dmae_start(host, datactrl); |
| 54 | |
| 55 | if (ret) |
| 56 | return ret; |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 57 | |
| 58 | if (data->flags & MMC_DATA_READ) { |
| 59 | /* Read operation: configure DML for producer operation */ |
| 60 | /* Set producer CRCI-x and disable consumer CRCI */ |
| 61 | config = readl_relaxed(base + DML_CONFIG); |
| 62 | config = (config & ~PRODUCER_CRCI_MSK) | PRODUCER_CRCI_X_SEL; |
| 63 | config = (config & ~CONSUMER_CRCI_MSK) | CONSUMER_CRCI_DISABLE; |
| 64 | writel_relaxed(config, base + DML_CONFIG); |
| 65 | |
| 66 | /* Set the Producer BAM block size */ |
| 67 | writel_relaxed(data->blksz, base + DML_PRODUCER_BAM_BLOCK_SIZE); |
| 68 | |
| 69 | /* Set Producer BAM Transaction size */ |
| 70 | writel_relaxed(data->blocks * data->blksz, |
| 71 | base + DML_PRODUCER_BAM_TRANS_SIZE); |
| 72 | /* Set Producer Transaction End bit */ |
| 73 | config = readl_relaxed(base + DML_CONFIG); |
| 74 | config |= PRODUCER_TRANS_END_EN; |
| 75 | writel_relaxed(config, base + DML_CONFIG); |
| 76 | /* Trigger producer */ |
| 77 | writel_relaxed(1, base + DML_PRODUCER_START); |
| 78 | } else { |
| 79 | /* Write operation: configure DML for consumer operation */ |
| 80 | /* Set consumer CRCI-x and disable producer CRCI*/ |
| 81 | config = readl_relaxed(base + DML_CONFIG); |
| 82 | config = (config & ~CONSUMER_CRCI_MSK) | CONSUMER_CRCI_X_SEL; |
| 83 | config = (config & ~PRODUCER_CRCI_MSK) | PRODUCER_CRCI_DISABLE; |
| 84 | writel_relaxed(config, base + DML_CONFIG); |
| 85 | /* Clear Producer Transaction End bit */ |
| 86 | config = readl_relaxed(base + DML_CONFIG); |
| 87 | config &= ~PRODUCER_TRANS_END_EN; |
| 88 | writel_relaxed(config, base + DML_CONFIG); |
| 89 | /* Trigger consumer */ |
| 90 | writel_relaxed(1, base + DML_CONSUMER_START); |
| 91 | } |
| 92 | |
| 93 | /* make sure the dml is configured before dma is triggered */ |
| 94 | wmb(); |
Ulf Hansson | ea27c95 | 2019-03-06 15:04:53 +0100 | [diff] [blame] | 95 | return 0; |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static int of_get_dml_pipe_index(struct device_node *np, const char *name) |
| 99 | { |
| 100 | int index; |
| 101 | struct of_phandle_args dma_spec; |
| 102 | |
| 103 | index = of_property_match_string(np, "dma-names", name); |
| 104 | |
| 105 | if (index < 0) |
| 106 | return -ENODEV; |
| 107 | |
| 108 | if (of_parse_phandle_with_args(np, "dmas", "#dma-cells", index, |
| 109 | &dma_spec)) |
| 110 | return -ENODEV; |
| 111 | |
| 112 | if (dma_spec.args_count) |
| 113 | return dma_spec.args[0]; |
| 114 | |
| 115 | return -ENODEV; |
| 116 | } |
| 117 | |
| 118 | /* Initialize the dml hardware connected to SD Card controller */ |
Ludovic Barre | c3647fd | 2018-10-08 14:08:33 +0200 | [diff] [blame] | 119 | static int qcom_dma_setup(struct mmci_host *host) |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 120 | { |
| 121 | u32 config; |
| 122 | void __iomem *base; |
| 123 | int consumer_id, producer_id; |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 124 | struct device_node *np = host->mmc->parent->of_node; |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 125 | |
Ludovic Barre | c3647fd | 2018-10-08 14:08:33 +0200 | [diff] [blame] | 126 | if (mmci_dmae_setup(host)) |
| 127 | return -EINVAL; |
| 128 | |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 129 | consumer_id = of_get_dml_pipe_index(np, "tx"); |
| 130 | producer_id = of_get_dml_pipe_index(np, "rx"); |
| 131 | |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 132 | if (producer_id < 0 || consumer_id < 0) { |
Ludovic Barre | c3647fd | 2018-10-08 14:08:33 +0200 | [diff] [blame] | 133 | mmci_dmae_release(host); |
| 134 | return -EINVAL; |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 135 | } |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 136 | |
| 137 | base = host->base + DML_OFFSET; |
| 138 | |
| 139 | /* Reset the DML block */ |
| 140 | writel_relaxed(1, base + DML_SW_RESET); |
| 141 | |
| 142 | /* Disable the producer and consumer CRCI */ |
| 143 | config = (PRODUCER_CRCI_DISABLE | CONSUMER_CRCI_DISABLE); |
| 144 | /* |
| 145 | * Disable the bypass mode. Bypass mode will only be used |
| 146 | * if data transfer is to happen in PIO mode and don't |
| 147 | * want the BAM interface to connect with SDCC-DML. |
| 148 | */ |
| 149 | config &= ~BYPASS; |
| 150 | /* |
| 151 | * Disable direct mode as we don't DML to MASTER the AHB bus. |
| 152 | * BAM connected with DML should MASTER the AHB bus. |
| 153 | */ |
| 154 | config &= ~DIRECT_MODE; |
| 155 | /* |
| 156 | * Disable infinite mode transfer as we won't be doing any |
| 157 | * infinite size data transfers. All data transfer will be |
| 158 | * of finite data size. |
| 159 | */ |
| 160 | config &= ~INFINITE_CONS_TRANS; |
| 161 | writel_relaxed(config, base + DML_CONFIG); |
| 162 | |
| 163 | /* |
| 164 | * Initialize the logical BAM pipe size for producer |
| 165 | * and consumer. |
| 166 | */ |
| 167 | writel_relaxed(PRODUCER_PIPE_LOGICAL_SIZE, |
| 168 | base + DML_PRODUCER_PIPE_LOGICAL_SIZE); |
| 169 | writel_relaxed(CONSUMER_PIPE_LOGICAL_SIZE, |
| 170 | base + DML_CONSUMER_PIPE_LOGICAL_SIZE); |
| 171 | |
| 172 | /* Initialize Producer/consumer pipe id */ |
| 173 | writel_relaxed(producer_id | (consumer_id << CONSUMER_PIPE_ID_SHFT), |
| 174 | base + DML_PIPE_ID); |
| 175 | |
Masahiro Yamada | 183b802 | 2017-02-27 14:29:20 -0800 | [diff] [blame] | 176 | /* Make sure dml initialization is finished */ |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 177 | mb(); |
Ludovic Barre | c3647fd | 2018-10-08 14:08:33 +0200 | [diff] [blame] | 178 | |
| 179 | return 0; |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 180 | } |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 181 | |
Ludovic Barre | 5db1e1f | 2019-03-27 10:05:30 +0100 | [diff] [blame] | 182 | static u32 qcom_get_dctrl_cfg(struct mmci_host *host) |
| 183 | { |
| 184 | return MCI_DPSM_ENABLE | (host->data->blksz << 4); |
| 185 | } |
| 186 | |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 187 | static struct mmci_host_ops qcom_variant_ops = { |
Ludovic Barre | 4798351 | 2018-10-08 14:08:36 +0200 | [diff] [blame] | 188 | .prep_data = mmci_dmae_prep_data, |
| 189 | .unprep_data = mmci_dmae_unprep_data, |
Ludovic Barre | 5db1e1f | 2019-03-27 10:05:30 +0100 | [diff] [blame] | 190 | .get_datactrl_cfg = qcom_get_dctrl_cfg, |
Ludovic Barre | 0276996 | 2018-10-08 14:08:37 +0200 | [diff] [blame] | 191 | .get_next_data = mmci_dmae_get_next_data, |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 192 | .dma_setup = qcom_dma_setup, |
Ludovic Barre | c3647fd | 2018-10-08 14:08:33 +0200 | [diff] [blame] | 193 | .dma_release = mmci_dmae_release, |
Ulf Hansson | ea27c95 | 2019-03-06 15:04:53 +0100 | [diff] [blame] | 194 | .dma_start = qcom_dma_start, |
Ludovic Barre | 5a9f10c | 2018-10-08 14:08:39 +0200 | [diff] [blame] | 195 | .dma_finalize = mmci_dmae_finalize, |
Ludovic Barre | cfccc6a | 2018-10-08 14:08:40 +0200 | [diff] [blame] | 196 | .dma_error = mmci_dmae_error, |
Ulf Hansson | 29aba07 | 2018-07-16 13:08:18 +0200 | [diff] [blame] | 197 | }; |
| 198 | |
| 199 | void qcom_variant_init(struct mmci_host *host) |
| 200 | { |
| 201 | host->ops = &qcom_variant_ops; |
Srinivas Kandagatla | 9cb1514 | 2014-07-29 03:50:30 +0100 | [diff] [blame] | 202 | } |