blob: 05ebde6adf1eda802fd4bff405da0c7e45cd2148 [file] [log] [blame]
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +01001/*
2 * Generic platform ohci driver
3 *
4 * Copyright 2007 Michael Buesch <m@bues.ch>
5 * Copyright 2011-2012 Hauke Mehrtens <hauke@hauke-m.de>
Hans de Goedeca52a172014-02-07 16:36:40 +01006 * Copyright 2014 Hans de Goede <hdegoede@redhat.com>
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +01007 *
8 * Derived from the OCHI-SSB driver
9 * Derived from the OHCI-PCI driver
10 * Copyright 1999 Roman Weissgaerber
11 * Copyright 2000-2002 David Brownell
12 * Copyright 1999 Linus Torvalds
13 * Copyright 1999 Gregory P. Smith
14 *
15 * Licensed under the GNU/GPL. See COPYING for details.
16 */
Manjunath Goudar928fb682013-06-03 20:46:08 +053017
Hans de Goedeca52a172014-02-07 16:36:40 +010018#include <linux/clk.h>
19#include <linux/dma-mapping.h>
Manjunath Goudar928fb682013-06-03 20:46:08 +053020#include <linux/hrtimer.h>
21#include <linux/io.h>
22#include <linux/kernel.h>
23#include <linux/module.h>
Thierry Reding148e1132013-01-21 11:09:22 +010024#include <linux/err.h>
Hans de Goedeca52a172014-02-07 16:36:40 +010025#include <linux/phy/phy.h>
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +010026#include <linux/platform_device.h>
Tony Lindgren0aa0b932017-05-25 09:13:31 -070027#include <linux/pm_runtime.h>
Maxime Ripard4615f3b2014-05-13 17:44:20 +020028#include <linux/reset.h>
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +010029#include <linux/usb/ohci_pdriver.h>
Manjunath Goudar928fb682013-06-03 20:46:08 +053030#include <linux/usb.h>
31#include <linux/usb/hcd.h>
32
33#include "ohci.h"
34
35#define DRIVER_DESC "OHCI generic platform driver"
Hans de Goedeca52a172014-02-07 16:36:40 +010036#define OHCI_MAX_CLKS 3
37#define hcd_to_ohci_priv(h) ((struct ohci_platform_priv *)hcd_to_ohci(h)->priv)
38
39struct ohci_platform_priv {
40 struct clk *clks[OHCI_MAX_CLKS];
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +090041 struct reset_control *resets;
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080042 struct phy **phys;
43 int num_phys;
Hans de Goedeca52a172014-02-07 16:36:40 +010044};
Manjunath Goudar928fb682013-06-03 20:46:08 +053045
46static const char hcd_name[] = "ohci-platform";
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +010047
Hans de Goedeca52a172014-02-07 16:36:40 +010048static int ohci_platform_power_on(struct platform_device *dev)
49{
50 struct usb_hcd *hcd = platform_get_drvdata(dev);
51 struct ohci_platform_priv *priv = hcd_to_ohci_priv(hcd);
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080052 int clk, ret, phy_num;
Hans de Goedeca52a172014-02-07 16:36:40 +010053
54 for (clk = 0; clk < OHCI_MAX_CLKS && priv->clks[clk]; clk++) {
55 ret = clk_prepare_enable(priv->clks[clk]);
56 if (ret)
57 goto err_disable_clks;
58 }
59
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080060 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthya666f7d2015-04-22 16:04:13 -070061 ret = phy_init(priv->phys[phy_num]);
62 if (ret)
63 goto err_exit_phy;
64 ret = phy_power_on(priv->phys[phy_num]);
65 if (ret) {
66 phy_exit(priv->phys[phy_num]);
67 goto err_exit_phy;
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080068 }
Hans de Goedeca52a172014-02-07 16:36:40 +010069 }
70
71 return 0;
72
73err_exit_phy:
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080074 while (--phy_num >= 0) {
Arun Ramamurthya666f7d2015-04-22 16:04:13 -070075 phy_power_off(priv->phys[phy_num]);
76 phy_exit(priv->phys[phy_num]);
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080077 }
Hans de Goedeca52a172014-02-07 16:36:40 +010078err_disable_clks:
79 while (--clk >= 0)
80 clk_disable_unprepare(priv->clks[clk]);
81
82 return ret;
83}
84
85static void ohci_platform_power_off(struct platform_device *dev)
86{
87 struct usb_hcd *hcd = platform_get_drvdata(dev);
88 struct ohci_platform_priv *priv = hcd_to_ohci_priv(hcd);
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080089 int clk, phy_num;
Hans de Goedeca52a172014-02-07 16:36:40 +010090
Arun Ramamurthy85cd6902015-01-19 16:05:30 -080091 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthya666f7d2015-04-22 16:04:13 -070092 phy_power_off(priv->phys[phy_num]);
93 phy_exit(priv->phys[phy_num]);
Hans de Goedeca52a172014-02-07 16:36:40 +010094 }
95
96 for (clk = OHCI_MAX_CLKS - 1; clk >= 0; clk--)
97 if (priv->clks[clk])
98 clk_disable_unprepare(priv->clks[clk]);
99}
100
Manjunath Goudar928fb682013-06-03 20:46:08 +0530101static struct hc_driver __read_mostly ohci_platform_hc_driver;
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100102
Manjunath Goudar928fb682013-06-03 20:46:08 +0530103static const struct ohci_driver_overrides platform_overrides __initconst = {
Hans de Goedeca52a172014-02-07 16:36:40 +0100104 .product_desc = "Generic Platform OHCI controller",
Hans de Goedeca52a172014-02-07 16:36:40 +0100105 .extra_priv_size = sizeof(struct ohci_platform_priv),
106};
107
108static struct usb_ohci_pdata ohci_platform_defaults = {
109 .power_on = ohci_platform_power_on,
110 .power_suspend = ohci_platform_power_off,
111 .power_off = ohci_platform_power_off,
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100112};
113
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500114static int ohci_platform_probe(struct platform_device *dev)
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100115{
116 struct usb_hcd *hcd;
117 struct resource *res_mem;
Jingoo Hand4f09e22013-07-30 19:59:40 +0900118 struct usb_ohci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedeca52a172014-02-07 16:36:40 +0100119 struct ohci_platform_priv *priv;
Hans de Goedeb1034412014-02-07 16:36:42 +0100120 struct ohci_hcd *ohci;
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900121 int err, irq, phy_num, clk = 0;
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100122
123 if (usb_disabled())
124 return -ENODEV;
125
Hans de Goedeca52a172014-02-07 16:36:40 +0100126 /*
127 * Use reasonable defaults so platforms don't have to provide these
128 * with DT probing on ARM.
129 */
130 if (!pdata)
131 pdata = &ohci_platform_defaults;
132
133 err = dma_coerce_mask_and_coherent(&dev->dev, DMA_BIT_MASK(32));
134 if (err)
135 return err;
136
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100137 irq = platform_get_irq(dev, 0);
138 if (irq < 0) {
Florian Fainelli976baf62012-10-08 15:11:42 +0200139 dev_err(&dev->dev, "no irq provided");
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100140 return irq;
141 }
142
Hans de Goedeca52a172014-02-07 16:36:40 +0100143 hcd = usb_create_hcd(&ohci_platform_hc_driver, &dev->dev,
144 dev_name(&dev->dev));
145 if (!hcd)
146 return -ENOMEM;
147
148 platform_set_drvdata(dev, hcd);
149 dev->dev.platform_data = pdata;
150 priv = hcd_to_ohci_priv(hcd);
Hans de Goedeb1034412014-02-07 16:36:42 +0100151 ohci = hcd_to_ohci(hcd);
Hans de Goedeca52a172014-02-07 16:36:40 +0100152
153 if (pdata == &ohci_platform_defaults && dev->dev.of_node) {
Hans de Goedeb1034412014-02-07 16:36:42 +0100154 if (of_property_read_bool(dev->dev.of_node, "big-endian-regs"))
155 ohci->flags |= OHCI_QUIRK_BE_MMIO;
156
157 if (of_property_read_bool(dev->dev.of_node, "big-endian-desc"))
158 ohci->flags |= OHCI_QUIRK_BE_DESC;
159
160 if (of_property_read_bool(dev->dev.of_node, "big-endian"))
161 ohci->flags |= OHCI_QUIRK_BE_MMIO | OHCI_QUIRK_BE_DESC;
162
Kevin Cernekeec4b86922014-10-11 11:10:48 -0700163 if (of_property_read_bool(dev->dev.of_node, "no-big-frame-no"))
164 ohci->flags |= OHCI_QUIRK_FRAME_NO;
165
Tony Lindgren2545d852017-05-25 09:13:32 -0700166 if (of_property_read_bool(dev->dev.of_node,
167 "remote-wakeup-connected"))
168 ohci->hc_control = OHCI_CTRL_RWC;
169
Kevin Cernekeec4b86922014-10-11 11:10:48 -0700170 of_property_read_u32(dev->dev.of_node, "num-ports",
171 &ohci->num_ports);
172
Arun Ramamurthy85cd6902015-01-19 16:05:30 -0800173 priv->num_phys = of_count_phandle_with_args(dev->dev.of_node,
174 "phys", "#phy-cells");
Arun Ramamurthy85cd6902015-01-19 16:05:30 -0800175
Arun Ramamurthya666f7d2015-04-22 16:04:13 -0700176 if (priv->num_phys > 0) {
177 priv->phys = devm_kcalloc(&dev->dev, priv->num_phys,
178 sizeof(struct phy *), GFP_KERNEL);
179 if (!priv->phys)
180 return -ENOMEM;
181 } else
182 priv->num_phys = 0;
Arun Ramamurthy85cd6902015-01-19 16:05:30 -0800183
184 for (phy_num = 0; phy_num < priv->num_phys; phy_num++) {
Arun Ramamurthya666f7d2015-04-22 16:04:13 -0700185 priv->phys[phy_num] = devm_of_phy_get_by_index(
186 &dev->dev, dev->dev.of_node, phy_num);
187 if (IS_ERR(priv->phys[phy_num])) {
188 err = PTR_ERR(priv->phys[phy_num]);
189 goto err_put_hcd;
Yoshihiro Shimodad3d6ef12017-03-13 15:25:24 +0900190 } else if (!hcd->phy) {
191 /* Avoiding phy_get() in usb_add_hcd() */
192 hcd->phy = priv->phys[phy_num];
Arun Ramamurthya666f7d2015-04-22 16:04:13 -0700193 }
Hans de Goedeca52a172014-02-07 16:36:40 +0100194 }
195
196 for (clk = 0; clk < OHCI_MAX_CLKS; clk++) {
197 priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
198 if (IS_ERR(priv->clks[clk])) {
199 err = PTR_ERR(priv->clks[clk]);
200 if (err == -EPROBE_DEFER)
201 goto err_put_clks;
202 priv->clks[clk] = NULL;
203 break;
204 }
205 }
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900206
207 priv->resets = devm_reset_control_array_get_optional_shared(
208 &dev->dev);
209 if (IS_ERR(priv->resets)) {
210 err = PTR_ERR(priv->resets);
211 goto err_put_clks;
Hans de Goede62d96942016-06-02 17:14:06 +0200212 }
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900213
214 err = reset_control_deassert(priv->resets);
215 if (err)
216 goto err_put_clks;
Hans de Goedeca52a172014-02-07 16:36:40 +0100217 }
218
Alan Sternadff5292014-02-11 11:26:00 -0500219 if (pdata->big_endian_desc)
220 ohci->flags |= OHCI_QUIRK_BE_DESC;
221 if (pdata->big_endian_mmio)
222 ohci->flags |= OHCI_QUIRK_BE_MMIO;
Kevin Cernekee46f21942014-10-11 11:10:49 -0700223 if (pdata->no_big_frame_no)
224 ohci->flags |= OHCI_QUIRK_FRAME_NO;
225 if (pdata->num_ports)
226 ohci->num_ports = pdata->num_ports;
Alan Sternadff5292014-02-11 11:26:00 -0500227
228#ifndef CONFIG_USB_OHCI_BIG_ENDIAN_MMIO
229 if (ohci->flags & OHCI_QUIRK_BE_MMIO) {
230 dev_err(&dev->dev,
231 "Error: CONFIG_USB_OHCI_BIG_ENDIAN_MMIO not set\n");
232 err = -EINVAL;
Maxime Ripard4615f3b2014-05-13 17:44:20 +0200233 goto err_reset;
Alan Sternadff5292014-02-11 11:26:00 -0500234 }
235#endif
236#ifndef CONFIG_USB_OHCI_BIG_ENDIAN_DESC
237 if (ohci->flags & OHCI_QUIRK_BE_DESC) {
238 dev_err(&dev->dev,
239 "Error: CONFIG_USB_OHCI_BIG_ENDIAN_DESC not set\n");
240 err = -EINVAL;
Maxime Ripard4615f3b2014-05-13 17:44:20 +0200241 goto err_reset;
Alan Sternadff5292014-02-11 11:26:00 -0500242 }
243#endif
244
Tony Lindgren0aa0b932017-05-25 09:13:31 -0700245 pm_runtime_set_active(&dev->dev);
246 pm_runtime_enable(&dev->dev);
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700247 if (pdata->power_on) {
248 err = pdata->power_on(dev);
249 if (err < 0)
Maxime Ripard4615f3b2014-05-13 17:44:20 +0200250 goto err_reset;
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700251 }
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100252
Varka Bhadram7b519292014-11-04 07:51:16 +0530253 res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100254 hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
255 if (IS_ERR(hcd->regs)) {
256 err = PTR_ERR(hcd->regs);
Hans de Goedeca52a172014-02-07 16:36:40 +0100257 goto err_power;
Julia Lawallaece3892012-08-14 08:47:37 +0200258 }
Varka Bhadram7b519292014-11-04 07:51:16 +0530259 hcd->rsrc_start = res_mem->start;
260 hcd->rsrc_len = resource_size(res_mem);
261
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100262 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
263 if (err)
Hans de Goedeca52a172014-02-07 16:36:40 +0100264 goto err_power;
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100265
Peter Chen3c9740a2013-11-05 10:46:02 +0800266 device_wakeup_enable(hcd->self.controller);
267
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100268 platform_set_drvdata(dev, hcd);
269
270 return err;
271
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700272err_power:
273 if (pdata->power_off)
274 pdata->power_off(dev);
Maxime Ripard4615f3b2014-05-13 17:44:20 +0200275err_reset:
Tony Lindgren0aa0b932017-05-25 09:13:31 -0700276 pm_runtime_disable(&dev->dev);
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900277 reset_control_assert(priv->resets);
Hans de Goedeca52a172014-02-07 16:36:40 +0100278err_put_clks:
279 while (--clk >= 0)
280 clk_put(priv->clks[clk]);
281err_put_hcd:
282 if (pdata == &ohci_platform_defaults)
283 dev->dev.platform_data = NULL;
284
285 usb_put_hcd(hcd);
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700286
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100287 return err;
288}
289
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500290static int ohci_platform_remove(struct platform_device *dev)
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100291{
292 struct usb_hcd *hcd = platform_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900293 struct usb_ohci_pdata *pdata = dev_get_platdata(&dev->dev);
Hans de Goedeca52a172014-02-07 16:36:40 +0100294 struct ohci_platform_priv *priv = hcd_to_ohci_priv(hcd);
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900295 int clk;
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100296
Tony Lindgren0aa0b932017-05-25 09:13:31 -0700297 pm_runtime_get_sync(&dev->dev);
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100298 usb_remove_hcd(hcd);
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100299
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700300 if (pdata->power_off)
301 pdata->power_off(dev);
302
Masahiro Yamada20a7f3a2017-11-02 01:01:59 +0900303 reset_control_assert(priv->resets);
Maxime Ripard4615f3b2014-05-13 17:44:20 +0200304
Hans de Goedeca52a172014-02-07 16:36:40 +0100305 for (clk = 0; clk < OHCI_MAX_CLKS && priv->clks[clk]; clk++)
306 clk_put(priv->clks[clk]);
307
308 usb_put_hcd(hcd);
309
Tony Lindgren0aa0b932017-05-25 09:13:31 -0700310 pm_runtime_put_sync(&dev->dev);
311 pm_runtime_disable(&dev->dev);
312
Hans de Goedeca52a172014-02-07 16:36:40 +0100313 if (pdata == &ohci_platform_defaults)
314 dev->dev.platform_data = NULL;
315
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100316 return 0;
317}
318
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900319#ifdef CONFIG_PM_SLEEP
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100320static int ohci_platform_suspend(struct device *dev)
321{
Manjunath Goudar39dbd7d2013-10-04 09:58:14 +0530322 struct usb_hcd *hcd = dev_get_drvdata(dev);
323 struct usb_ohci_pdata *pdata = dev->platform_data;
Geliang Tang20db5512015-12-23 21:26:52 +0800324 struct platform_device *pdev = to_platform_device(dev);
Manjunath Goudar39dbd7d2013-10-04 09:58:14 +0530325 bool do_wakeup = device_may_wakeup(dev);
326 int ret;
327
328 ret = ohci_suspend(hcd, do_wakeup);
329 if (ret)
330 return ret;
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700331
332 if (pdata->power_suspend)
333 pdata->power_suspend(pdev);
334
Manjunath Goudar39dbd7d2013-10-04 09:58:14 +0530335 return ret;
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100336}
337
338static int ohci_platform_resume(struct device *dev)
339{
340 struct usb_hcd *hcd = dev_get_drvdata(dev);
Jingoo Hand4f09e22013-07-30 19:59:40 +0900341 struct usb_ohci_pdata *pdata = dev_get_platdata(dev);
Geliang Tang20db5512015-12-23 21:26:52 +0800342 struct platform_device *pdev = to_platform_device(dev);
Kuninori Morimotoe4d37ae2012-08-06 18:09:10 -0700343
344 if (pdata->power_on) {
345 int err = pdata->power_on(pdev);
346 if (err < 0)
347 return err;
348 }
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100349
Florian Fainellicfa49b42012-10-08 15:11:29 +0200350 ohci_resume(hcd, false);
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100351 return 0;
352}
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900353#endif /* CONFIG_PM_SLEEP */
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100354
Hans de Goedeca52a172014-02-07 16:36:40 +0100355static const struct of_device_id ohci_platform_ids[] = {
Hans de Goedece149c32014-02-11 17:35:28 +0100356 { .compatible = "generic-ohci", },
Andreas Herrmanna95cfa62015-01-06 13:48:56 +0100357 { .compatible = "cavium,octeon-6335-ohci", },
Tony Lindgren2545d852017-05-25 09:13:32 -0700358 { .compatible = "ti,ohci-omap3", },
Hans de Goedeca52a172014-02-07 16:36:40 +0100359 { }
360};
361MODULE_DEVICE_TABLE(of, ohci_platform_ids);
362
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100363static const struct platform_device_id ohci_platform_table[] = {
364 { "ohci-platform", 0 },
365 { }
366};
367MODULE_DEVICE_TABLE(platform, ohci_platform_table);
368
Wonhong Kwon5e4ccd92014-10-24 13:45:47 +0900369static SIMPLE_DEV_PM_OPS(ohci_platform_pm_ops, ohci_platform_suspend,
370 ohci_platform_resume);
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100371
372static struct platform_driver ohci_platform_driver = {
373 .id_table = ohci_platform_table,
374 .probe = ohci_platform_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500375 .remove = ohci_platform_remove,
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100376 .shutdown = usb_hcd_platform_shutdown,
377 .driver = {
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100378 .name = "ohci-platform",
379 .pm = &ohci_platform_pm_ops,
Hans de Goedeca52a172014-02-07 16:36:40 +0100380 .of_match_table = ohci_platform_ids,
Hauke Mehrtensfa3364b2012-03-13 01:04:47 +0100381 }
382};
Manjunath Goudar928fb682013-06-03 20:46:08 +0530383
384static int __init ohci_platform_init(void)
385{
386 if (usb_disabled())
387 return -ENODEV;
388
389 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
390
391 ohci_init_driver(&ohci_platform_hc_driver, &platform_overrides);
392 return platform_driver_register(&ohci_platform_driver);
393}
394module_init(ohci_platform_init);
395
396static void __exit ohci_platform_cleanup(void)
397{
398 platform_driver_unregister(&ohci_platform_driver);
399}
400module_exit(ohci_platform_cleanup);
401
402MODULE_DESCRIPTION(DRIVER_DESC);
403MODULE_AUTHOR("Hauke Mehrtens");
404MODULE_AUTHOR("Alan Stern");
405MODULE_LICENSE("GPL");