1 // SPDX-License-Identifier: GPL-2.0-only
3 * FPGA Manager Driver for Lattice iCE40.
5 * Copyright (c) 2016 Joel Holdsworth
7 * This driver adds support to the FPGA manager for configuring the SRAM of
8 * Lattice iCE40 FPGAs through slave SPI.
11 #include <linux/fpga/fpga-mgr.h>
12 #include <linux/gpio/consumer.h>
13 #include <linux/module.h>
14 #include <linux/of_gpio.h>
15 #include <linux/spi/spi.h>
16 #include <linux/stringify.h>
18 #define ICE40_SPI_MAX_SPEED 25000000 /* Hz */
19 #define ICE40_SPI_MIN_SPEED 1000000 /* Hz */
21 #define ICE40_SPI_RESET_DELAY 1 /* us (>200ns) */
22 #define ICE40_SPI_HOUSEKEEPING_DELAY 1200 /* us */
24 #define ICE40_SPI_NUM_ACTIVATION_BYTES DIV_ROUND_UP(49, 8)
26 struct ice40_fpga_priv {
27 struct spi_device *dev;
28 struct gpio_desc *reset;
29 struct gpio_desc *cdone;
32 static enum fpga_mgr_states ice40_fpga_ops_state(struct fpga_manager *mgr)
34 struct ice40_fpga_priv *priv = mgr->priv;
36 return gpiod_get_value(priv->cdone) ? FPGA_MGR_STATE_OPERATING :
37 FPGA_MGR_STATE_UNKNOWN;
40 static int ice40_fpga_ops_write_init(struct fpga_manager *mgr,
41 struct fpga_image_info *info,
42 const char *buf, size_t count)
44 struct ice40_fpga_priv *priv = mgr->priv;
45 struct spi_device *dev = priv->dev;
46 struct spi_message message;
47 struct spi_transfer assert_cs_then_reset_delay = {
49 .delay_usecs = ICE40_SPI_RESET_DELAY
51 struct spi_transfer housekeeping_delay_then_release_cs = {
52 .delay_usecs = ICE40_SPI_HOUSEKEEPING_DELAY
56 if ((info->flags & FPGA_MGR_PARTIAL_RECONFIG)) {
58 "Partial reconfiguration is not supported\n");
62 /* Lock the bus, assert CRESET_B and SS_B and delay >200ns */
63 spi_bus_lock(dev->master);
65 gpiod_set_value(priv->reset, 1);
67 spi_message_init(&message);
68 spi_message_add_tail(&assert_cs_then_reset_delay, &message);
69 ret = spi_sync_locked(dev, &message);
71 /* Come out of reset */
72 gpiod_set_value(priv->reset, 0);
74 /* Abort if the chip-select failed */
78 /* Check CDONE is de-asserted i.e. the FPGA is reset */
79 if (gpiod_get_value(priv->cdone)) {
80 dev_err(&dev->dev, "Device reset failed, CDONE is asserted\n");
85 /* Wait for the housekeeping to complete, and release SS_B */
86 spi_message_init(&message);
87 spi_message_add_tail(&housekeeping_delay_then_release_cs, &message);
88 ret = spi_sync_locked(dev, &message);
91 spi_bus_unlock(dev->master);
96 static int ice40_fpga_ops_write(struct fpga_manager *mgr,
97 const char *buf, size_t count)
99 struct ice40_fpga_priv *priv = mgr->priv;
101 return spi_write(priv->dev, buf, count);
104 static int ice40_fpga_ops_write_complete(struct fpga_manager *mgr,
105 struct fpga_image_info *info)
107 struct ice40_fpga_priv *priv = mgr->priv;
108 struct spi_device *dev = priv->dev;
109 const u8 padding[ICE40_SPI_NUM_ACTIVATION_BYTES] = {0};
111 /* Check CDONE is asserted */
112 if (!gpiod_get_value(priv->cdone)) {
114 "CDONE was not asserted after firmware transfer\n");
118 /* Send of zero-padding to activate the firmware */
119 return spi_write(dev, padding, sizeof(padding));
122 static const struct fpga_manager_ops ice40_fpga_ops = {
123 .state = ice40_fpga_ops_state,
124 .write_init = ice40_fpga_ops_write_init,
125 .write = ice40_fpga_ops_write,
126 .write_complete = ice40_fpga_ops_write_complete,
129 static int ice40_fpga_probe(struct spi_device *spi)
131 struct device *dev = &spi->dev;
132 struct ice40_fpga_priv *priv;
133 struct fpga_manager *mgr;
136 priv = devm_kzalloc(&spi->dev, sizeof(*priv), GFP_KERNEL);
142 /* Check board setup data. */
143 if (spi->max_speed_hz > ICE40_SPI_MAX_SPEED) {
144 dev_err(dev, "SPI speed is too high, maximum speed is "
145 __stringify(ICE40_SPI_MAX_SPEED) "\n");
149 if (spi->max_speed_hz < ICE40_SPI_MIN_SPEED) {
150 dev_err(dev, "SPI speed is too low, minimum speed is "
151 __stringify(ICE40_SPI_MIN_SPEED) "\n");
155 if (spi->mode & SPI_CPHA) {
156 dev_err(dev, "Bad SPI mode, CPHA not supported\n");
160 /* Set up the GPIOs */
161 priv->cdone = devm_gpiod_get(dev, "cdone", GPIOD_IN);
162 if (IS_ERR(priv->cdone)) {
163 ret = PTR_ERR(priv->cdone);
164 dev_err(dev, "Failed to get CDONE GPIO: %d\n", ret);
168 priv->reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
169 if (IS_ERR(priv->reset)) {
170 ret = PTR_ERR(priv->reset);
171 dev_err(dev, "Failed to get CRESET_B GPIO: %d\n", ret);
175 mgr = devm_fpga_mgr_create(dev, "Lattice iCE40 FPGA Manager",
176 &ice40_fpga_ops, priv);
180 spi_set_drvdata(spi, mgr);
182 return fpga_mgr_register(mgr);
185 static int ice40_fpga_remove(struct spi_device *spi)
187 struct fpga_manager *mgr = spi_get_drvdata(spi);
189 fpga_mgr_unregister(mgr);
194 static const struct of_device_id ice40_fpga_of_match[] = {
195 { .compatible = "lattice,ice40-fpga-mgr", },
198 MODULE_DEVICE_TABLE(of, ice40_fpga_of_match);
200 static struct spi_driver ice40_fpga_driver = {
201 .probe = ice40_fpga_probe,
202 .remove = ice40_fpga_remove,
205 .of_match_table = of_match_ptr(ice40_fpga_of_match),
209 module_spi_driver(ice40_fpga_driver);
212 MODULE_DESCRIPTION("Lattice iCE40 FPGA Manager");
213 MODULE_LICENSE("GPL v2");