2 * CARMA Board DATA-FPGA Programmer
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/dma-mapping.h>
13 #include <linux/of_platform.h>
14 #include <linux/completion.h>
15 #include <linux/miscdevice.h>
16 #include <linux/dmaengine.h>
17 #include <linux/interrupt.h>
18 #include <linux/highmem.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include <linux/delay.h>
23 #include <linux/init.h>
24 #include <linux/leds.h>
25 #include <linux/slab.h>
26 #include <linux/kref.h>
30 #include <media/videobuf-dma-sg.h>
32 /* MPC8349EMDS specific get_immrbase() */
33 #include <sysdev/fsl_soc.h>
35 static const char drv_name[] = "carma-fpga-program";
38 * Firmware images are always this exact size
40 * 12849552 bytes for a CARMA Digitizer Board (EP2S90 FPGAs)
41 * 18662880 bytes for a CARMA Correlator Board (EP2S130 FPGAs)
43 #define FW_SIZE_EP2S90 12849552
44 #define FW_SIZE_EP2S130 18662880
47 struct miscdevice miscdev;
52 /* Device Registers */
57 /* Freescale DMA Device */
58 struct dma_chan *chan;
62 struct completion completion;
67 struct videobuf_dmabuf vb;
70 /* max size and written bytes */
76 * FPGA Bitfile Helpers
80 * fpga_drop_firmware_data() - drop the bitfile image from memory
81 * @priv: the driver's private data structure
83 * LOCKING: must hold priv->lock
85 static void fpga_drop_firmware_data(struct fpga_dev *priv)
87 videobuf_dma_free(&priv->vb);
88 priv->vb_allocated = false;
93 * Private Data Reference Count
96 static void fpga_dev_remove(struct kref *ref)
98 struct fpga_dev *priv = container_of(ref, struct fpga_dev, ref);
100 /* free any firmware image that was not programmed */
101 fpga_drop_firmware_data(priv);
103 mutex_destroy(&priv->lock);
108 * LED Trigger (could be a seperate module)
112 * NOTE: this whole thing does have the problem that whenever the led's are
113 * NOTE: first set to use the fpga trigger, they could be in the wrong state
116 DEFINE_LED_TRIGGER(ledtrig_fpga);
118 static void ledtrig_fpga_programmed(bool enabled)
121 led_trigger_event(ledtrig_fpga, LED_FULL);
123 led_trigger_event(ledtrig_fpga, LED_OFF);
127 * FPGA Register Helpers
130 /* Register Definitions */
131 #define FPGA_CONFIG_CONTROL 0x40
132 #define FPGA_CONFIG_STATUS 0x44
133 #define FPGA_CONFIG_FIFO_SIZE 0x48
134 #define FPGA_CONFIG_FIFO_USED 0x4C
135 #define FPGA_CONFIG_TOTAL_BYTE_COUNT 0x50
136 #define FPGA_CONFIG_CUR_BYTE_COUNT 0x54
138 #define FPGA_FIFO_ADDRESS 0x3000
140 static int fpga_fifo_size(void __iomem *regs)
142 return ioread32be(regs + FPGA_CONFIG_FIFO_SIZE);
145 #define CFG_STATUS_ERR_MASK 0xfffe
147 static int fpga_config_error(void __iomem *regs)
149 return ioread32be(regs + FPGA_CONFIG_STATUS) & CFG_STATUS_ERR_MASK;
152 static int fpga_fifo_empty(void __iomem *regs)
154 return ioread32be(regs + FPGA_CONFIG_FIFO_USED) == 0;
157 static void fpga_fifo_write(void __iomem *regs, u32 val)
159 iowrite32be(val, regs + FPGA_FIFO_ADDRESS);
162 static void fpga_set_byte_count(void __iomem *regs, u32 count)
164 iowrite32be(count, regs + FPGA_CONFIG_TOTAL_BYTE_COUNT);
167 #define CFG_CTL_ENABLE (1 << 0)
168 #define CFG_CTL_RESET (1 << 1)
169 #define CFG_CTL_DMA (1 << 2)
171 static void fpga_programmer_enable(struct fpga_dev *priv, bool dma)
175 val = (dma) ? (CFG_CTL_ENABLE | CFG_CTL_DMA) : CFG_CTL_ENABLE;
176 iowrite32be(val, priv->regs + FPGA_CONFIG_CONTROL);
179 static void fpga_programmer_disable(struct fpga_dev *priv)
181 iowrite32be(0x0, priv->regs + FPGA_CONFIG_CONTROL);
184 static void fpga_dump_registers(struct fpga_dev *priv)
186 u32 control, status, size, used, total, curr;
188 /* good status: do nothing */
189 if (priv->status == 0)
192 /* Dump all status registers */
193 control = ioread32be(priv->regs + FPGA_CONFIG_CONTROL);
194 status = ioread32be(priv->regs + FPGA_CONFIG_STATUS);
195 size = ioread32be(priv->regs + FPGA_CONFIG_FIFO_SIZE);
196 used = ioread32be(priv->regs + FPGA_CONFIG_FIFO_USED);
197 total = ioread32be(priv->regs + FPGA_CONFIG_TOTAL_BYTE_COUNT);
198 curr = ioread32be(priv->regs + FPGA_CONFIG_CUR_BYTE_COUNT);
200 dev_err(priv->dev, "Configuration failed, dumping status registers\n");
201 dev_err(priv->dev, "Control: 0x%.8x\n", control);
202 dev_err(priv->dev, "Status: 0x%.8x\n", status);
203 dev_err(priv->dev, "FIFO Size: 0x%.8x\n", size);
204 dev_err(priv->dev, "FIFO Used: 0x%.8x\n", used);
205 dev_err(priv->dev, "FIFO Total: 0x%.8x\n", total);
206 dev_err(priv->dev, "FIFO Curr: 0x%.8x\n", curr);
210 * FPGA Power Supply Code
213 #define CTL_PWR_CONTROL 0x2006
214 #define CTL_PWR_STATUS 0x200A
215 #define CTL_PWR_FAIL 0x200B
217 #define PWR_CONTROL_ENABLE 0x01
219 #define PWR_STATUS_ERROR_MASK 0x10
220 #define PWR_STATUS_GOOD 0x0f
223 * Determine if the FPGA power is good for all supplies
225 static bool fpga_power_good(struct fpga_dev *priv)
229 val = ioread8(priv->regs + CTL_PWR_STATUS);
230 if (val & PWR_STATUS_ERROR_MASK)
233 return val == PWR_STATUS_GOOD;
237 * Disable the FPGA power supplies
239 static void fpga_disable_power_supplies(struct fpga_dev *priv)
244 iowrite8(0x0, priv->regs + CTL_PWR_CONTROL);
247 * Wait 500ms for the power rails to discharge
249 * Without this delay, the CTL-CPLD state machine can get into a
250 * state where it is waiting for the power-goods to assert, but they
251 * never do. This only happens when enabling and disabling the
252 * power sequencer very rapidly.
254 * The loop below will also wait for the power goods to de-assert,
255 * but testing has shown that they are always disabled by the time
256 * the sleep completes. However, omitting the sleep and only waiting
257 * for the power-goods to de-assert was not sufficient to ensure
258 * that the power sequencer would not wedge itself.
263 while (time_before(jiffies, start + HZ)) {
264 val = ioread8(priv->regs + CTL_PWR_STATUS);
265 if (!(val & PWR_STATUS_GOOD))
268 usleep_range(5000, 10000);
271 val = ioread8(priv->regs + CTL_PWR_STATUS);
272 if (val & PWR_STATUS_GOOD) {
273 dev_err(priv->dev, "power disable failed: "
274 "power goods: status 0x%.2x\n", val);
277 if (val & PWR_STATUS_ERROR_MASK) {
278 dev_err(priv->dev, "power disable failed: "
279 "alarm bit set: status 0x%.2x\n", val);
284 * fpga_enable_power_supplies() - enable the DATA-FPGA power supplies
285 * @priv: the driver's private data structure
287 * Enable the DATA-FPGA power supplies, waiting up to 1 second for
288 * them to enable successfully.
290 * Returns 0 on success, -ERRNO otherwise
292 static int fpga_enable_power_supplies(struct fpga_dev *priv)
294 unsigned long start = jiffies;
296 if (fpga_power_good(priv)) {
297 dev_dbg(priv->dev, "power was already good\n");
301 iowrite8(PWR_CONTROL_ENABLE, priv->regs + CTL_PWR_CONTROL);
302 while (time_before(jiffies, start + HZ)) {
303 if (fpga_power_good(priv))
306 usleep_range(5000, 10000);
309 return fpga_power_good(priv) ? 0 : -ETIMEDOUT;
313 * Determine if the FPGA power supplies are all enabled
315 static bool fpga_power_enabled(struct fpga_dev *priv)
319 val = ioread8(priv->regs + CTL_PWR_CONTROL);
320 if (val & PWR_CONTROL_ENABLE)
327 * Determine if the FPGA's are programmed and running correctly
329 static bool fpga_running(struct fpga_dev *priv)
331 if (!fpga_power_good(priv))
334 /* Check the config done bit */
335 return ioread32be(priv->regs + FPGA_CONFIG_STATUS) & (1 << 18);
339 * FPGA Programming Code
343 * fpga_program_block() - put a block of data into the programmer's FIFO
344 * @priv: the driver's private data structure
345 * @buf: the data to program
346 * @count: the length of data to program (must be a multiple of 4 bytes)
348 * Returns 0 on success, -ERRNO otherwise
350 static int fpga_program_block(struct fpga_dev *priv, void *buf, size_t count)
353 int size = fpga_fifo_size(priv->regs);
355 unsigned long timeout;
357 /* enforce correct data length for the FIFO */
358 BUG_ON(count % 4 != 0);
362 /* Get the size of the block to write (maximum is FIFO_SIZE) */
363 len = min_t(size_t, count, size);
364 timeout = jiffies + HZ / 4;
366 /* Write the block */
367 for (i = 0; i < len / 4; i++)
368 fpga_fifo_write(priv->regs, data[i]);
370 /* Update the amounts left */
374 /* Wait for the fifo to empty */
377 if (fpga_fifo_empty(priv->regs)) {
380 dev_dbg(priv->dev, "Fifo not empty\n");
384 if (fpga_config_error(priv->regs)) {
385 dev_err(priv->dev, "Error detected\n");
389 if (time_after(jiffies, timeout)) {
390 dev_err(priv->dev, "Fifo drain timeout\n");
394 usleep_range(5000, 10000);
402 * fpga_program_cpu() - program the DATA-FPGA's using the CPU
403 * @priv: the driver's private data structure
405 * This is useful when the DMA programming method fails. It is possible to
406 * wedge the Freescale DMA controller such that the DMA programming method
407 * always fails. This method has always succeeded.
409 * Returns 0 on success, -ERRNO otherwise
411 static noinline int fpga_program_cpu(struct fpga_dev *priv)
415 /* Disable the programmer */
416 fpga_programmer_disable(priv);
418 /* Set the total byte count */
419 fpga_set_byte_count(priv->regs, priv->bytes);
420 dev_dbg(priv->dev, "total byte count %u bytes\n", priv->bytes);
422 /* Enable the controller for programming */
423 fpga_programmer_enable(priv, false);
424 dev_dbg(priv->dev, "enabled the controller\n");
426 /* Write each chunk of the FPGA bitfile to FPGA programmer */
427 ret = fpga_program_block(priv, priv->vb.vaddr, priv->bytes);
429 goto out_disable_controller;
431 /* Wait for the interrupt handler to signal that programming finished */
432 ret = wait_for_completion_timeout(&priv->completion, 2 * HZ);
434 dev_err(priv->dev, "Timed out waiting for completion\n");
436 goto out_disable_controller;
439 /* Retrieve the status from the interrupt handler */
442 out_disable_controller:
443 fpga_programmer_disable(priv);
447 #define FIFO_DMA_ADDRESS 0xf0003000
448 #define FIFO_MAX_LEN 4096
451 * fpga_program_dma() - program the DATA-FPGA's using the DMA engine
452 * @priv: the driver's private data structure
454 * Program the DATA-FPGA's using the Freescale DMA engine. This requires that
455 * the engine is programmed such that the hardware DMA request lines can
456 * control the entire DMA transaction. The system controller FPGA then
457 * completely offloads the programming from the CPU.
459 * Returns 0 on success, -ERRNO otherwise
461 static noinline int fpga_program_dma(struct fpga_dev *priv)
463 struct videobuf_dmabuf *vb = &priv->vb;
464 struct dma_chan *chan = priv->chan;
465 struct dma_async_tx_descriptor *tx;
466 size_t num_pages, len, avail = 0;
467 struct dma_slave_config config;
468 struct scatterlist *sg;
469 struct sg_table table;
473 /* Disable the programmer */
474 fpga_programmer_disable(priv);
476 /* Allocate a scatterlist for the DMA destination */
477 num_pages = DIV_ROUND_UP(priv->bytes, FIFO_MAX_LEN);
478 ret = sg_alloc_table(&table, num_pages, GFP_KERNEL);
480 dev_err(priv->dev, "Unable to allocate dst scatterlist\n");
486 * This is an ugly hack
488 * We fill in a scatterlist as if it were mapped for DMA. This is
489 * necessary because there exists no better structure for this
490 * inside the kernel code.
492 * As an added bonus, we can use the DMAEngine API for all of this,
493 * rather than inventing another extremely similar API.
496 for_each_sg(table.sgl, sg, num_pages, i) {
497 len = min_t(size_t, avail, FIFO_MAX_LEN);
498 sg_dma_address(sg) = FIFO_DMA_ADDRESS;
499 sg_dma_len(sg) = len;
504 /* Map the buffer for DMA */
505 ret = videobuf_dma_map(priv->dev, &priv->vb);
507 dev_err(priv->dev, "Unable to map buffer for DMA\n");
512 * Configure the DMA channel to transfer FIFO_SIZE / 2 bytes per
513 * transaction, and then put it under external control
515 memset(&config, 0, sizeof(config));
516 config.direction = DMA_TO_DEVICE;
517 config.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
518 config.dst_maxburst = fpga_fifo_size(priv->regs) / 2 / 4;
519 ret = chan->device->device_control(chan, DMA_SLAVE_CONFIG,
520 (unsigned long)&config);
522 dev_err(priv->dev, "DMA slave configuration failed\n");
526 ret = chan->device->device_control(chan, FSLDMA_EXTERNAL_START, 1);
528 dev_err(priv->dev, "DMA external control setup failed\n");
532 /* setup and submit the DMA transaction */
533 tx = chan->device->device_prep_dma_sg(chan,
534 table.sgl, num_pages,
535 vb->sglist, vb->sglen, 0);
537 dev_err(priv->dev, "Unable to prep DMA transaction\n");
542 cookie = tx->tx_submit(tx);
543 if (dma_submit_error(cookie)) {
544 dev_err(priv->dev, "Unable to submit DMA transaction\n");
549 dma_async_memcpy_issue_pending(chan);
551 /* Set the total byte count */
552 fpga_set_byte_count(priv->regs, priv->bytes);
553 dev_dbg(priv->dev, "total byte count %u bytes\n", priv->bytes);
555 /* Enable the controller for DMA programming */
556 fpga_programmer_enable(priv, true);
557 dev_dbg(priv->dev, "enabled the controller\n");
559 /* Wait for the interrupt handler to signal that programming finished */
560 ret = wait_for_completion_timeout(&priv->completion, 2 * HZ);
562 dev_err(priv->dev, "Timed out waiting for completion\n");
564 goto out_disable_controller;
567 /* Retrieve the status from the interrupt handler */
570 out_disable_controller:
571 fpga_programmer_disable(priv);
573 videobuf_dma_unmap(priv->dev, vb);
575 sg_free_table(&table);
584 static irqreturn_t fpga_irq(int irq, void *dev_id)
586 struct fpga_dev *priv = dev_id;
588 /* Save the status */
589 priv->status = fpga_config_error(priv->regs) ? -EIO : 0;
590 dev_dbg(priv->dev, "INTERRUPT status %d\n", priv->status);
591 fpga_dump_registers(priv);
593 /* Disabling the programmer clears the interrupt */
594 fpga_programmer_disable(priv);
596 /* Notify any waiters */
597 complete(&priv->completion);
607 * fpga_do_stop() - deconfigure (reset) the DATA-FPGA's
608 * @priv: the driver's private data structure
610 * LOCKING: must hold priv->lock
612 static int fpga_do_stop(struct fpga_dev *priv)
616 /* Set the led to unprogrammed */
617 ledtrig_fpga_programmed(false);
619 /* Pulse the config line to reset the FPGA's */
620 val = CFG_CTL_ENABLE | CFG_CTL_RESET;
621 iowrite32be(val, priv->regs + FPGA_CONFIG_CONTROL);
622 iowrite32be(0x0, priv->regs + FPGA_CONFIG_CONTROL);
627 static noinline int fpga_do_program(struct fpga_dev *priv)
631 if (priv->bytes != priv->fw_size) {
632 dev_err(priv->dev, "Incorrect bitfile size: got %zu bytes, "
633 "should be %zu bytes\n",
634 priv->bytes, priv->fw_size);
638 if (!fpga_power_enabled(priv)) {
639 dev_err(priv->dev, "Power not enabled\n");
643 if (!fpga_power_good(priv)) {
644 dev_err(priv->dev, "Power not good\n");
648 /* Set the LED to unprogrammed */
649 ledtrig_fpga_programmed(false);
651 /* Try to program the FPGA's using DMA */
652 ret = fpga_program_dma(priv);
654 /* If DMA failed or doesn't exist, try with CPU */
656 dev_warn(priv->dev, "Falling back to CPU programming\n");
657 ret = fpga_program_cpu(priv);
661 dev_err(priv->dev, "Unable to program FPGA's\n");
665 /* Drop the firmware bitfile from memory */
666 fpga_drop_firmware_data(priv);
668 dev_dbg(priv->dev, "FPGA programming successful\n");
669 ledtrig_fpga_programmed(true);
678 static int fpga_open(struct inode *inode, struct file *filp)
681 * The miscdevice layer puts our struct miscdevice into the
682 * filp->private_data field. We use this to find our private
683 * data and then overwrite it with our own private structure.
685 struct fpga_dev *priv = container_of(filp->private_data,
686 struct fpga_dev, miscdev);
687 unsigned int nr_pages;
690 /* We only allow one process at a time */
691 ret = mutex_lock_interruptible(&priv->lock);
695 filp->private_data = priv;
696 kref_get(&priv->ref);
698 /* Truncation: drop any existing data */
699 if (filp->f_flags & O_TRUNC)
702 /* Check if we have already allocated a buffer */
703 if (priv->vb_allocated)
706 /* Allocate a buffer to hold enough data for the bitfile */
707 nr_pages = DIV_ROUND_UP(priv->fw_size, PAGE_SIZE);
708 ret = videobuf_dma_init_kernel(&priv->vb, DMA_TO_DEVICE, nr_pages);
710 dev_err(priv->dev, "unable to allocate data buffer\n");
711 mutex_unlock(&priv->lock);
712 kref_put(&priv->ref, fpga_dev_remove);
716 priv->vb_allocated = true;
720 static int fpga_release(struct inode *inode, struct file *filp)
722 struct fpga_dev *priv = filp->private_data;
724 mutex_unlock(&priv->lock);
725 kref_put(&priv->ref, fpga_dev_remove);
729 static ssize_t fpga_write(struct file *filp, const char __user *buf,
730 size_t count, loff_t *f_pos)
732 struct fpga_dev *priv = filp->private_data;
734 /* FPGA bitfiles have an exact size: disallow anything else */
735 if (priv->bytes >= priv->fw_size)
738 count = min_t(size_t, priv->fw_size - priv->bytes, count);
739 if (copy_from_user(priv->vb.vaddr + priv->bytes, buf, count))
742 priv->bytes += count;
746 static ssize_t fpga_read(struct file *filp, char __user *buf, size_t count,
749 struct fpga_dev *priv = filp->private_data;
751 count = min_t(size_t, priv->bytes - *f_pos, count);
752 if (copy_to_user(buf, priv->vb.vaddr + *f_pos, count))
759 static loff_t fpga_llseek(struct file *filp, loff_t offset, int origin)
761 struct fpga_dev *priv = filp->private_data;
764 /* only read-only opens are allowed to seek */
765 if ((filp->f_flags & O_ACCMODE) != O_RDONLY)
769 case SEEK_SET: /* seek relative to the beginning of the file */
772 case SEEK_CUR: /* seek relative to current position in the file */
773 newpos = filp->f_pos + offset;
775 case SEEK_END: /* seek relative to the end of the file */
776 newpos = priv->fw_size - offset;
782 /* check for sanity */
783 if (newpos > priv->fw_size)
786 filp->f_pos = newpos;
790 static const struct file_operations fpga_fops = {
792 .release = fpga_release,
795 .llseek = fpga_llseek,
802 static ssize_t pfail_show(struct device *dev, struct device_attribute *attr,
805 struct fpga_dev *priv = dev_get_drvdata(dev);
808 val = ioread8(priv->regs + CTL_PWR_FAIL);
809 return snprintf(buf, PAGE_SIZE, "0x%.2x\n", val);
812 static ssize_t pgood_show(struct device *dev, struct device_attribute *attr,
815 struct fpga_dev *priv = dev_get_drvdata(dev);
816 return snprintf(buf, PAGE_SIZE, "%d\n", fpga_power_good(priv));
819 static ssize_t penable_show(struct device *dev, struct device_attribute *attr,
822 struct fpga_dev *priv = dev_get_drvdata(dev);
823 return snprintf(buf, PAGE_SIZE, "%d\n", fpga_power_enabled(priv));
826 static ssize_t penable_store(struct device *dev, struct device_attribute *attr,
827 const char *buf, size_t count)
829 struct fpga_dev *priv = dev_get_drvdata(dev);
833 if (strict_strtoul(buf, 0, &val))
837 ret = fpga_enable_power_supplies(priv);
842 fpga_disable_power_supplies(priv);
848 static ssize_t program_show(struct device *dev, struct device_attribute *attr,
851 struct fpga_dev *priv = dev_get_drvdata(dev);
852 return snprintf(buf, PAGE_SIZE, "%d\n", fpga_running(priv));
855 static ssize_t program_store(struct device *dev, struct device_attribute *attr,
856 const char *buf, size_t count)
858 struct fpga_dev *priv = dev_get_drvdata(dev);
862 if (strict_strtoul(buf, 0, &val))
865 /* We can't have an image writer and be programming simultaneously */
866 if (mutex_lock_interruptible(&priv->lock))
869 /* Program or Reset the FPGA's */
870 ret = val ? fpga_do_program(priv) : fpga_do_stop(priv);
878 mutex_unlock(&priv->lock);
882 static DEVICE_ATTR(power_fail, S_IRUGO, pfail_show, NULL);
883 static DEVICE_ATTR(power_good, S_IRUGO, pgood_show, NULL);
884 static DEVICE_ATTR(power_enable, S_IRUGO | S_IWUSR,
885 penable_show, penable_store);
887 static DEVICE_ATTR(program, S_IRUGO | S_IWUSR,
888 program_show, program_store);
890 static struct attribute *fpga_attributes[] = {
891 &dev_attr_power_fail.attr,
892 &dev_attr_power_good.attr,
893 &dev_attr_power_enable.attr,
894 &dev_attr_program.attr,
898 static const struct attribute_group fpga_attr_group = {
899 .attrs = fpga_attributes,
903 * OpenFirmware Device Subsystem
906 #define SYS_REG_VERSION 0x00
907 #define SYS_REG_GEOGRAPHIC 0x10
909 static bool dma_filter(struct dma_chan *chan, void *data)
912 * DMA Channel #0 is the only acceptable device
914 * This probably won't survive an unload/load cycle of the Freescale
915 * DMAEngine driver, but that won't be a problem
917 return chan->chan_id == 0 && chan->device->dev_id == 0;
920 static int fpga_of_remove(struct platform_device *op)
922 struct fpga_dev *priv = dev_get_drvdata(&op->dev);
923 struct device *this_device = priv->miscdev.this_device;
925 sysfs_remove_group(&this_device->kobj, &fpga_attr_group);
926 misc_deregister(&priv->miscdev);
928 free_irq(priv->irq, priv);
929 irq_dispose_mapping(priv->irq);
931 /* make sure the power supplies are off */
932 fpga_disable_power_supplies(priv);
934 /* unmap registers */
938 dma_release_channel(priv->chan);
940 /* drop our reference to the private data structure */
941 kref_put(&priv->ref, fpga_dev_remove);
945 /* CTL-CPLD Version Register */
946 #define CTL_CPLD_VERSION 0x2000
948 static int fpga_of_probe(struct platform_device *op)
950 struct device_node *of_node = op->dev.of_node;
951 struct device *this_device;
952 struct fpga_dev *priv;
957 /* Allocate private data */
958 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
960 dev_err(&op->dev, "Unable to allocate private data\n");
965 /* Setup the miscdevice */
966 priv->miscdev.minor = MISC_DYNAMIC_MINOR;
967 priv->miscdev.name = drv_name;
968 priv->miscdev.fops = &fpga_fops;
970 kref_init(&priv->ref);
972 dev_set_drvdata(&op->dev, priv);
973 priv->dev = &op->dev;
974 mutex_init(&priv->lock);
975 init_completion(&priv->completion);
976 videobuf_dma_init(&priv->vb);
978 dev_set_drvdata(priv->dev, priv);
980 dma_cap_set(DMA_MEMCPY, mask);
981 dma_cap_set(DMA_INTERRUPT, mask);
982 dma_cap_set(DMA_SLAVE, mask);
983 dma_cap_set(DMA_SG, mask);
985 /* Get control of DMA channel #0 */
986 priv->chan = dma_request_channel(mask, dma_filter, NULL);
988 dev_err(&op->dev, "Unable to acquire DMA channel #0\n");
993 /* Remap the registers for use */
994 priv->regs = of_iomap(of_node, 0);
996 dev_err(&op->dev, "Unable to ioremap registers\n");
998 goto out_dma_release_channel;
1001 /* Remap the IMMR for use */
1002 priv->immr = ioremap(get_immrbase(), 0x100000);
1004 dev_err(&op->dev, "Unable to ioremap IMMR\n");
1006 goto out_unmap_regs;
1010 * Check that external DMA is configured
1012 * U-Boot does this for us, but we should check it and bail out if
1013 * there is a problem. Failing to have this register setup correctly
1014 * will cause the DMA controller to transfer a single cacheline
1015 * worth of data, then wedge itself.
1017 if ((ioread32be(priv->immr + 0x114) & 0xE00) != 0xE00) {
1018 dev_err(&op->dev, "External DMA control not configured\n");
1020 goto out_unmap_immr;
1024 * Check the CTL-CPLD version
1026 * This driver uses the CTL-CPLD DATA-FPGA power sequencer, and we
1027 * don't want to run on any version of the CTL-CPLD that does not use
1028 * a compatible register layout.
1030 * v2: changed register layout, added power sequencer
1031 * v3: added glitch filter on the i2c overcurrent/overtemp outputs
1033 ver = ioread8(priv->regs + CTL_CPLD_VERSION);
1034 if (ver != 0x02 && ver != 0x03) {
1035 dev_err(&op->dev, "CTL-CPLD is not version 0x02 or 0x03!\n");
1037 goto out_unmap_immr;
1040 /* Set the exact size that the firmware image should be */
1041 ver = ioread32be(priv->regs + SYS_REG_VERSION);
1042 priv->fw_size = (ver & (1 << 18)) ? FW_SIZE_EP2S130 : FW_SIZE_EP2S90;
1044 /* Find the correct IRQ number */
1045 priv->irq = irq_of_parse_and_map(of_node, 0);
1046 if (priv->irq == NO_IRQ) {
1047 dev_err(&op->dev, "Unable to find IRQ line\n");
1049 goto out_unmap_immr;
1052 /* Request the IRQ */
1053 ret = request_irq(priv->irq, fpga_irq, IRQF_SHARED, drv_name, priv);
1055 dev_err(&op->dev, "Unable to request IRQ %d\n", priv->irq);
1057 goto out_irq_dispose_mapping;
1060 /* Reset and stop the FPGA's, just in case */
1063 /* Register the miscdevice */
1064 ret = misc_register(&priv->miscdev);
1066 dev_err(&op->dev, "Unable to register miscdevice\n");
1070 /* Create the sysfs files */
1071 this_device = priv->miscdev.this_device;
1072 dev_set_drvdata(this_device, priv);
1073 ret = sysfs_create_group(&this_device->kobj, &fpga_attr_group);
1075 dev_err(&op->dev, "Unable to create sysfs files\n");
1076 goto out_misc_deregister;
1079 dev_info(priv->dev, "CARMA FPGA Programmer: %s rev%s with %s FPGAs\n",
1080 (ver & (1 << 17)) ? "Correlator" : "Digitizer",
1081 (ver & (1 << 16)) ? "B" : "A",
1082 (ver & (1 << 18)) ? "EP2S130" : "EP2S90");
1086 out_misc_deregister:
1087 misc_deregister(&priv->miscdev);
1089 free_irq(priv->irq, priv);
1090 out_irq_dispose_mapping:
1091 irq_dispose_mapping(priv->irq);
1093 iounmap(priv->immr);
1095 iounmap(priv->regs);
1096 out_dma_release_channel:
1097 dma_release_channel(priv->chan);
1099 kref_put(&priv->ref, fpga_dev_remove);
1104 static struct of_device_id fpga_of_match[] = {
1105 { .compatible = "carma,fpga-programmer", },
1109 static struct platform_driver fpga_of_driver = {
1110 .probe = fpga_of_probe,
1111 .remove = fpga_of_remove,
1114 .of_match_table = fpga_of_match,
1115 .owner = THIS_MODULE,
1120 * Module Init / Exit
1123 static int __init fpga_init(void)
1125 led_trigger_register_simple("fpga", &ledtrig_fpga);
1126 return platform_driver_register(&fpga_of_driver);
1129 static void __exit fpga_exit(void)
1131 platform_driver_unregister(&fpga_of_driver);
1132 led_trigger_unregister_simple(ledtrig_fpga);
1136 MODULE_DESCRIPTION("CARMA Board DATA-FPGA Programmer");
1137 MODULE_LICENSE("GPL");
1139 module_init(fpga_init);
1140 module_exit(fpga_exit);