blob: 4fa7e7a52ebd18058f4c7c785a110ccb57ab4bd2 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070013#include <linux/spi/spi.h>
Grant Likely568a60e2011-02-28 12:47:12 -070014#include <linux/scatterlist.h>
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020015#include <linux/mfd/syscon.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040016#include <linux/module.h>
Steffen Trumtrar22dae172014-06-13 15:36:18 +020017#include <linux/of.h>
Steffen Trumtrar22dae172014-06-13 15:36:18 +020018#include <linux/of_platform.h>
Jay Fang32215a62018-12-03 11:15:50 +080019#include <linux/acpi.h>
Andy Shevchenko98999952015-10-14 23:12:25 +030020#include <linux/property.h>
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020021#include <linux/regmap.h>
Grant Likely568a60e2011-02-28 12:47:12 -070022
Grant Likelyca632f52011-06-06 01:16:30 -060023#include "spi-dw.h"
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070024
25#define DRIVER_NAME "dw_spi_mmio"
26
27struct dw_spi_mmio {
Jean-Hugues Deschenes0a4c1d72010-01-21 09:55:42 -070028 struct dw_spi dws;
29 struct clk *clk;
Phil Edworthy560ee7e2019-03-19 15:52:07 +000030 struct clk *pclk;
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020031 void *priv;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -070032};
33
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020034#define MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL 0x24
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020035#define OCELOT_IF_SI_OWNER_OFFSET 4
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020036#define JAGUAR2_IF_SI_OWNER_OFFSET 6
Alexandre Bellonic1d8b082018-08-31 13:40:46 +020037#define MSCC_IF_SI_OWNER_MASK GENMASK(1, 0)
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020038#define MSCC_IF_SI_OWNER_SISL 0
39#define MSCC_IF_SI_OWNER_SIBM 1
40#define MSCC_IF_SI_OWNER_SIMC 2
41
42#define MSCC_SPI_MST_SW_MODE 0x14
43#define MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE BIT(13)
44#define MSCC_SPI_MST_SW_MODE_SW_SPI_CS(x) (x << 5)
45
46struct dw_spi_mscc {
47 struct regmap *syscon;
48 void __iomem *spi_mst;
49};
50
51/*
52 * The Designware SPI controller (referred to as master in the documentation)
53 * automatically deasserts chip select when the tx fifo is empty. The chip
54 * selects then needs to be either driven as GPIOs or, for the first 4 using the
55 * the SPI boot controller registers. the final chip select is an OR gate
56 * between the Designware SPI controller and the SPI boot controller.
57 */
58static void dw_spi_mscc_set_cs(struct spi_device *spi, bool enable)
59{
60 struct dw_spi *dws = spi_master_get_devdata(spi->master);
61 struct dw_spi_mmio *dwsmmio = container_of(dws, struct dw_spi_mmio, dws);
62 struct dw_spi_mscc *dwsmscc = dwsmmio->priv;
63 u32 cs = spi->chip_select;
64
65 if (cs < 4) {
66 u32 sw_mode = MSCC_SPI_MST_SW_MODE_SW_PIN_CTRL_MODE;
67
68 if (!enable)
69 sw_mode |= MSCC_SPI_MST_SW_MODE_SW_SPI_CS(BIT(cs));
70
71 writel(sw_mode, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE);
72 }
73
74 dw_spi_set_cs(spi, enable);
75}
76
77static int dw_spi_mscc_init(struct platform_device *pdev,
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020078 struct dw_spi_mmio *dwsmmio,
79 const char *cpu_syscon, u32 if_si_owner_offset)
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020080{
81 struct dw_spi_mscc *dwsmscc;
82 struct resource *res;
83
84 dwsmscc = devm_kzalloc(&pdev->dev, sizeof(*dwsmscc), GFP_KERNEL);
85 if (!dwsmscc)
86 return -ENOMEM;
87
88 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
89 dwsmscc->spi_mst = devm_ioremap_resource(&pdev->dev, res);
90 if (IS_ERR(dwsmscc->spi_mst)) {
91 dev_err(&pdev->dev, "SPI_MST region map failed\n");
92 return PTR_ERR(dwsmscc->spi_mst);
93 }
94
Alexandre Bellonibe17ee02018-08-29 14:45:48 +020095 dwsmscc->syscon = syscon_regmap_lookup_by_compatible(cpu_syscon);
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +020096 if (IS_ERR(dwsmscc->syscon))
97 return PTR_ERR(dwsmscc->syscon);
98
99 /* Deassert all CS */
100 writel(0, dwsmscc->spi_mst + MSCC_SPI_MST_SW_MODE);
101
102 /* Select the owner of the SI interface */
103 regmap_update_bits(dwsmscc->syscon, MSCC_CPU_SYSTEM_CTRL_GENERAL_CTRL,
Alexandre Bellonic1d8b082018-08-31 13:40:46 +0200104 MSCC_IF_SI_OWNER_MASK << if_si_owner_offset,
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200105 MSCC_IF_SI_OWNER_SIMC << if_si_owner_offset);
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200106
107 dwsmmio->dws.set_cs = dw_spi_mscc_set_cs;
108 dwsmmio->priv = dwsmscc;
109
110 return 0;
111}
112
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200113static int dw_spi_mscc_ocelot_init(struct platform_device *pdev,
114 struct dw_spi_mmio *dwsmmio)
115{
116 return dw_spi_mscc_init(pdev, dwsmmio, "mscc,ocelot-cpu-syscon",
117 OCELOT_IF_SI_OWNER_OFFSET);
118}
119
120static int dw_spi_mscc_jaguar2_init(struct platform_device *pdev,
121 struct dw_spi_mmio *dwsmmio)
122{
123 return dw_spi_mscc_init(pdev, dwsmmio, "mscc,jaguar2-cpu-syscon",
124 JAGUAR2_IF_SI_OWNER_OFFSET);
125}
126
Talel Shenharf2d70472018-10-11 14:20:07 +0300127static int dw_spi_alpine_init(struct platform_device *pdev,
128 struct dw_spi_mmio *dwsmmio)
129{
130 dwsmmio->dws.cs_override = 1;
131
132 return 0;
133}
134
Grant Likelyfd4a3192012-12-07 16:57:14 +0000135static int dw_spi_mmio_probe(struct platform_device *pdev)
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700136{
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200137 int (*init_func)(struct platform_device *pdev,
138 struct dw_spi_mmio *dwsmmio);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700139 struct dw_spi_mmio *dwsmmio;
140 struct dw_spi *dws;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700141 int ret;
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200142 int num_cs;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700143
Baruch Siach04f421e2013-12-30 20:30:44 +0200144 dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio),
145 GFP_KERNEL);
146 if (!dwsmmio)
147 return -ENOMEM;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700148
149 dws = &dwsmmio->dws;
150
151 /* Get basic io resource and map it */
Andy Shevchenko05210502019-07-10 14:42:30 +0300152 dws->regs = devm_platform_ioremap_resource(pdev, 0);
Baruch Siach04f421e2013-12-30 20:30:44 +0200153 if (IS_ERR(dws->regs)) {
154 dev_err(&pdev->dev, "SPI region map failed\n");
155 return PTR_ERR(dws->regs);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700156 }
157
158 dws->irq = platform_get_irq(pdev, 0);
159 if (dws->irq < 0) {
160 dev_err(&pdev->dev, "no irq resource?\n");
Baruch Siach04f421e2013-12-30 20:30:44 +0200161 return dws->irq; /* -ENXIO */
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700162 }
163
Baruch Siach04f421e2013-12-30 20:30:44 +0200164 dwsmmio->clk = devm_clk_get(&pdev->dev, NULL);
165 if (IS_ERR(dwsmmio->clk))
166 return PTR_ERR(dwsmmio->clk);
Baruch Siach020fe3f2013-12-30 20:30:45 +0200167 ret = clk_prepare_enable(dwsmmio->clk);
Baruch Siach04f421e2013-12-30 20:30:44 +0200168 if (ret)
169 return ret;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700170
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000171 /* Optional clock needed to access the registers */
172 dwsmmio->pclk = devm_clk_get_optional(&pdev->dev, "pclk");
Andy Shevchenko3da98342019-07-10 14:42:43 +0300173 if (IS_ERR(dwsmmio->pclk)) {
174 ret = PTR_ERR(dwsmmio->pclk);
175 goto out_clk;
176 }
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000177 ret = clk_prepare_enable(dwsmmio->pclk);
178 if (ret)
179 goto out_clk;
180
Baruch Siach2418991e2014-01-26 10:14:32 +0200181 dws->bus_num = pdev->id;
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200182
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700183 dws->max_freq = clk_get_rate(dwsmmio->clk);
184
Andy Shevchenko98999952015-10-14 23:12:25 +0300185 device_property_read_u32(&pdev->dev, "reg-io-width", &dws->reg_io_width);
Michael van der Westhuizenc4fe57f2015-08-18 22:21:53 +0200186
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200187 num_cs = 4;
188
Andy Shevchenko98999952015-10-14 23:12:25 +0300189 device_property_read_u32(&pdev->dev, "num-cs", &num_cs);
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200190
191 dws->num_cs = num_cs;
192
Alexandre Bellonic2c25cc2018-07-27 21:53:56 +0200193 init_func = device_get_match_data(&pdev->dev);
194 if (init_func) {
195 ret = init_func(pdev, dwsmmio);
196 if (ret)
197 goto out;
198 }
199
Baruch Siach04f421e2013-12-30 20:30:44 +0200200 ret = dw_spi_add_host(&pdev->dev, dws);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700201 if (ret)
Baruch Siach04f421e2013-12-30 20:30:44 +0200202 goto out;
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700203
204 platform_set_drvdata(pdev, dwsmmio);
205 return 0;
206
Baruch Siach04f421e2013-12-30 20:30:44 +0200207out:
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000208 clk_disable_unprepare(dwsmmio->pclk);
209out_clk:
Baruch Siach020fe3f2013-12-30 20:30:45 +0200210 clk_disable_unprepare(dwsmmio->clk);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700211 return ret;
212}
213
Grant Likelyfd4a3192012-12-07 16:57:14 +0000214static int dw_spi_mmio_remove(struct platform_device *pdev)
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700215{
216 struct dw_spi_mmio *dwsmmio = platform_get_drvdata(pdev);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700217
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700218 dw_spi_remove_host(&dwsmmio->dws);
Phil Edworthy560ee7e2019-03-19 15:52:07 +0000219 clk_disable_unprepare(dwsmmio->pclk);
Marek Vasut400c18e2017-04-18 20:09:06 +0200220 clk_disable_unprepare(dwsmmio->clk);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700221
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700222 return 0;
223}
224
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200225static const struct of_device_id dw_spi_mmio_of_match[] = {
226 { .compatible = "snps,dw-apb-ssi", },
Alexandre Bellonibe17ee02018-08-29 14:45:48 +0200227 { .compatible = "mscc,ocelot-spi", .data = dw_spi_mscc_ocelot_init},
228 { .compatible = "mscc,jaguar2-spi", .data = dw_spi_mscc_jaguar2_init},
Talel Shenharf2d70472018-10-11 14:20:07 +0300229 { .compatible = "amazon,alpine-dw-apb-ssi", .data = dw_spi_alpine_init},
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200230 { /* end of table */}
231};
232MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match);
233
Jay Fang32215a62018-12-03 11:15:50 +0800234static const struct acpi_device_id dw_spi_mmio_acpi_match[] = {
235 {"HISI0173", 0},
236 {},
237};
238MODULE_DEVICE_TABLE(acpi, dw_spi_mmio_acpi_match);
239
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700240static struct platform_driver dw_spi_mmio_driver = {
Grant Likely940ab882011-10-05 11:29:49 -0600241 .probe = dw_spi_mmio_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000242 .remove = dw_spi_mmio_remove,
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700243 .driver = {
244 .name = DRIVER_NAME,
Steffen Trumtrar22dae172014-06-13 15:36:18 +0200245 .of_match_table = dw_spi_mmio_of_match,
Jay Fang32215a62018-12-03 11:15:50 +0800246 .acpi_match_table = ACPI_PTR(dw_spi_mmio_acpi_match),
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700247 },
248};
Grant Likely940ab882011-10-05 11:29:49 -0600249module_platform_driver(dw_spi_mmio_driver);
Jean-Hugues Deschenesf7b6fd62010-01-21 07:46:42 -0700250
251MODULE_AUTHOR("Jean-Hugues Deschenes <jean-hugues.deschenes@octasic.com>");
252MODULE_DESCRIPTION("Memory-mapped I/O interface driver for DW SPI Core");
253MODULE_LICENSE("GPL v2");