blob: 78a492f5acfb3ddc53e24dbf3d9a56a8ca4dbd01 [file] [log] [blame]
Eli Billauer48bae052013-06-24 18:55:47 +03001/*
2 * linux/drivers/misc/xillybus_of.c
3 *
4 * Copyright 2011 Xillybus Ltd, http://xillybus.com
5 *
6 * Driver for the Xillybus FPGA/host framework using Open Firmware.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the smems of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 */
12
13#include <linux/module.h>
14#include <linux/device.h>
15#include <linux/slab.h>
16#include <linux/platform_device.h>
17#include <linux/of.h>
18#include <linux/of_irq.h>
19#include <linux/of_address.h>
20#include <linux/of_device.h>
21#include <linux/of_platform.h>
Eli Billauer92674622014-05-11 19:53:46 +030022#include <linux/err.h>
Eli Billauer48bae052013-06-24 18:55:47 +030023#include "xillybus.h"
24
25MODULE_DESCRIPTION("Xillybus driver for Open Firmware");
26MODULE_AUTHOR("Eli Billauer, Xillybus Ltd.");
27MODULE_VERSION("1.06");
28MODULE_ALIAS("xillybus_of");
29MODULE_LICENSE("GPL v2");
30
Eli Billauere71042f2013-07-27 00:24:00 +030031static const char xillyname[] = "xillybus_of";
32
Eli Billauer48bae052013-06-24 18:55:47 +030033/* Match table for of_platform binding */
Fabian Frederickda2ff522015-03-16 20:17:13 +010034static const struct of_device_id xillybus_of_match[] = {
Eli Billauer24b33c92013-12-30 23:16:24 +020035 { .compatible = "xillybus,xillybus-1.00.a", },
36 { .compatible = "xlnx,xillybus-1.00.a", }, /* Deprecated */
Eli Billauer48bae052013-06-24 18:55:47 +030037 {}
38};
39
40MODULE_DEVICE_TABLE(of, xillybus_of_match);
41
42static void xilly_dma_sync_single_for_cpu_of(struct xilly_endpoint *ep,
43 dma_addr_t dma_handle,
44 size_t size,
45 int direction)
46{
47 dma_sync_single_for_cpu(ep->dev, dma_handle, size, direction);
48}
49
50static void xilly_dma_sync_single_for_device_of(struct xilly_endpoint *ep,
51 dma_addr_t dma_handle,
52 size_t size,
53 int direction)
54{
55 dma_sync_single_for_device(ep->dev, dma_handle, size, direction);
56}
57
Eli Billauercc212552013-12-30 23:16:25 +020058static void xilly_dma_sync_single_nop(struct xilly_endpoint *ep,
59 dma_addr_t dma_handle,
60 size_t size,
61 int direction)
62{
63}
64
Eli Billauer525be902014-06-21 14:07:12 +030065static void xilly_of_unmap(void *ptr)
66{
67 struct xilly_mapping *data = ptr;
68
69 dma_unmap_single(data->device, data->dma_addr,
70 data->size, data->direction);
71
72 kfree(ptr);
73}
74
75static int xilly_map_single_of(struct xilly_endpoint *ep,
76 void *ptr,
77 size_t size,
78 int direction,
79 dma_addr_t *ret_dma_handle
Eli Billauer48bae052013-06-24 18:55:47 +030080 )
81{
Eli Billauer525be902014-06-21 14:07:12 +030082 dma_addr_t addr;
83 struct xilly_mapping *this;
Eli Billauer48bae052013-06-24 18:55:47 +030084
Eli Billauer525be902014-06-21 14:07:12 +030085 this = kzalloc(sizeof(*this), GFP_KERNEL);
Eli Billauer48bae052013-06-24 18:55:47 +030086 if (!this)
Eli Billauer525be902014-06-21 14:07:12 +030087 return -ENOMEM;
Eli Billauer48bae052013-06-24 18:55:47 +030088
89 addr = dma_map_single(ep->dev, ptr, size, direction);
Eli Billauer48bae052013-06-24 18:55:47 +030090
91 if (dma_mapping_error(ep->dev, addr)) {
92 kfree(this);
Eli Billauer525be902014-06-21 14:07:12 +030093 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +030094 }
95
Eli Billauer525be902014-06-21 14:07:12 +030096 this->device = ep->dev;
Eli Billauer48bae052013-06-24 18:55:47 +030097 this->dma_addr = addr;
Eli Billauer48bae052013-06-24 18:55:47 +030098 this->size = size;
Eli Billauer525be902014-06-21 14:07:12 +030099 this->direction = direction;
Eli Billauer48bae052013-06-24 18:55:47 +0300100
Eli Billauer525be902014-06-21 14:07:12 +0300101 *ret_dma_handle = addr;
Eli Billauer48bae052013-06-24 18:55:47 +0300102
Sudip Mukherjeebd83a4a2016-04-30 17:13:20 +0100103 return devm_add_action_or_reset(ep->dev, xilly_of_unmap, this);
Eli Billauer48bae052013-06-24 18:55:47 +0300104}
105
106static struct xilly_endpoint_hardware of_hw = {
107 .owner = THIS_MODULE,
Eli Billauer7ee9ded2013-07-31 11:22:43 +0300108 .hw_sync_sgl_for_cpu = xilly_dma_sync_single_for_cpu_of,
109 .hw_sync_sgl_for_device = xilly_dma_sync_single_for_device_of,
Eli Billauer48bae052013-06-24 18:55:47 +0300110 .map_single = xilly_map_single_of,
Eli Billauer48bae052013-06-24 18:55:47 +0300111};
112
Eli Billauercc212552013-12-30 23:16:25 +0200113static struct xilly_endpoint_hardware of_hw_coherent = {
114 .owner = THIS_MODULE,
115 .hw_sync_sgl_for_cpu = xilly_dma_sync_single_nop,
116 .hw_sync_sgl_for_device = xilly_dma_sync_single_nop,
117 .map_single = xilly_map_single_of,
Eli Billauercc212552013-12-30 23:16:25 +0200118};
119
Eli Billauer48bae052013-06-24 18:55:47 +0300120static int xilly_drv_probe(struct platform_device *op)
121{
122 struct device *dev = &op->dev;
123 struct xilly_endpoint *endpoint;
Eli Billauer40931bb2014-09-04 17:47:48 +0300124 int rc;
Eli Billauer48bae052013-06-24 18:55:47 +0300125 int irq;
Eli Billauer92674622014-05-11 19:53:46 +0300126 struct resource res;
Eli Billauercc212552013-12-30 23:16:25 +0200127 struct xilly_endpoint_hardware *ephw = &of_hw;
Eli Billauer48bae052013-06-24 18:55:47 +0300128
Eli Billauercc212552013-12-30 23:16:25 +0200129 if (of_property_read_bool(dev->of_node, "dma-coherent"))
130 ephw = &of_hw_coherent;
131
132 endpoint = xillybus_init_endpoint(NULL, dev, ephw);
Eli Billauer48bae052013-06-24 18:55:47 +0300133
134 if (!endpoint)
135 return -ENOMEM;
136
137 dev_set_drvdata(dev, endpoint);
138
Eli Billauer92674622014-05-11 19:53:46 +0300139 rc = of_address_to_resource(dev->of_node, 0, &res);
Eli Billauer92674622014-05-11 19:53:46 +0300140 endpoint->registers = devm_ioremap_resource(dev, &res);
Eli Billauer48bae052013-06-24 18:55:47 +0300141
Eli Billauer92674622014-05-11 19:53:46 +0300142 if (IS_ERR(endpoint->registers))
143 return PTR_ERR(endpoint->registers);
Eli Billauer48bae052013-06-24 18:55:47 +0300144
145 irq = irq_of_parse_and_map(dev->of_node, 0);
146
Eli Billauer92674622014-05-11 19:53:46 +0300147 rc = devm_request_irq(dev, irq, xillybus_isr, 0, xillyname, endpoint);
Eli Billauer48bae052013-06-24 18:55:47 +0300148
149 if (rc) {
Eli Billauer1a2f9a92013-10-19 01:02:27 +0300150 dev_err(endpoint->dev,
151 "Failed to register IRQ handler. Aborting.\n");
Eli Billauer92674622014-05-11 19:53:46 +0300152 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300153 }
154
Eli Billauer525be902014-06-21 14:07:12 +0300155 return xillybus_endpoint_discovery(endpoint);
Eli Billauer48bae052013-06-24 18:55:47 +0300156}
157
158static int xilly_drv_remove(struct platform_device *op)
159{
160 struct device *dev = &op->dev;
161 struct xilly_endpoint *endpoint = dev_get_drvdata(dev);
Eli Billauer48bae052013-06-24 18:55:47 +0300162
163 xillybus_endpoint_remove(endpoint);
164
Eli Billauer48bae052013-06-24 18:55:47 +0300165 return 0;
166}
167
168static struct platform_driver xillybus_platform_driver = {
169 .probe = xilly_drv_probe,
170 .remove = xilly_drv_remove,
171 .driver = {
172 .name = xillyname,
Eli Billauer48bae052013-06-24 18:55:47 +0300173 .of_match_table = xillybus_of_match,
174 },
175};
176
Sachin Kamat7a620a62013-10-10 09:30:04 +0530177module_platform_driver(xillybus_platform_driver);