1 // SPDX-License-Identifier: GPL-2.0-only
3 * Memory-mapped interface driver for DW SPI Core
5 * Copyright (c) 2010, Octasic semiconductor.
10 #include <linux/platform_device.h>
11 #include <linux/pm_runtime.h>
12 #include <linux/slab.h>
13 #include <linux/spi/spi.h>
14 #include <linux/scatterlist.h>
15 #include <linux/mfd/syscon.h>
16 #include <linux/module.h>
18 #include <linux/of_platform.h>
19 #include <linux/acpi.h>
20 #include <linux/property.h>
21 #include <linux/regmap.h>
22 #include <linux/reset.h>
26 #define DRIVER_NAME "dw_spi_mmio"
33 struct reset_control
*rstc
;
36 #define MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL 0x24
37 #define OCELOT_IF_SI_OWNER_OFFSET 4
38 #define JAGUAR2_IF_SI_OWNER_OFFSET 6
39 #define MSCC_IF_SI_OWNER_MASK GENMASK(1, 0)
40 #define MSCC_IF_SI_OWNER_SISL 0
41 #define MSCC_IF_SI_OWNER_SIBM 1
42 #define MSCC_IF_SI_OWNER_SIMC 2
44 #define MSCC_SPI_MST_SW_MODE 0x14
45 #define MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE BIT(13)
46 #define MSCC_SPI_MST_SW_MODE_SW_SPI_CS(x) (x << 5)
48 #define SPARX5_FORCE_ENA 0xa4
49 #define SPARX5_FORCE_VAL 0xa8
52 struct regmap
*syscon
;
53 void __iomem
*spi_mst
; /* Not sparx5 */
57 * The Designware SPI controller (referred to as master in the documentation)
58 * automatically deasserts chip select when the tx fifo is empty. The chip
59 * selects then needs to be either driven as GPIOs or, for the first 4 using the
60 * the SPI boot controller registers. the final chip select is an OR gate
61 * between the Designware SPI controller and the SPI boot controller.
63 static void dw_spi_mscc_set_cs(struct spi_device
*spi
, bool enable
)
65 struct dw_spi
*dws
= spi_master_get_devdata(spi
->master
);
66 struct dw_spi_mmio
*dwsmmio
= container_of(dws
, struct dw_spi_mmio
, dws
);
67 struct dw_spi_mscc
*dwsmscc
= dwsmmio
->priv
;
68 u32 cs
= spi
->chip_select
;
71 u32 sw_mode
= MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE
;
74 sw_mode
|= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs
));
76 writel(sw_mode
, dwsmscc
->spi_mst
+ MSCC_SPI_MST_SW_MODE
);
79 dw_spi_set_cs(spi
, enable
);
82 static int dw_spi_mscc_init(struct platform_device
*pdev
,
83 struct dw_spi_mmio
*dwsmmio
,
84 const char *cpu_syscon
, u32 if_si_owner_offset
)
86 struct dw_spi_mscc
*dwsmscc
;
88 dwsmscc
= devm_kzalloc(&pdev
->dev
, sizeof(*dwsmscc
), GFP_KERNEL
);
92 dwsmscc
->spi_mst
= devm_platform_ioremap_resource(pdev
, 1);
93 if (IS_ERR(dwsmscc
->spi_mst
)) {
94 dev_err(&pdev
->dev
, "SPI_MST region map failed\n");
95 return PTR_ERR(dwsmscc
->spi_mst
);
98 dwsmscc
->syscon
= syscon_regmap_lookup_by_compatible(cpu_syscon
);
99 if (IS_ERR(dwsmscc
->syscon
))
100 return PTR_ERR(dwsmscc
->syscon
);
102 /* Deassert all CS */
103 writel(0, dwsmscc
->spi_mst
+ MSCC_SPI_MST_SW_MODE
);
105 /* Select the owner of the SI interface */
106 regmap_update_bits(dwsmscc
->syscon
, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL
,
107 MSCC_IF_SI_OWNER_MASK
<< if_si_owner_offset
,
108 MSCC_IF_SI_OWNER_SIMC
<< if_si_owner_offset
);
110 dwsmmio
->dws
.set_cs
= dw_spi_mscc_set_cs
;
111 dwsmmio
->priv
= dwsmscc
;
116 static int dw_spi_mscc_ocelot_init(struct platform_device
*pdev
,
117 struct dw_spi_mmio
*dwsmmio
)
119 return dw_spi_mscc_init(pdev
, dwsmmio
, "mscc,ocelot-cpu-syscon",
120 OCELOT_IF_SI_OWNER_OFFSET
);
123 static int dw_spi_mscc_jaguar2_init(struct platform_device
*pdev
,
124 struct dw_spi_mmio
*dwsmmio
)
126 return dw_spi_mscc_init(pdev
, dwsmmio
, "mscc,jaguar2-cpu-syscon",
127 JAGUAR2_IF_SI_OWNER_OFFSET
);
131 * The Designware SPI controller (referred to as master in the
132 * documentation) automatically deasserts chip select when the tx fifo
133 * is empty. The chip selects then needs to be driven by a CS override
134 * register. enable is an active low signal.
136 static void dw_spi_sparx5_set_cs(struct spi_device
*spi
, bool enable
)
138 struct dw_spi
*dws
= spi_master_get_devdata(spi
->master
);
139 struct dw_spi_mmio
*dwsmmio
= container_of(dws
, struct dw_spi_mmio
, dws
);
140 struct dw_spi_mscc
*dwsmscc
= dwsmmio
->priv
;
141 u8 cs
= spi
->chip_select
;
144 /* CS override drive enable */
145 regmap_write(dwsmscc
->syscon
, SPARX5_FORCE_ENA
, 1);
146 /* Now set CSx enabled */
147 regmap_write(dwsmscc
->syscon
, SPARX5_FORCE_VAL
, ~BIT(cs
));
152 regmap_write(dwsmscc
->syscon
, SPARX5_FORCE_VAL
, ~0);
155 /* CS override drive disable */
156 regmap_write(dwsmscc
->syscon
, SPARX5_FORCE_ENA
, 0);
159 dw_spi_set_cs(spi
, enable
);
162 static int dw_spi_mscc_sparx5_init(struct platform_device
*pdev
,
163 struct dw_spi_mmio
*dwsmmio
)
165 const char *syscon_name
= "microchip,sparx5-cpu-syscon";
166 struct device
*dev
= &pdev
->dev
;
167 struct dw_spi_mscc
*dwsmscc
;
169 if (!IS_ENABLED(CONFIG_SPI_MUX
)) {
170 dev_err(dev
, "This driver needs CONFIG_SPI_MUX\n");
174 dwsmscc
= devm_kzalloc(dev
, sizeof(*dwsmscc
), GFP_KERNEL
);
179 syscon_regmap_lookup_by_compatible(syscon_name
);
180 if (IS_ERR(dwsmscc
->syscon
)) {
181 dev_err(dev
, "No syscon map %s\n", syscon_name
);
182 return PTR_ERR(dwsmscc
->syscon
);
185 dwsmmio
->dws
.set_cs
= dw_spi_sparx5_set_cs
;
186 dwsmmio
->priv
= dwsmscc
;
191 static int dw_spi_alpine_init(struct platform_device
*pdev
,
192 struct dw_spi_mmio
*dwsmmio
)
194 dwsmmio
->dws
.caps
= DW_SPI_CAP_CS_OVERRIDE
;
199 static int dw_spi_dw_apb_init(struct platform_device
*pdev
,
200 struct dw_spi_mmio
*dwsmmio
)
202 dw_spi_dma_setup_generic(&dwsmmio
->dws
);
207 static int dw_spi_dwc_ssi_init(struct platform_device
*pdev
,
208 struct dw_spi_mmio
*dwsmmio
)
210 dwsmmio
->dws
.caps
= DW_SPI_CAP_DWC_SSI
;
212 dw_spi_dma_setup_generic(&dwsmmio
->dws
);
217 static int dw_spi_keembay_init(struct platform_device
*pdev
,
218 struct dw_spi_mmio
*dwsmmio
)
220 dwsmmio
->dws
.caps
= DW_SPI_CAP_KEEMBAY_MST
| DW_SPI_CAP_DWC_SSI
;
225 static int dw_spi_canaan_k210_init(struct platform_device
*pdev
,
226 struct dw_spi_mmio
*dwsmmio
)
229 * The Canaan Kendryte K210 SoC DW apb_ssi v4 spi controller is
230 * documented to have a 32 word deep TX and RX FIFO, which
231 * spi_hw_init() detects. However, when the RX FIFO is filled up to
232 * 32 entries (RXFLR = 32), an RX FIFO overrun error occurs. Avoid this
233 * problem by force setting fifo_len to 31.
235 dwsmmio
->dws
.fifo_len
= 31;
240 static int dw_spi_mmio_probe(struct platform_device
*pdev
)
242 int (*init_func
)(struct platform_device
*pdev
,
243 struct dw_spi_mmio
*dwsmmio
);
244 struct dw_spi_mmio
*dwsmmio
;
245 struct resource
*mem
;
250 dwsmmio
= devm_kzalloc(&pdev
->dev
, sizeof(struct dw_spi_mmio
),
257 /* Get basic io resource and map it */
258 dws
->regs
= devm_platform_get_and_ioremap_resource(pdev
, 0, &mem
);
259 if (IS_ERR(dws
->regs
))
260 return PTR_ERR(dws
->regs
);
262 dws
->paddr
= mem
->start
;
264 dws
->irq
= platform_get_irq(pdev
, 0);
266 return dws
->irq
; /* -ENXIO */
268 dwsmmio
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
269 if (IS_ERR(dwsmmio
->clk
))
270 return PTR_ERR(dwsmmio
->clk
);
271 ret
= clk_prepare_enable(dwsmmio
->clk
);
275 /* Optional clock needed to access the registers */
276 dwsmmio
->pclk
= devm_clk_get_optional(&pdev
->dev
, "pclk");
277 if (IS_ERR(dwsmmio
->pclk
)) {
278 ret
= PTR_ERR(dwsmmio
->pclk
);
281 ret
= clk_prepare_enable(dwsmmio
->pclk
);
285 /* find an optional reset controller */
286 dwsmmio
->rstc
= devm_reset_control_get_optional_exclusive(&pdev
->dev
, "spi");
287 if (IS_ERR(dwsmmio
->rstc
)) {
288 ret
= PTR_ERR(dwsmmio
->rstc
);
291 reset_control_deassert(dwsmmio
->rstc
);
293 dws
->bus_num
= pdev
->id
;
295 dws
->max_freq
= clk_get_rate(dwsmmio
->clk
);
297 device_property_read_u32(&pdev
->dev
, "reg-io-width", &dws
->reg_io_width
);
301 device_property_read_u32(&pdev
->dev
, "num-cs", &num_cs
);
303 dws
->num_cs
= num_cs
;
305 init_func
= device_get_match_data(&pdev
->dev
);
307 ret
= init_func(pdev
, dwsmmio
);
312 pm_runtime_enable(&pdev
->dev
);
314 ret
= dw_spi_add_host(&pdev
->dev
, dws
);
318 platform_set_drvdata(pdev
, dwsmmio
);
322 pm_runtime_disable(&pdev
->dev
);
323 clk_disable_unprepare(dwsmmio
->pclk
);
325 clk_disable_unprepare(dwsmmio
->clk
);
326 reset_control_assert(dwsmmio
->rstc
);
331 static int dw_spi_mmio_remove(struct platform_device
*pdev
)
333 struct dw_spi_mmio
*dwsmmio
= platform_get_drvdata(pdev
);
335 dw_spi_remove_host(&dwsmmio
->dws
);
336 pm_runtime_disable(&pdev
->dev
);
337 clk_disable_unprepare(dwsmmio
->pclk
);
338 clk_disable_unprepare(dwsmmio
->clk
);
339 reset_control_assert(dwsmmio
->rstc
);
344 static const struct of_device_id dw_spi_mmio_of_match
[] = {
345 { .compatible
= "snps,dw-apb-ssi", .data
= dw_spi_dw_apb_init
},
346 { .compatible
= "mscc,ocelot-spi", .data
= dw_spi_mscc_ocelot_init
},
347 { .compatible
= "mscc,jaguar2-spi", .data
= dw_spi_mscc_jaguar2_init
},
348 { .compatible
= "amazon,alpine-dw-apb-ssi", .data
= dw_spi_alpine_init
},
349 { .compatible
= "renesas,rzn1-spi", .data
= dw_spi_dw_apb_init
},
350 { .compatible
= "snps,dwc-ssi-1.01a", .data
= dw_spi_dwc_ssi_init
},
351 { .compatible
= "intel,keembay-ssi", .data
= dw_spi_keembay_init
},
352 { .compatible
= "microchip,sparx5-spi", dw_spi_mscc_sparx5_init
},
353 { .compatible
= "canaan,k210-spi", dw_spi_canaan_k210_init
},
354 { /* end of table */}
356 MODULE_DEVICE_TABLE(of
, dw_spi_mmio_of_match
);
359 static const struct acpi_device_id dw_spi_mmio_acpi_match
[] = {
360 {"HISI0173", (kernel_ulong_t
)dw_spi_dw_apb_init
},
363 MODULE_DEVICE_TABLE(acpi
, dw_spi_mmio_acpi_match
);
366 static struct platform_driver dw_spi_mmio_driver
= {
367 .probe
= dw_spi_mmio_probe
,
368 .remove
= dw_spi_mmio_remove
,
371 .of_match_table
= dw_spi_mmio_of_match
,
372 .acpi_match_table
= ACPI_PTR(dw_spi_mmio_acpi_match
),
375 module_platform_driver(dw_spi_mmio_driver
);
377 MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
378 MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
379 MODULE_LICENSE("GPL v2");