Aparna Das | c990751 | 2013-03-08 10:20:52 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2011-2013, The Linux Foundation. All rights reserved. |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
Pratik Patel | cf41862 | 2011-09-22 11:15:11 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/device.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <linux/err.h> |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 21 | #include <linux/slab.h> |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 22 | #include <linux/clk.h> |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 23 | #include <linux/of_coresight.h> |
Pratik Patel | 1746b8f | 2012-06-02 21:11:41 -0700 | [diff] [blame] | 24 | #include <linux/coresight.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 25 | |
Pratik Patel | 1746b8f | 2012-06-02 21:11:41 -0700 | [diff] [blame] | 26 | #include "coresight-priv.h" |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 27 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 28 | #define funnel_writel(drvdata, val, off) \ |
| 29 | __raw_writel((val), drvdata->base + off) |
| 30 | #define funnel_readl(drvdata, off) \ |
| 31 | __raw_readl(drvdata->base + off) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 32 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 33 | #define FUNNEL_LOCK(drvdata) \ |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 34 | do { \ |
| 35 | mb(); \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 36 | funnel_writel(drvdata, 0x0, CORESIGHT_LAR); \ |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 37 | } while (0) |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 38 | #define FUNNEL_UNLOCK(drvdata) \ |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 39 | do { \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 40 | funnel_writel(drvdata, CORESIGHT_UNLOCK, CORESIGHT_LAR); \ |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 41 | mb(); \ |
| 42 | } while (0) |
| 43 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 44 | #define FUNNEL_FUNCTL (0x000) |
| 45 | #define FUNNEL_PRICTL (0x004) |
| 46 | #define FUNNEL_ITATBDATA0 (0xEEC) |
| 47 | #define FUNNEL_ITATBCTR2 (0xEF0) |
| 48 | #define FUNNEL_ITATBCTR1 (0xEF4) |
| 49 | #define FUNNEL_ITATBCTR0 (0xEF8) |
| 50 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 51 | #define FUNNEL_HOLDTIME_MASK (0xF00) |
| 52 | #define FUNNEL_HOLDTIME_SHFT (0x8) |
| 53 | #define FUNNEL_HOLDTIME (0x7 << FUNNEL_HOLDTIME_SHFT) |
| 54 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 55 | struct funnel_drvdata { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 56 | void __iomem *base; |
| 57 | struct device *dev; |
| 58 | struct coresight_device *csdev; |
| 59 | struct clk *clk; |
| 60 | uint32_t priority; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 63 | static void __funnel_enable(struct funnel_drvdata *drvdata, int port) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 64 | { |
| 65 | uint32_t functl; |
| 66 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 67 | FUNNEL_UNLOCK(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 68 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 69 | functl = funnel_readl(drvdata, FUNNEL_FUNCTL); |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 70 | functl &= ~FUNNEL_HOLDTIME_MASK; |
| 71 | functl |= FUNNEL_HOLDTIME; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 72 | functl |= (1 << port); |
| 73 | funnel_writel(drvdata, functl, FUNNEL_FUNCTL); |
| 74 | funnel_writel(drvdata, drvdata->priority, FUNNEL_PRICTL); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 75 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 76 | FUNNEL_LOCK(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 79 | static int funnel_enable(struct coresight_device *csdev, int inport, |
| 80 | int outport) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 81 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 82 | struct funnel_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 83 | int ret; |
| 84 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 85 | ret = clk_prepare_enable(drvdata->clk); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 86 | if (ret) |
| 87 | return ret; |
| 88 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 89 | __funnel_enable(drvdata, inport); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 90 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 91 | dev_info(drvdata->dev, "FUNNEL inport %d enabled\n", inport); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 92 | return 0; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 95 | static void __funnel_disable(struct funnel_drvdata *drvdata, int inport) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 96 | { |
| 97 | uint32_t functl; |
| 98 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 99 | FUNNEL_UNLOCK(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 100 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 101 | functl = funnel_readl(drvdata, FUNNEL_FUNCTL); |
| 102 | functl &= ~(1 << inport); |
| 103 | funnel_writel(drvdata, functl, FUNNEL_FUNCTL); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 104 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 105 | FUNNEL_LOCK(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 108 | static void funnel_disable(struct coresight_device *csdev, int inport, |
| 109 | int outport) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 110 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 111 | struct funnel_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); |
| 112 | |
| 113 | __funnel_disable(drvdata, inport); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 114 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 115 | clk_disable_unprepare(drvdata->clk); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 116 | |
| 117 | dev_info(drvdata->dev, "FUNNEL inport %d disabled\n", inport); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 120 | static const struct coresight_ops_link funnel_link_ops = { |
| 121 | .enable = funnel_enable, |
| 122 | .disable = funnel_disable, |
| 123 | }; |
| 124 | |
| 125 | static const struct coresight_ops funnel_cs_ops = { |
| 126 | .link_ops = &funnel_link_ops, |
| 127 | }; |
| 128 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 129 | static ssize_t funnel_show_priority(struct device *dev, |
| 130 | struct device_attribute *attr, char *buf) |
| 131 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 132 | struct funnel_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 133 | unsigned long val = drvdata->priority; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 134 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 135 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 136 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 137 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 138 | static ssize_t funnel_store_priority(struct device *dev, |
| 139 | struct device_attribute *attr, |
| 140 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 141 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 142 | struct funnel_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 143 | unsigned long val; |
| 144 | |
| 145 | if (sscanf(buf, "%lx", &val) != 1) |
| 146 | return -EINVAL; |
| 147 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 148 | drvdata->priority = val; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 149 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 150 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 151 | static DEVICE_ATTR(priority, S_IRUGO | S_IWUSR, funnel_show_priority, |
| 152 | funnel_store_priority); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 153 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 154 | static struct attribute *funnel_attrs[] = { |
| 155 | &dev_attr_priority.attr, |
| 156 | NULL, |
| 157 | }; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 158 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 159 | static struct attribute_group funnel_attr_grp = { |
| 160 | .attrs = funnel_attrs, |
| 161 | }; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 162 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 163 | static const struct attribute_group *funnel_attr_grps[] = { |
| 164 | &funnel_attr_grp, |
| 165 | NULL, |
| 166 | }; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 167 | |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 168 | static int __devinit funnel_probe(struct platform_device *pdev) |
| 169 | { |
| 170 | int ret; |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 171 | struct device *dev = &pdev->dev; |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 172 | struct coresight_platform_data *pdata; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 173 | struct funnel_drvdata *drvdata; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 174 | struct resource *res; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 175 | struct coresight_desc *desc; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 176 | |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 177 | if (pdev->dev.of_node) { |
| 178 | pdata = of_get_coresight_platform_data(dev, pdev->dev.of_node); |
| 179 | if (IS_ERR(pdata)) |
| 180 | return PTR_ERR(pdata); |
| 181 | pdev->dev.platform_data = pdata; |
| 182 | } |
| 183 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 184 | drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL); |
| 185 | if (!drvdata) |
| 186 | return -ENOMEM; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 187 | drvdata->dev = &pdev->dev; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 188 | platform_set_drvdata(pdev, drvdata); |
Pratik Patel | 783408a | 2012-03-21 10:28:12 -0700 | [diff] [blame] | 189 | |
Aparna Das | c990751 | 2013-03-08 10:20:52 -0800 | [diff] [blame] | 190 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "funnel-base"); |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 191 | if (!res) |
| 192 | return -ENODEV; |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 193 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 194 | drvdata->base = devm_ioremap(dev, res->start, resource_size(res)); |
| 195 | if (!drvdata->base) |
| 196 | return -ENOMEM; |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 197 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 198 | drvdata->clk = devm_clk_get(dev, "core_clk"); |
| 199 | if (IS_ERR(drvdata->clk)) |
| 200 | return PTR_ERR(drvdata->clk); |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 201 | |
Pratik Patel | 6fb3834 | 2012-06-03 14:51:38 -0700 | [diff] [blame] | 202 | ret = clk_set_rate(drvdata->clk, CORESIGHT_CLK_RATE_TRACE); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 203 | if (ret) |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 204 | return ret; |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 205 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 206 | desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL); |
| 207 | if (!desc) |
| 208 | return -ENOMEM; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 209 | desc->type = CORESIGHT_DEV_TYPE_LINK; |
| 210 | desc->subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_MERG; |
| 211 | desc->ops = &funnel_cs_ops; |
| 212 | desc->pdata = pdev->dev.platform_data; |
| 213 | desc->dev = &pdev->dev; |
| 214 | desc->groups = funnel_attr_grps; |
| 215 | desc->owner = THIS_MODULE; |
| 216 | drvdata->csdev = coresight_register(desc); |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 217 | if (IS_ERR(drvdata->csdev)) |
| 218 | return PTR_ERR(drvdata->csdev); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 219 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 220 | dev_info(dev, "FUNNEL initialized\n"); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 221 | return 0; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 224 | static int __devexit funnel_remove(struct platform_device *pdev) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 225 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 226 | struct funnel_drvdata *drvdata = platform_get_drvdata(pdev); |
| 227 | |
| 228 | coresight_unregister(drvdata->csdev); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 229 | return 0; |
| 230 | } |
| 231 | |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 232 | static struct of_device_id funnel_match[] = { |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 233 | {.compatible = "arm,coresight-funnel"}, |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 234 | {} |
| 235 | }; |
| 236 | |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 237 | static struct platform_driver funnel_driver = { |
| 238 | .probe = funnel_probe, |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 239 | .remove = __devexit_p(funnel_remove), |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 240 | .driver = { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 241 | .name = "coresight-funnel", |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 242 | .owner = THIS_MODULE, |
| 243 | .of_match_table = funnel_match, |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 244 | }, |
| 245 | }; |
| 246 | |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 247 | static int __init funnel_init(void) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 248 | { |
| 249 | return platform_driver_register(&funnel_driver); |
| 250 | } |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 251 | module_init(funnel_init); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 252 | |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 253 | static void __exit funnel_exit(void) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 254 | { |
| 255 | platform_driver_unregister(&funnel_driver); |
| 256 | } |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 257 | module_exit(funnel_exit); |
| 258 | |
| 259 | MODULE_LICENSE("GPL v2"); |
| 260 | MODULE_DESCRIPTION("CoreSight Funnel driver"); |