Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
dd2784c
Documentation
LICENSES
arch
block
certs
crypto
drivers
accessibility
acpi
amba
android
ata
atm
auxdisplay
base
bcma
block
bluetooth
bus
cdrom
char
clk
clocksource
connector
counter
cpufreq
cpuidle
crypto
dax
dca
devfreq
dio
dma-buf
dma
edac
eisa
extcon
firewire
firmware
fpga
Kconfig
Makefile
altera-cvp.c
altera-fpga2sdram.c
altera-freeze-bridge.c
altera-hps2fpga.c
altera-pr-ip-core-plat.c
altera-pr-ip-core.c
altera-ps-spi.c
dfl-afu-dma-region.c
dfl-afu-error.c
dfl-afu-main.c
dfl-afu-region.c
dfl-afu.h
dfl-fme-br.c
dfl-fme-error.c
dfl-fme-main.c
dfl-fme-mgr.c
dfl-fme-perf.c
dfl-fme-pr.c
dfl-fme-pr.h
dfl-fme-region.c
dfl-fme.h
dfl-pci.c
dfl.c
dfl.h
fpga-bridge.c
fpga-mgr.c
fpga-region.c
ice40-spi.c
machxo2-spi.c
of-fpga-region.c
socfpga-a10.c
socfpga.c
stratix10-soc.c
ts73xx-fpga.c
xilinx-pr-decoupler.c
xilinx-spi.c
zynq-fpga.c
zynqmp-fpga.c
fsi
gnss
gpio
gpu
greybus
hid
hsi
hv
hwmon
hwspinlock
hwtracing
i2c
i3c
ide
idle
iio
infiniband
input
interconnect
iommu
ipack
irqchip
isdn
leds
lightnvm
macintosh
mailbox
mcb
md
media
memory
memstick
message
mfd
misc
mmc
most
mtd
mux
net
nfc
ntb
nubus
nvdimm
nvme
nvmem
of
opp
oprofile
parisc
parport
pci
pcmcia
perf
phy
pinctrl
platform
pnp
power
powercap
pps
ps3
ptp
pwm
rapidio
ras
regulator
remoteproc
reset
rpmsg
rtc
s390
sbus
scsi
sfi
sh
siox
slimbus
soc
soundwire
spi
spmi
ssb
staging
target
tc
tee
thermal
thunderbolt
tty
uio
usb
vdpa
vfio
vhost
video
virt
virtio
visorbus
vlynq
vme
w1
watchdog
xen
zorro
Kconfig
Makefile
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
drivers
/
fpga
/
xilinx-spi.c
Blame
Blame
Latest commit
History
History
256 lines (207 loc) · 6.04 KB
Breadcrumbs
linux
/
drivers
/
fpga
/
xilinx-spi.c
Top
File metadata and controls
Code
Blame
256 lines (207 loc) · 6.04 KB
Raw
// SPDX-License-Identifier: GPL-2.0-only /* * Xilinx Spartan6 and 7 Series Slave Serial SPI Driver * * Copyright (C) 2017 DENX Software Engineering * * Anatolij Gustschin <agust@denx.de> * * Manage Xilinx FPGA firmware that is loaded over SPI using * the slave serial configuration interface. */ #include <linux/delay.h> #include <linux/device.h> #include <linux/fpga/fpga-mgr.h> #include <linux/gpio/consumer.h> #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/of.h> #include <linux/spi/spi.h> #include <linux/sizes.h> struct xilinx_spi_conf { struct spi_device *spi; struct gpio_desc *prog_b; struct gpio_desc *init_b; struct gpio_desc *done; }; static enum fpga_mgr_states xilinx_spi_state(struct fpga_manager *mgr) { struct xilinx_spi_conf *conf = mgr->priv; if (!gpiod_get_value(conf->done)) return FPGA_MGR_STATE_RESET; return FPGA_MGR_STATE_UNKNOWN; } /** * wait_for_init_b - wait for the INIT_B pin to have a given state, or wait * a given delay if the pin is unavailable * * @mgr: The FPGA manager object * @value: Value INIT_B to wait for (1 = asserted = low) * @alt_udelay: Delay to wait if the INIT_B GPIO is not available * * Returns 0 when the INIT_B GPIO reached the given state or -ETIMEDOUT if * too much time passed waiting for that. If no INIT_B GPIO is available * then always return 0. */ static int wait_for_init_b(struct fpga_manager *mgr, int value, unsigned long alt_udelay) { struct xilinx_spi_conf *conf = mgr->priv; unsigned long timeout = jiffies + msecs_to_jiffies(1000); if (conf->init_b) { while (time_before(jiffies, timeout)) { /* dump_state(conf, "wait for init_d .."); */ if (gpiod_get_value(conf->init_b) == value) return 0; usleep_range(100, 400); } return -ETIMEDOUT; } udelay(alt_udelay); return 0; } static int xilinx_spi_write_init(struct fpga_manager *mgr, struct fpga_image_info *info, const char *buf, size_t count) { struct xilinx_spi_conf *conf = mgr->priv; int err; if (info->flags & FPGA_MGR_PARTIAL_RECONFIG) { dev_err(&mgr->dev, "Partial reconfiguration not supported.\n"); return -EINVAL; } gpiod_set_value(conf->prog_b, 1); err = wait_for_init_b(mgr, 1, 1); /* min is 500 ns */ if (err) { dev_err(&mgr->dev, "INIT_B pin did not go low\n"); gpiod_set_value(conf->prog_b, 0); return err; } gpiod_set_value(conf->prog_b, 0); err = wait_for_init_b(mgr, 0, 0); if (err) { dev_err(&mgr->dev, "INIT_B pin did not go high\n"); return err; } if (gpiod_get_value(conf->done)) { dev_err(&mgr->dev, "Unexpected DONE pin state...\n"); return -EIO; } /* program latency */ usleep_range(7500, 7600); return 0; } static int xilinx_spi_write(struct fpga_manager *mgr, const char *buf, size_t count) { struct xilinx_spi_conf *conf = mgr->priv; const char *fw_data = buf; const char *fw_data_end = fw_data + count; while (fw_data < fw_data_end) { size_t remaining, stride; int ret; remaining = fw_data_end - fw_data; stride = min_t(size_t, remaining, SZ_4K); ret = spi_write(conf->spi, fw_data, stride); if (ret) { dev_err(&mgr->dev, "SPI error in firmware write: %d\n", ret); return ret; } fw_data += stride; } return 0; } static int xilinx_spi_apply_cclk_cycles(struct xilinx_spi_conf *conf) { struct spi_device *spi = conf->spi; const u8 din_data[1] = { 0xff }; int ret; ret = spi_write(conf->spi, din_data, sizeof(din_data)); if (ret) dev_err(&spi->dev, "applying CCLK cycles failed: %d\n", ret); return ret; } static int xilinx_spi_write_complete(struct fpga_manager *mgr, struct fpga_image_info *info) { struct xilinx_spi_conf *conf = mgr->priv; unsigned long timeout; int ret; if (gpiod_get_value(conf->done)) return xilinx_spi_apply_cclk_cycles(conf); timeout = jiffies + usecs_to_jiffies(info->config_complete_timeout_us); while (time_before(jiffies, timeout)) { ret = xilinx_spi_apply_cclk_cycles(conf); if (ret) return ret; if (gpiod_get_value(conf->done)) return xilinx_spi_apply_cclk_cycles(conf); } dev_err(&mgr->dev, "Timeout after config data transfer.\n"); return -ETIMEDOUT; } static const struct fpga_manager_ops xilinx_spi_ops = { .state = xilinx_spi_state, .write_init = xilinx_spi_write_init, .write = xilinx_spi_write, .write_complete = xilinx_spi_write_complete, }; static int xilinx_spi_probe(struct spi_device *spi) { struct xilinx_spi_conf *conf; struct fpga_manager *mgr; conf = devm_kzalloc(&spi->dev, sizeof(*conf), GFP_KERNEL); if (!conf) return -ENOMEM; conf->spi = spi; /* PROGRAM_B is active low */ conf->prog_b = devm_gpiod_get(&spi->dev, "prog_b", GPIOD_OUT_LOW); if (IS_ERR(conf->prog_b)) { dev_err(&spi->dev, "Failed to get PROGRAM_B gpio: %ld\n", PTR_ERR(conf->prog_b)); return PTR_ERR(conf->prog_b); } conf->init_b = devm_gpiod_get_optional(&spi->dev, "init-b", GPIOD_IN); if (IS_ERR(conf->init_b)) { dev_err(&spi->dev, "Failed to get INIT_B gpio: %ld\n", PTR_ERR(conf->init_b)); return PTR_ERR(conf->init_b); } conf->done = devm_gpiod_get(&spi->dev, "done", GPIOD_IN); if (IS_ERR(conf->done)) { dev_err(&spi->dev, "Failed to get DONE gpio: %ld\n", PTR_ERR(conf->done)); return PTR_ERR(conf->done); } mgr = devm_fpga_mgr_create(&spi->dev, "Xilinx Slave Serial FPGA Manager", &xilinx_spi_ops, conf); if (!mgr) return -ENOMEM; spi_set_drvdata(spi, mgr); return fpga_mgr_register(mgr); } static int xilinx_spi_remove(struct spi_device *spi) { struct fpga_manager *mgr = spi_get_drvdata(spi); fpga_mgr_unregister(mgr); return 0; } static const struct of_device_id xlnx_spi_of_match[] = { { .compatible = "xlnx,fpga-slave-serial", }, {} }; MODULE_DEVICE_TABLE(of, xlnx_spi_of_match); static struct spi_driver xilinx_slave_spi_driver = { .driver = { .name = "xlnx-slave-spi", .of_match_table = of_match_ptr(xlnx_spi_of_match), }, .probe = xilinx_spi_probe, .remove = xilinx_spi_remove, }; module_spi_driver(xilinx_slave_spi_driver) MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>"); MODULE_DESCRIPTION("Load Xilinx FPGA firmware over SPI");
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
You can’t perform that action at this time.