blob: e4154b2a23ce2db710a5d9f88ce7089e16f83207 [file] [log] [blame]
Ley Foon Taneaa61112015-10-23 18:27:12 +08001/*
2 * Copyright Altera Corporation (C) 2013-2015. All rights reserved
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include <linux/delay.h>
18#include <linux/interrupt.h>
19#include <linux/irqchip/chained_irq.h>
20#include <linux/module.h>
21#include <linux/of_address.h>
22#include <linux/of_irq.h>
23#include <linux/of_pci.h>
24#include <linux/pci.h>
25#include <linux/platform_device.h>
26#include <linux/slab.h>
27
28#define RP_TX_REG0 0x2000
29#define RP_TX_REG1 0x2004
30#define RP_TX_CNTRL 0x2008
31#define RP_TX_EOP 0x2
32#define RP_TX_SOP 0x1
33#define RP_RXCPL_STATUS 0x2010
34#define RP_RXCPL_EOP 0x2
35#define RP_RXCPL_SOP 0x1
36#define RP_RXCPL_REG0 0x2014
37#define RP_RXCPL_REG1 0x2018
38#define P2A_INT_STATUS 0x3060
39#define P2A_INT_STS_ALL 0xf
40#define P2A_INT_ENABLE 0x3070
41#define P2A_INT_ENA_ALL 0xf
42#define RP_LTSSM 0x3c64
Ley Foon Taneff31f42016-03-02 17:43:07 +080043#define RP_LTSSM_MASK 0x1f
Ley Foon Taneaa61112015-10-23 18:27:12 +080044#define LTSSM_L0 0xf
45
46/* TLP configuration type 0 and 1 */
47#define TLP_FMTTYPE_CFGRD0 0x04 /* Configuration Read Type 0 */
48#define TLP_FMTTYPE_CFGWR0 0x44 /* Configuration Write Type 0 */
49#define TLP_FMTTYPE_CFGRD1 0x05 /* Configuration Read Type 1 */
50#define TLP_FMTTYPE_CFGWR1 0x45 /* Configuration Write Type 1 */
51#define TLP_PAYLOAD_SIZE 0x01
52#define TLP_READ_TAG 0x1d
53#define TLP_WRITE_TAG 0x10
54#define TLP_CFG_DW0(fmttype) (((fmttype) << 24) | TLP_PAYLOAD_SIZE)
55#define TLP_CFG_DW1(reqid, tag, be) (((reqid) << 16) | (tag << 8) | (be))
56#define TLP_CFG_DW2(bus, devfn, offset) \
57 (((bus) << 24) | ((devfn) << 16) | (offset))
58#define TLP_REQ_ID(bus, devfn) (((bus) << 8) | (devfn))
Ley Foon Tanea1d3792015-12-04 16:21:16 -060059#define TLP_COMP_STATUS(s) (((s) >> 12) & 7)
Ley Foon Taneaa61112015-10-23 18:27:12 +080060#define TLP_HDR_SIZE 3
61#define TLP_LOOP 500
Ley Foon Tan23ec5672015-12-04 16:21:12 -060062#define RP_DEVFN 0
Ley Foon Taneaa61112015-10-23 18:27:12 +080063
Ley Foon Tan3a928e92016-06-21 16:53:13 +080064#define LINK_UP_TIMEOUT 5000
65
Ley Foon Taneaa61112015-10-23 18:27:12 +080066#define INTX_NUM 4
67
68#define DWORD_MASK 3
69
70struct altera_pcie {
71 struct platform_device *pdev;
72 void __iomem *cra_base;
73 int irq;
74 u8 root_bus_nr;
75 struct irq_domain *irq_domain;
76 struct resource bus_range;
77 struct list_head resources;
78};
79
80struct tlp_rp_regpair_t {
81 u32 ctrl;
82 u32 reg0;
83 u32 reg1;
84};
85
Bjorn Helgaasf8be11a2016-07-22 15:54:41 -050086static inline void cra_writel(struct altera_pcie *pcie, const u32 value,
87 const u32 reg)
88{
89 writel_relaxed(value, pcie->cra_base + reg);
90}
91
92static inline u32 cra_readl(struct altera_pcie *pcie, const u32 reg)
93{
94 return readl_relaxed(pcie->cra_base + reg);
95}
96
97static bool altera_pcie_link_is_up(struct altera_pcie *pcie)
98{
99 return !!((cra_readl(pcie, RP_LTSSM) & RP_LTSSM_MASK) == LTSSM_L0);
100}
101
Ley Foon Taneaa61112015-10-23 18:27:12 +0800102static void altera_pcie_retrain(struct pci_dev *dev)
103{
104 u16 linkcap, linkstat;
Ley Foon Tanc6220322016-06-21 16:53:12 +0800105 struct altera_pcie *pcie = dev->bus->sysdata;
Ley Foon Tan3a928e92016-06-21 16:53:13 +0800106 int timeout = 0;
Ley Foon Tanc6220322016-06-21 16:53:12 +0800107
108 if (!altera_pcie_link_is_up(pcie))
109 return;
Ley Foon Taneaa61112015-10-23 18:27:12 +0800110
111 /*
112 * Set the retrain bit if the PCIe rootport support > 2.5GB/s, but
113 * current speed is 2.5 GB/s.
114 */
115 pcie_capability_read_word(dev, PCI_EXP_LNKCAP, &linkcap);
116
117 if ((linkcap & PCI_EXP_LNKCAP_SLS) <= PCI_EXP_LNKCAP_SLS_2_5GB)
118 return;
119
120 pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &linkstat);
Ley Foon Tan3a928e92016-06-21 16:53:13 +0800121 if ((linkstat & PCI_EXP_LNKSTA_CLS) == PCI_EXP_LNKSTA_CLS_2_5GB) {
Ley Foon Taneaa61112015-10-23 18:27:12 +0800122 pcie_capability_set_word(dev, PCI_EXP_LNKCTL,
123 PCI_EXP_LNKCTL_RL);
Ley Foon Tan3a928e92016-06-21 16:53:13 +0800124 while (!altera_pcie_link_is_up(pcie)) {
125 timeout++;
126 if (timeout > LINK_UP_TIMEOUT)
127 break;
128 udelay(5);
129 }
130 }
Ley Foon Taneaa61112015-10-23 18:27:12 +0800131}
132DECLARE_PCI_FIXUP_EARLY(0x1172, PCI_ANY_ID, altera_pcie_retrain);
133
134/*
135 * Altera PCIe port uses BAR0 of RC's configuration space as the translation
136 * from PCI bus to native BUS. Entire DDR region is mapped into PCIe space
137 * using these registers, so it can be reached by DMA from EP devices.
138 * This BAR0 will also access to MSI vector when receiving MSI/MSIX interrupt
139 * from EP devices, eventually trigger interrupt to GIC. The BAR0 of bridge
140 * should be hidden during enumeration to avoid the sizing and resource
141 * allocation by PCIe core.
142 */
143static bool altera_pcie_hide_rc_bar(struct pci_bus *bus, unsigned int devfn,
144 int offset)
145{
146 if (pci_is_root_bus(bus) && (devfn == 0) &&
147 (offset == PCI_BASE_ADDRESS_0))
148 return true;
149
150 return false;
151}
152
Ley Foon Taneaa61112015-10-23 18:27:12 +0800153static void tlp_write_tx(struct altera_pcie *pcie,
154 struct tlp_rp_regpair_t *tlp_rp_regdata)
155{
156 cra_writel(pcie, tlp_rp_regdata->reg0, RP_TX_REG0);
157 cra_writel(pcie, tlp_rp_regdata->reg1, RP_TX_REG1);
158 cra_writel(pcie, tlp_rp_regdata->ctrl, RP_TX_CNTRL);
159}
160
Ley Foon Taneaa61112015-10-23 18:27:12 +0800161static bool altera_pcie_valid_config(struct altera_pcie *pcie,
162 struct pci_bus *bus, int dev)
163{
164 /* If there is no link, then there is no device */
165 if (bus->number != pcie->root_bus_nr) {
166 if (!altera_pcie_link_is_up(pcie))
167 return false;
168 }
169
170 /* access only one slot on each root port */
171 if (bus->number == pcie->root_bus_nr && dev > 0)
172 return false;
173
174 /*
175 * Do not read more than one device on the bus directly attached
176 * to root port, root port can only attach to one downstream port.
177 */
178 if (bus->primary == pcie->root_bus_nr && dev > 0)
179 return false;
180
181 return true;
182}
183
184static int tlp_read_packet(struct altera_pcie *pcie, u32 *value)
185{
Dan Carpenter7f52f312015-12-04 16:21:08 -0600186 int i;
Ley Foon Taneaa61112015-10-23 18:27:12 +0800187 bool sop = 0;
188 u32 ctrl;
189 u32 reg0, reg1;
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600190 u32 comp_status = 1;
Ley Foon Taneaa61112015-10-23 18:27:12 +0800191
192 /*
193 * Minimum 2 loops to read TLP headers and 1 loop to read data
194 * payload.
195 */
Dan Carpenter7f52f312015-12-04 16:21:08 -0600196 for (i = 0; i < TLP_LOOP; i++) {
Ley Foon Taneaa61112015-10-23 18:27:12 +0800197 ctrl = cra_readl(pcie, RP_RXCPL_STATUS);
198 if ((ctrl & RP_RXCPL_SOP) || (ctrl & RP_RXCPL_EOP) || sop) {
199 reg0 = cra_readl(pcie, RP_RXCPL_REG0);
200 reg1 = cra_readl(pcie, RP_RXCPL_REG1);
201
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600202 if (ctrl & RP_RXCPL_SOP) {
Ley Foon Taneaa61112015-10-23 18:27:12 +0800203 sop = true;
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600204 comp_status = TLP_COMP_STATUS(reg1);
205 }
Ley Foon Taneaa61112015-10-23 18:27:12 +0800206
207 if (ctrl & RP_RXCPL_EOP) {
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600208 if (comp_status)
209 return PCIBIOS_DEVICE_NOT_FOUND;
210
Ley Foon Taneaa61112015-10-23 18:27:12 +0800211 if (value)
212 *value = reg0;
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600213
Ley Foon Taneaa61112015-10-23 18:27:12 +0800214 return PCIBIOS_SUCCESSFUL;
215 }
216 }
217 udelay(5);
218 }
219
Ley Foon Tanea1d3792015-12-04 16:21:16 -0600220 return PCIBIOS_DEVICE_NOT_FOUND;
Ley Foon Taneaa61112015-10-23 18:27:12 +0800221}
222
223static void tlp_write_packet(struct altera_pcie *pcie, u32 *headers,
224 u32 data, bool align)
225{
226 struct tlp_rp_regpair_t tlp_rp_regdata;
227
228 tlp_rp_regdata.reg0 = headers[0];
229 tlp_rp_regdata.reg1 = headers[1];
230 tlp_rp_regdata.ctrl = RP_TX_SOP;
231 tlp_write_tx(pcie, &tlp_rp_regdata);
232
233 if (align) {
234 tlp_rp_regdata.reg0 = headers[2];
235 tlp_rp_regdata.reg1 = 0;
236 tlp_rp_regdata.ctrl = 0;
237 tlp_write_tx(pcie, &tlp_rp_regdata);
238
239 tlp_rp_regdata.reg0 = data;
240 tlp_rp_regdata.reg1 = 0;
241 } else {
242 tlp_rp_regdata.reg0 = headers[2];
243 tlp_rp_regdata.reg1 = data;
244 }
245
246 tlp_rp_regdata.ctrl = RP_TX_EOP;
247 tlp_write_tx(pcie, &tlp_rp_regdata);
248}
249
250static int tlp_cfg_dword_read(struct altera_pcie *pcie, u8 bus, u32 devfn,
251 int where, u8 byte_en, u32 *value)
252{
253 u32 headers[TLP_HDR_SIZE];
254
255 if (bus == pcie->root_bus_nr)
256 headers[0] = TLP_CFG_DW0(TLP_FMTTYPE_CFGRD0);
257 else
258 headers[0] = TLP_CFG_DW0(TLP_FMTTYPE_CFGRD1);
259
Ley Foon Tan23ec5672015-12-04 16:21:12 -0600260 headers[1] = TLP_CFG_DW1(TLP_REQ_ID(pcie->root_bus_nr, RP_DEVFN),
Ley Foon Taneaa61112015-10-23 18:27:12 +0800261 TLP_READ_TAG, byte_en);
262 headers[2] = TLP_CFG_DW2(bus, devfn, where);
263
264 tlp_write_packet(pcie, headers, 0, false);
265
266 return tlp_read_packet(pcie, value);
267}
268
269static int tlp_cfg_dword_write(struct altera_pcie *pcie, u8 bus, u32 devfn,
270 int where, u8 byte_en, u32 value)
271{
272 u32 headers[TLP_HDR_SIZE];
273 int ret;
274
275 if (bus == pcie->root_bus_nr)
276 headers[0] = TLP_CFG_DW0(TLP_FMTTYPE_CFGWR0);
277 else
278 headers[0] = TLP_CFG_DW0(TLP_FMTTYPE_CFGWR1);
279
Ley Foon Tan23ec5672015-12-04 16:21:12 -0600280 headers[1] = TLP_CFG_DW1(TLP_REQ_ID(pcie->root_bus_nr, RP_DEVFN),
Ley Foon Taneaa61112015-10-23 18:27:12 +0800281 TLP_WRITE_TAG, byte_en);
282 headers[2] = TLP_CFG_DW2(bus, devfn, where);
283
284 /* check alignment to Qword */
285 if ((where & 0x7) == 0)
286 tlp_write_packet(pcie, headers, value, true);
287 else
288 tlp_write_packet(pcie, headers, value, false);
289
290 ret = tlp_read_packet(pcie, NULL);
291 if (ret != PCIBIOS_SUCCESSFUL)
292 return ret;
293
294 /*
295 * Monitor changes to PCI_PRIMARY_BUS register on root port
296 * and update local copy of root bus number accordingly.
297 */
298 if ((bus == pcie->root_bus_nr) && (where == PCI_PRIMARY_BUS))
299 pcie->root_bus_nr = (u8)(value);
300
301 return PCIBIOS_SUCCESSFUL;
302}
303
304static int altera_pcie_cfg_read(struct pci_bus *bus, unsigned int devfn,
305 int where, int size, u32 *value)
306{
307 struct altera_pcie *pcie = bus->sysdata;
308 int ret;
309 u32 data;
310 u8 byte_en;
311
312 if (altera_pcie_hide_rc_bar(bus, devfn, where))
313 return PCIBIOS_BAD_REGISTER_NUMBER;
314
315 if (!altera_pcie_valid_config(pcie, bus, PCI_SLOT(devfn))) {
316 *value = 0xffffffff;
317 return PCIBIOS_DEVICE_NOT_FOUND;
318 }
319
320 switch (size) {
321 case 1:
322 byte_en = 1 << (where & 3);
323 break;
324 case 2:
325 byte_en = 3 << (where & 3);
326 break;
327 default:
328 byte_en = 0xf;
329 break;
330 }
331
332 ret = tlp_cfg_dword_read(pcie, bus->number, devfn,
333 (where & ~DWORD_MASK), byte_en, &data);
334 if (ret != PCIBIOS_SUCCESSFUL)
335 return ret;
336
337 switch (size) {
338 case 1:
339 *value = (data >> (8 * (where & 0x3))) & 0xff;
340 break;
341 case 2:
342 *value = (data >> (8 * (where & 0x2))) & 0xffff;
343 break;
344 default:
345 *value = data;
346 break;
347 }
348
349 return PCIBIOS_SUCCESSFUL;
350}
351
352static int altera_pcie_cfg_write(struct pci_bus *bus, unsigned int devfn,
353 int where, int size, u32 value)
354{
355 struct altera_pcie *pcie = bus->sysdata;
356 u32 data32;
357 u32 shift = 8 * (where & 3);
358 u8 byte_en;
359
360 if (altera_pcie_hide_rc_bar(bus, devfn, where))
361 return PCIBIOS_BAD_REGISTER_NUMBER;
362
363 if (!altera_pcie_valid_config(pcie, bus, PCI_SLOT(devfn)))
364 return PCIBIOS_DEVICE_NOT_FOUND;
365
366 switch (size) {
367 case 1:
368 data32 = (value & 0xff) << shift;
369 byte_en = 1 << (where & 3);
370 break;
371 case 2:
372 data32 = (value & 0xffff) << shift;
373 byte_en = 3 << (where & 3);
374 break;
375 default:
376 data32 = value;
377 byte_en = 0xf;
378 break;
379 }
380
381 return tlp_cfg_dword_write(pcie, bus->number, devfn,
382 (where & ~DWORD_MASK), byte_en, data32);
383}
384
385static struct pci_ops altera_pcie_ops = {
386 .read = altera_pcie_cfg_read,
387 .write = altera_pcie_cfg_write,
388};
389
390static int altera_pcie_intx_map(struct irq_domain *domain, unsigned int irq,
391 irq_hw_number_t hwirq)
392{
393 irq_set_chip_and_handler(irq, &dummy_irq_chip, handle_simple_irq);
394 irq_set_chip_data(irq, domain->host_data);
395
396 return 0;
397}
398
399static const struct irq_domain_ops intx_domain_ops = {
400 .map = altera_pcie_intx_map,
401};
402
403static void altera_pcie_isr(struct irq_desc *desc)
404{
405 struct irq_chip *chip = irq_desc_get_chip(desc);
406 struct altera_pcie *pcie;
407 unsigned long status;
408 u32 bit;
409 u32 virq;
410
411 chained_irq_enter(chip, desc);
412 pcie = irq_desc_get_handler_data(desc);
413
414 while ((status = cra_readl(pcie, P2A_INT_STATUS)
415 & P2A_INT_STS_ALL) != 0) {
416 for_each_set_bit(bit, &status, INTX_NUM) {
417 /* clear interrupts */
418 cra_writel(pcie, 1 << bit, P2A_INT_STATUS);
419
420 virq = irq_find_mapping(pcie->irq_domain, bit + 1);
421 if (virq)
422 generic_handle_irq(virq);
423 else
424 dev_err(&pcie->pdev->dev,
425 "unexpected IRQ, INT%d\n", bit);
426 }
427 }
428
429 chained_irq_exit(chip, desc);
430}
431
432static void altera_pcie_release_of_pci_ranges(struct altera_pcie *pcie)
433{
434 pci_free_resource_list(&pcie->resources);
435}
436
437static int altera_pcie_parse_request_of_pci_ranges(struct altera_pcie *pcie)
438{
439 int err, res_valid = 0;
440 struct device *dev = &pcie->pdev->dev;
441 struct device_node *np = dev->of_node;
442 struct resource_entry *win;
443
444 err = of_pci_get_host_bridge_resources(np, 0, 0xff, &pcie->resources,
445 NULL);
446 if (err)
447 return err;
448
449 resource_list_for_each_entry(win, &pcie->resources) {
450 struct resource *parent, *res = win->res;
451
452 switch (resource_type(res)) {
453 case IORESOURCE_MEM:
454 parent = &iomem_resource;
455 res_valid |= !(res->flags & IORESOURCE_PREFETCH);
456 break;
457 default:
458 continue;
459 }
460
461 err = devm_request_resource(dev, parent, res);
462 if (err)
463 goto out_release_res;
464 }
465
466 if (!res_valid) {
467 dev_err(dev, "non-prefetchable memory resource required\n");
468 err = -EINVAL;
469 goto out_release_res;
470 }
471
472 return 0;
473
474out_release_res:
475 altera_pcie_release_of_pci_ranges(pcie);
476 return err;
477}
478
479static int altera_pcie_init_irq_domain(struct altera_pcie *pcie)
480{
481 struct device *dev = &pcie->pdev->dev;
482 struct device_node *node = dev->of_node;
483
484 /* Setup INTx */
Ley Foon Tan99496bd2015-12-04 16:21:21 -0600485 pcie->irq_domain = irq_domain_add_linear(node, INTX_NUM + 1,
Ley Foon Taneaa61112015-10-23 18:27:12 +0800486 &intx_domain_ops, pcie);
487 if (!pcie->irq_domain) {
488 dev_err(dev, "Failed to get a INTx IRQ domain\n");
489 return -ENOMEM;
490 }
491
492 return 0;
493}
494
495static int altera_pcie_parse_dt(struct altera_pcie *pcie)
496{
497 struct resource *cra;
498 struct platform_device *pdev = pcie->pdev;
499
500 cra = platform_get_resource_byname(pdev, IORESOURCE_MEM, "Cra");
501 if (!cra) {
502 dev_err(&pdev->dev, "no Cra memory resource defined\n");
503 return -ENODEV;
504 }
505
506 pcie->cra_base = devm_ioremap_resource(&pdev->dev, cra);
507 if (IS_ERR(pcie->cra_base)) {
508 dev_err(&pdev->dev, "failed to map cra memory\n");
509 return PTR_ERR(pcie->cra_base);
510 }
511
512 /* setup IRQ */
513 pcie->irq = platform_get_irq(pdev, 0);
514 if (pcie->irq <= 0) {
515 dev_err(&pdev->dev, "failed to get IRQ: %d\n", pcie->irq);
516 return -EINVAL;
517 }
518
519 irq_set_chained_handler_and_data(pcie->irq, altera_pcie_isr, pcie);
520
521 return 0;
522}
523
524static int altera_pcie_probe(struct platform_device *pdev)
525{
526 struct altera_pcie *pcie;
527 struct pci_bus *bus;
528 struct pci_bus *child;
529 int ret;
530
531 pcie = devm_kzalloc(&pdev->dev, sizeof(*pcie), GFP_KERNEL);
532 if (!pcie)
533 return -ENOMEM;
534
535 pcie->pdev = pdev;
536
537 ret = altera_pcie_parse_dt(pcie);
538 if (ret) {
539 dev_err(&pdev->dev, "Parsing DT failed\n");
540 return ret;
541 }
542
543 INIT_LIST_HEAD(&pcie->resources);
544
545 ret = altera_pcie_parse_request_of_pci_ranges(pcie);
546 if (ret) {
547 dev_err(&pdev->dev, "Failed add resources\n");
548 return ret;
549 }
550
551 ret = altera_pcie_init_irq_domain(pcie);
552 if (ret) {
553 dev_err(&pdev->dev, "Failed creating IRQ Domain\n");
554 return ret;
555 }
556
557 /* clear all interrupts */
558 cra_writel(pcie, P2A_INT_STS_ALL, P2A_INT_STATUS);
559 /* enable all interrupts */
560 cra_writel(pcie, P2A_INT_ENA_ALL, P2A_INT_ENABLE);
561
562 bus = pci_scan_root_bus(&pdev->dev, pcie->root_bus_nr, &altera_pcie_ops,
563 pcie, &pcie->resources);
564 if (!bus)
565 return -ENOMEM;
566
567 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
568 pci_assign_unassigned_bus_resources(bus);
569
570 /* Configure PCI Express setting. */
571 list_for_each_entry(child, &bus->children, node)
572 pcie_bus_configure_settings(child);
573
574 pci_bus_add_devices(bus);
575
576 platform_set_drvdata(pdev, pcie);
577 return ret;
578}
579
580static const struct of_device_id altera_pcie_of_match[] = {
581 { .compatible = "altr,pcie-root-port-1.0", },
582 {},
583};
584MODULE_DEVICE_TABLE(of, altera_pcie_of_match);
585
586static struct platform_driver altera_pcie_driver = {
587 .probe = altera_pcie_probe,
588 .driver = {
589 .name = "altera-pcie",
590 .of_match_table = altera_pcie_of_match,
591 .suppress_bind_attrs = true,
592 },
593};
594
595static int altera_pcie_init(void)
596{
597 return platform_driver_register(&altera_pcie_driver);
598}
599module_init(altera_pcie_init);
600
601MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
602MODULE_DESCRIPTION("Altera PCIe host controller driver");
603MODULE_LICENSE("GPL v2");