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/interrupt.h>
11 #include <linux/platform_device.h>
12 #include <linux/pm_runtime.h>
13 #include <linux/slab.h>
14 #include <linux/spi/spi.h>
15 #include <linux/scatterlist.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/module.h>
19 #include <linux/of_platform.h>
20 #include <linux/acpi.h>
21 #include <linux/property.h>
22 #include <linux/regmap.h>
26 #define DRIVER_NAME "dw_spi_mmio"
35 #define MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL 0x24
36 #define OCELOT_IF_SI_OWNER_OFFSET 4
37 #define JAGUAR2_IF_SI_OWNER_OFFSET 6
38 #define MSCC_IF_SI_OWNER_MASK GENMASK(1, 0)
39 #define MSCC_IF_SI_OWNER_SISL 0
40 #define MSCC_IF_SI_OWNER_SIBM 1
41 #define MSCC_IF_SI_OWNER_SIMC 2
43 #define MSCC_SPI_MST_SW_MODE 0x14
44 #define MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE BIT(13)
45 #define MSCC_SPI_MST_SW_MODE_SW_SPI_CS(x) (x << 5)
48 struct regmap
*syscon
;
49 void __iomem
*spi_mst
;
53 * The Designware SPI controller (referred to as master in the documentation)
54 * automatically deasserts chip select when the tx fifo is empty. The chip
55 * selects then needs to be either driven as GPIOs or, for the first 4 using the
56 * the SPI boot controller registers. the final chip select is an OR gate
57 * between the Designware SPI controller and the SPI boot controller.
59 static void dw_spi_mscc_set_cs(struct spi_device
*spi
, bool enable
)
61 struct dw_spi
*dws
= spi_master_get_devdata(spi
->master
);
62 struct dw_spi_mmio
*dwsmmio
= container_of(dws
, struct dw_spi_mmio
, dws
);
63 struct dw_spi_mscc
*dwsmscc
= dwsmmio
->priv
;
64 u32 cs
= spi
->chip_select
;
67 u32 sw_mode
= MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE
;
70 sw_mode
|= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs
));
72 writel(sw_mode
, dwsmscc
->spi_mst
+ MSCC_SPI_MST_SW_MODE
);
75 dw_spi_set_cs(spi
, enable
);
78 static int dw_spi_mscc_init(struct platform_device
*pdev
,
79 struct dw_spi_mmio
*dwsmmio
,
80 const char *cpu_syscon
, u32 if_si_owner_offset
)
82 struct dw_spi_mscc
*dwsmscc
;
84 dwsmscc
= devm_kzalloc(&pdev
->dev
, sizeof(*dwsmscc
), GFP_KERNEL
);
88 dwsmscc
->spi_mst
= devm_platform_ioremap_resource(pdev
, 1);
89 if (IS_ERR(dwsmscc
->spi_mst
)) {
90 dev_err(&pdev
->dev
, "SPI_MST region map failed\n");
91 return PTR_ERR(dwsmscc
->spi_mst
);
94 dwsmscc
->syscon
= syscon_regmap_lookup_by_compatible(cpu_syscon
);
95 if (IS_ERR(dwsmscc
->syscon
))
96 return PTR_ERR(dwsmscc
->syscon
);
99 writel(0, dwsmscc
->spi_mst
+ MSCC_SPI_MST_SW_MODE
);
101 /* Select the owner of the SI interface */
102 regmap_update_bits(dwsmscc
->syscon
, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL
,
103 MSCC_IF_SI_OWNER_MASK
<< if_si_owner_offset
,
104 MSCC_IF_SI_OWNER_SIMC
<< if_si_owner_offset
);
106 dwsmmio
->dws
.set_cs
= dw_spi_mscc_set_cs
;
107 dwsmmio
->priv
= dwsmscc
;
112 static int dw_spi_mscc_ocelot_init(struct platform_device
*pdev
,
113 struct dw_spi_mmio
*dwsmmio
)
115 return dw_spi_mscc_init(pdev
, dwsmmio
, "mscc,ocelot-cpu-syscon",
116 OCELOT_IF_SI_OWNER_OFFSET
);
119 static int dw_spi_mscc_jaguar2_init(struct platform_device
*pdev
,
120 struct dw_spi_mmio
*dwsmmio
)
122 return dw_spi_mscc_init(pdev
, dwsmmio
, "mscc,jaguar2-cpu-syscon",
123 JAGUAR2_IF_SI_OWNER_OFFSET
);
126 static int dw_spi_alpine_init(struct platform_device
*pdev
,
127 struct dw_spi_mmio
*dwsmmio
)
129 dwsmmio
->dws
.cs_override
= 1;
134 static int dw_spi_mmio_probe(struct platform_device
*pdev
)
136 int (*init_func
)(struct platform_device
*pdev
,
137 struct dw_spi_mmio
*dwsmmio
);
138 struct dw_spi_mmio
*dwsmmio
;
143 dwsmmio
= devm_kzalloc(&pdev
->dev
, sizeof(struct dw_spi_mmio
),
150 /* Get basic io resource and map it */
151 dws
->regs
= devm_platform_ioremap_resource(pdev
, 0);
152 if (IS_ERR(dws
->regs
)) {
153 dev_err(&pdev
->dev
, "SPI region map failed\n");
154 return PTR_ERR(dws
->regs
);
157 dws
->irq
= platform_get_irq(pdev
, 0);
159 return dws
->irq
; /* -ENXIO */
161 dwsmmio
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
162 if (IS_ERR(dwsmmio
->clk
))
163 return PTR_ERR(dwsmmio
->clk
);
164 ret
= clk_prepare_enable(dwsmmio
->clk
);
168 /* Optional clock needed to access the registers */
169 dwsmmio
->pclk
= devm_clk_get_optional(&pdev
->dev
, "pclk");
170 if (IS_ERR(dwsmmio
->pclk
)) {
171 ret
= PTR_ERR(dwsmmio
->pclk
);
174 ret
= clk_prepare_enable(dwsmmio
->pclk
);
178 dws
->bus_num
= pdev
->id
;
180 dws
->max_freq
= clk_get_rate(dwsmmio
->clk
);
182 device_property_read_u32(&pdev
->dev
, "reg-io-width", &dws
->reg_io_width
);
186 device_property_read_u32(&pdev
->dev
, "num-cs", &num_cs
);
188 dws
->num_cs
= num_cs
;
190 init_func
= device_get_match_data(&pdev
->dev
);
192 ret
= init_func(pdev
, dwsmmio
);
197 pm_runtime_enable(&pdev
->dev
);
199 ret
= dw_spi_add_host(&pdev
->dev
, dws
);
203 platform_set_drvdata(pdev
, dwsmmio
);
207 pm_runtime_disable(&pdev
->dev
);
208 clk_disable_unprepare(dwsmmio
->pclk
);
210 clk_disable_unprepare(dwsmmio
->clk
);
214 static int dw_spi_mmio_remove(struct platform_device
*pdev
)
216 struct dw_spi_mmio
*dwsmmio
= platform_get_drvdata(pdev
);
218 dw_spi_remove_host(&dwsmmio
->dws
);
219 pm_runtime_disable(&pdev
->dev
);
220 clk_disable_unprepare(dwsmmio
->pclk
);
221 clk_disable_unprepare(dwsmmio
->clk
);
226 static const struct of_device_id dw_spi_mmio_of_match
[] = {
227 { .compatible
= "snps,dw-apb-ssi", },
228 { .compatible
= "mscc,ocelot-spi", .data
= dw_spi_mscc_ocelot_init
},
229 { .compatible
= "mscc,jaguar2-spi", .data
= dw_spi_mscc_jaguar2_init
},
230 { .compatible
= "amazon,alpine-dw-apb-ssi", .data
= dw_spi_alpine_init
},
231 { .compatible
= "renesas,rzn1-spi", },
232 { /* end of table */}
234 MODULE_DEVICE_TABLE(of
, dw_spi_mmio_of_match
);
236 static const struct acpi_device_id dw_spi_mmio_acpi_match
[] = {
240 MODULE_DEVICE_TABLE(acpi
, dw_spi_mmio_acpi_match
);
242 static struct platform_driver dw_spi_mmio_driver
= {
243 .probe
= dw_spi_mmio_probe
,
244 .remove
= dw_spi_mmio_remove
,
247 .of_match_table
= dw_spi_mmio_of_match
,
248 .acpi_match_table
= ACPI_PTR(dw_spi_mmio_acpi_match
),
251 module_platform_driver(dw_spi_mmio_driver
);
253 MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
254 MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
255 MODULE_LICENSE("GPL v2");