blob: 1df6f3deee2c7a44714a0cd084e1a9d26cb6f16b [file] [log] [blame]
Thomas Gleixner75a6faf2019-06-01 10:08:37 +02001// SPDX-License-Identifier: GPL-2.0-only
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -07002/*
Grant Likelyca632f52011-06-06 01:16:30 -06003 * Memory-mapped interface driver for DW SPI Core
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -07004 *
5 * Copyright (c) 2010, Octasic semiconductor.
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -07006 */
7
8#include <linux/clk.h>
Jamie Iles50c01fc2011-01-11 12:43:52 +00009#include <linux/err.h>
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070010#include <linux/interrupt.h>
11#include <linux/platform_device.h>
Jarkko Nikulab9fc2d22019-10-18 16:21:29 +030012#include <linux/pm_runtime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070014#include <linux/spi/spi.h>
Grant Likely568a60e2011-02-28 12:47:12 -070015#include <linux/scatterlist.h>
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020016#include <linux/mfd/syscon.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040017#include <linux/module.h>
Steffen Trumtrar22dae172014-06-13 15:36:18 +020018#include <linux/of.h>
Steffen Trumtrar22dae172014-06-13 15:36:18 +020019#include <linux/of_platform.h>
Jay Fang32215a62018-12-03 11:15:50 +080020#include <linux/acpi.h>
Andy Shevchenko98999952015-10-14 23:12:25 +030021#include <linux/property.h>
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020022#include <linux/regmap.h>
Grant Likely568a60e2011-02-28 12:47:12 -070023
Grant Likelyca632f52011-06-06 01:16:30 -060024#include "spi-dw.h"
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070025
26#define DRIVER_NAME "dw_spi_mmio"
27
28struct dw_spi_mmio {
Jean-Hugues Deschenes0a4c1d72010-01-21 09:55:42 -070029 struct dw_spi dws;
30 struct clk *clk;
Phil Edworthy560ee7e2019-03-19 15:52:07 +000031 struct clk *pclk;
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020032 void *priv;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070033};
34
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020035#define MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL 0x24
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020036#define OCELOT_IF_SI_OWNER_OFFSET 4
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020037#define JAGUAR2_IF_SI_OWNER_OFFSET 6
Alexandre Bellonic1d8b082018-08-31 13:40:46 +020038#define MSCC_IF_SI_OWNER_MASK GENMASK(1, 0)
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020039#define MSCC_IF_SI_OWNER_SISL 0
40#define MSCC_IF_SI_OWNER_SIBM 1
41#define MSCC_IF_SI_OWNER_SIMC 2
42
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)
46
47struct dw_spi_mscc {
48 struct regmap *syscon;
49 void __iomem *spi_mst;
50};
51
52/*
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.
58 */
59static void dw_spi_mscc_set_cs(struct spi_device *spi, bool enable)
60{
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;
65
66 if (cs < 4) {
67 u32 sw_mode = MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE;
68
69 if (!enable)
70 sw_mode |= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs));
71
72 writel(sw_mode, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE);
73 }
74
75 dw_spi_set_cs(spi, enable);
76}
77
78static int dw_spi_mscc_init(struct platform_device *pdev,
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020079 struct dw_spi_mmio *dwsmmio,
80 const char *cpu_syscon, u32 if_si_owner_offset)
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020081{
82 struct dw_spi_mscc *dwsmscc;
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020083
84 dwsmscc = devm_kzalloc(&pdev->dev, sizeof(*dwsmscc), GFP_KERNEL);
85 if (!dwsmscc)
86 return -ENOMEM;
87
YueHaibing5cc6fdc2019-09-04 21:58:54 +080088 dwsmscc->spi_mst = devm_platform_ioremap_resource(pdev, 1);
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020089 if (IS_ERR(dwsmscc->spi_mst)) {
90 dev_err(&pdev->dev, "SPI_MST region map failed\n");
91 return PTR_ERR(dwsmscc->spi_mst);
92 }
93
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020094 dwsmscc->syscon = syscon_regmap_lookup_by_compatible(cpu_syscon);
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020095 if (IS_ERR(dwsmscc->syscon))
96 return PTR_ERR(dwsmscc->syscon);
97
98 /* Deassert all CS */
99 writel(0, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE);
100
101 /* Select the owner of the SI interface */
102 regmap_update_bits(dwsmscc->syscon, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL,
Alexandre Bellonic1d8b082018-08-31 13:40:46 +0200103 MSCC_IF_SI_OWNER_MASK << if_si_owner_offset,
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200104 MSCC_IF_SI_OWNER_SIMC << if_si_owner_offset);
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200105
106 dwsmmio->dws.set_cs = dw_spi_mscc_set_cs;
107 dwsmmio->priv = dwsmscc;
108
Wan Ahmad Zainiec4eadee2020-05-05 21:06:13 +0800109 /* Register hook to configure CTRLR0 */
110 dwsmmio->dws.update_cr0 = dw_spi_update_cr0;
111
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200112 return 0;
113}
114
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200115static int dw_spi_mscc_ocelot_init(struct platform_device *pdev,
116 struct dw_spi_mmio *dwsmmio)
117{
118 return dw_spi_mscc_init(pdev, dwsmmio, "mscc,ocelot-cpu-syscon",
119 OCELOT_IF_SI_OWNER_OFFSET);
120}
121
122static int dw_spi_mscc_jaguar2_init(struct platform_device *pdev,
123 struct dw_spi_mmio *dwsmmio)
124{
125 return dw_spi_mscc_init(pdev, dwsmmio, "mscc,jaguar2-cpu-syscon",
126 JAGUAR2_IF_SI_OWNER_OFFSET);
127}
128
Talel Shenharf2d70472018-10-11 14:20:07 +0300129static int dw_spi_alpine_init(struct platform_device *pdev,
130 struct dw_spi_mmio *dwsmmio)
131{
132 dwsmmio->dws.cs_override = 1;
133
Wan Ahmad Zainiec4eadee2020-05-05 21:06:13 +0800134 /* Register hook to configure CTRLR0 */
135 dwsmmio->dws.update_cr0 = dw_spi_update_cr0;
136
137 return 0;
138}
139
140static int dw_spi_dw_apb_init(struct platform_device *pdev,
141 struct dw_spi_mmio *dwsmmio)
142{
143 /* Register hook to configure CTRLR0 */
144 dwsmmio->dws.update_cr0 = dw_spi_update_cr0;
145
Talel Shenharf2d70472018-10-11 14:20:07 +0300146 return 0;
147}
148
Wan Ahmad Zainiee539f432020-05-05 21:06:14 +0800149static int dw_spi_dwc_ssi_init(struct platform_device *pdev,
150 struct dw_spi_mmio *dwsmmio)
151{
152 /* Register hook to configure CTRLR0 */
153 dwsmmio->dws.update_cr0 = dw_spi_update_cr0_v1_01a;
154
155 return 0;
156}
157
Grant Likelyfd4a3192012-12-07 16:57:14 +0000158static int dw_spi_mmio_probe(struct platform_device *pdev)
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700159{
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200160 int (*init_func)(struct platform_device *pdev,
161 struct dw_spi_mmio *dwsmmio);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700162 struct dw_spi_mmio *dwsmmio;
163 struct dw_spi *dws;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700164 int ret;
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200165 int num_cs;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700166
Baruch Siach04f421e2013-12-30 20:30:44 +0200167 dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio),
168 GFP_KERNEL);
169 if (!dwsmmio)
170 return -ENOMEM;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700171
172 dws = &dwsmmio->dws;
173
174 /* Get basic io resource and map it */
Andy Shevchenko05210502019-07-10 14:42:30 +0300175 dws->regs = devm_platform_ioremap_resource(pdev, 0);
Baruch Siach04f421e2013-12-30 20:30:44 +0200176 if (IS_ERR(dws->regs)) {
177 dev_err(&pdev->dev, "SPI region map failed\n");
178 return PTR_ERR(dws->regs);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700179 }
180
181 dws->irq = platform_get_irq(pdev, 0);
Stephen Boyd6b8ac102019-07-30 11:15:41 -0700182 if (dws->irq < 0)
Baruch Siach04f421e2013-12-30 20:30:44 +0200183 return dws->irq; /* -ENXIO */
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700184
Baruch Siach04f421e2013-12-30 20:30:44 +0200185 dwsmmio->clk = devm_clk_get(&pdev->dev, NULL);
186 if (IS_ERR(dwsmmio->clk))
187 return PTR_ERR(dwsmmio->clk);
Baruch Siach020fe3f2013-12-30 20:30:45 +0200188 ret = clk_prepare_enable(dwsmmio->clk);
Baruch Siach04f421e2013-12-30 20:30:44 +0200189 if (ret)
190 return ret;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700191
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000192 /* Optional clock needed to access the registers */
193 dwsmmio->pclk = devm_clk_get_optional(&pdev->dev, "pclk");
Andy Shevchenko3da98342019-07-10 14:42:43 +0300194 if (IS_ERR(dwsmmio->pclk)) {
195 ret = PTR_ERR(dwsmmio->pclk);
196 goto out_clk;
197 }
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000198 ret = clk_prepare_enable(dwsmmio->pclk);
199 if (ret)
200 goto out_clk;
201
Baruch Siach2418991e2014-01-26 10:14:32 +0200202 dws->bus_num = pdev->id;
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200203
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700204 dws->max_freq = clk_get_rate(dwsmmio->clk);
205
Andy Shevchenko98999952015-10-14 23:12:25 +0300206 device_property_read_u32(&pdev->dev, "reg-io-width", &dws->reg_io_width);
Michael van der Westhuizenc4fe57f2015-08-18 22:21:53 +0200207
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200208 num_cs = 4;
209
Andy Shevchenko98999952015-10-14 23:12:25 +0300210 device_property_read_u32(&pdev->dev, "num-cs", &num_cs);
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200211
212 dws->num_cs = num_cs;
213
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200214 init_func = device_get_match_data(&pdev->dev);
215 if (init_func) {
216 ret = init_func(pdev, dwsmmio);
217 if (ret)
218 goto out;
219 }
220
Jarkko Nikulab9fc2d22019-10-18 16:21:29 +0300221 pm_runtime_enable(&pdev->dev);
222
Baruch Siach04f421e2013-12-30 20:30:44 +0200223 ret = dw_spi_add_host(&pdev->dev, dws);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700224 if (ret)
Baruch Siach04f421e2013-12-30 20:30:44 +0200225 goto out;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700226
227 platform_set_drvdata(pdev, dwsmmio);
228 return 0;
229
Baruch Siach04f421e2013-12-30 20:30:44 +0200230out:
Jarkko Nikulab9fc2d22019-10-18 16:21:29 +0300231 pm_runtime_disable(&pdev->dev);
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000232 clk_disable_unprepare(dwsmmio->pclk);
233out_clk:
Baruch Siach020fe3f2013-12-30 20:30:45 +0200234 clk_disable_unprepare(dwsmmio->clk);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700235 return ret;
236}
237
Grant Likelyfd4a3192012-12-07 16:57:14 +0000238static int dw_spi_mmio_remove(struct platform_device *pdev)
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700239{
240 struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700241
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700242 dw_spi_remove_host(&dwsmmio->dws);
Jarkko Nikulab9fc2d22019-10-18 16:21:29 +0300243 pm_runtime_disable(&pdev->dev);
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000244 clk_disable_unprepare(dwsmmio->pclk);
Marek Vasut400c18e2017-04-18 20:09:06 +0200245 clk_disable_unprepare(dwsmmio->clk);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700246
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700247 return 0;
248}
249
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200250static const struct of_device_id dw_spi_mmio_of_match[] = {
Wan Ahmad Zainiec4eadee2020-05-05 21:06:13 +0800251 { .compatible = "snps,dw-apb-ssi", .data = dw_spi_dw_apb_init},
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200252 { .compatible = "mscc,ocelot-spi", .data = dw_spi_mscc_ocelot_init},
253 { .compatible = "mscc,jaguar2-spi", .data = dw_spi_mscc_jaguar2_init},
Talel Shenharf2d70472018-10-11 14:20:07 +0300254 { .compatible = "amazon,alpine-dw-apb-ssi", .data = dw_spi_alpine_init},
Wan Ahmad Zainiec4eadee2020-05-05 21:06:13 +0800255 { .compatible = "renesas,rzn1-spi", .data = dw_spi_dw_apb_init},
Wan Ahmad Zainiee539f432020-05-05 21:06:14 +0800256 { .compatible = "snps,dwc-ssi-1.01a", .data = dw_spi_dwc_ssi_init},
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200257 { /* end of table */}
258};
259MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match);
260
Jay Fang32215a62018-12-03 11:15:50 +0800261static const struct acpi_device_id dw_spi_mmio_acpi_match[] = {
Wan Ahmad Zainiec4eadee2020-05-05 21:06:13 +0800262 {"HISI0173", (kernel_ulong_t)dw_spi_dw_apb_init},
Jay Fang32215a62018-12-03 11:15:50 +0800263 {},
264};
265MODULE_DEVICE_TABLE(acpi, dw_spi_mmio_acpi_match);
266
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700267static struct platform_driver dw_spi_mmio_driver = {
Grant Likely940ab882011-10-05 11:29:49 -0600268 .probe = dw_spi_mmio_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000269 .remove = dw_spi_mmio_remove,
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700270 .driver = {
271 .name = DRIVER_NAME,
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200272 .of_match_table = dw_spi_mmio_of_match,
Jay Fang32215a62018-12-03 11:15:50 +0800273 .acpi_match_table = ACPI_PTR(dw_spi_mmio_acpi_match),
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700274 },
275};
Grant Likely940ab882011-10-05 11:29:49 -0600276module_platform_driver(dw_spi_mmio_driver);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700277
278MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
279MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
280MODULE_LICENSE("GPL v2");