1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
10 #include <linux/errno.h>
12 /* Write the RBF data to FPGA via SPI */
13 static int program_write(int spi_bus, int spi_dev, const void *rbf_data,
14 unsigned long rbf_size)
16 struct spi_slave *slave;
19 debug("%s (%d): data=%p size=%ld\n",
20 __func__, __LINE__, rbf_data, rbf_size);
22 /* FIXME: How to get the max. SPI clock and SPI mode? */
23 slave = spi_setup_slave(spi_bus, spi_dev, 27777777, SPI_MODE_3);
27 if (spi_claim_bus(slave))
30 ret = spi_xfer(slave, rbf_size * 8, rbf_data, (void *)rbf_data,
31 SPI_XFER_BEGIN | SPI_XFER_END);
33 spi_release_bus(slave);
39 * This is the interface used by FPGA driver.
40 * Return 0 for sucess, non-zero for error.
42 int stratixv_load(Altera_desc *desc, const void *rbf_data, size_t rbf_size)
44 altera_board_specific_func *pfns = desc->iface_fns;
45 int cookie = desc->cookie;
50 if ((u32)rbf_data & 0x3) {
51 puts("FPGA: Unaligned data, realign to 32bit boundary.\n");
55 /* Run the pre configuration function if there is one */
59 /* Establish the initial state */
61 /* De-assert nCONFIG */
62 (pfns->config)(false, true, cookie);
64 /* nConfig minimum low pulse width is 2us */
68 (pfns->config)(true, true, cookie);
70 /* nCONFIG high to first rising clock on DCLK min 1506 us */
74 /* Write the RBF data to FPGA */
77 * Use board specific data function to write bitstream
80 ret = (pfns->write)(rbf_data, rbf_size, true, cookie);
83 * Use common SPI functions to write bitstream into the
86 spi_bus = COOKIE2SPI_BUS(cookie);
87 spi_dev = COOKIE2SPI_DEV(cookie);
88 ret = program_write(spi_bus, spi_dev, rbf_data, rbf_size);
95 ret = (pfns->done)(cookie);
98 printf("Error: DONE not set (ret=%d)!\n", ret);