2 * Altera University Program PS2 controller driver
4 * Copyright (C) 2008 Thomas Chou <thomas@wytron.com.tw>
6 * Based on sa1111ps2.c, which is:
7 * Copyright (C) 2002 Russell King
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/input.h>
17 #include <linux/serio.h>
18 #include <linux/interrupt.h>
19 #include <linux/platform_device.h>
21 #include <linux/slab.h>
24 #define DRV_NAME "altera_ps2"
28 struct resource *iomem_res;
34 * Read all bytes waiting in the PS2 port. There should be
35 * at the most one, but we loop for safety.
37 static irqreturn_t altera_ps2_rxint(int irq, void *dev_id)
39 struct ps2if *ps2if = dev_id;
41 int handled = IRQ_NONE;
43 while ((status = readl(ps2if->base)) & 0xffff0000) {
44 serio_interrupt(ps2if->io, status & 0xff, 0);
45 handled = IRQ_HANDLED;
52 * Write a byte to the PS2 port.
54 static int altera_ps2_write(struct serio *io, unsigned char val)
56 struct ps2if *ps2if = io->port_data;
58 writel(val, ps2if->base);
62 static int altera_ps2_open(struct serio *io)
64 struct ps2if *ps2if = io->port_data;
67 while (readl(ps2if->base) & 0xffff0000)
70 writel(1, ps2if->base + 4); /* enable rx irq */
74 static void altera_ps2_close(struct serio *io)
76 struct ps2if *ps2if = io->port_data;
78 writel(0, ps2if->base); /* disable rx irq */
82 * Add one device to this driver.
84 static int altera_ps2_probe(struct platform_device *pdev)
90 ps2if = kzalloc(sizeof(struct ps2if), GFP_KERNEL);
91 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
92 if (!ps2if || !serio) {
97 serio->id.type = SERIO_8042;
98 serio->write = altera_ps2_write;
99 serio->open = altera_ps2_open;
100 serio->close = altera_ps2_close;
101 strlcpy(serio->name, dev_name(&pdev->dev), sizeof(serio->name));
102 strlcpy(serio->phys, dev_name(&pdev->dev), sizeof(serio->phys));
103 serio->port_data = ps2if;
104 serio->dev.parent = &pdev->dev;
107 ps2if->iomem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
108 if (ps2if->iomem_res == NULL) {
114 irq = platform_get_irq(pdev, 0);
121 if (!request_mem_region(ps2if->iomem_res->start,
122 resource_size(ps2if->iomem_res), pdev->name)) {
127 ps2if->base = ioremap(ps2if->iomem_res->start,
128 resource_size(ps2if->iomem_res));
134 error = request_irq(ps2if->irq, altera_ps2_rxint, 0, pdev->name, ps2if);
136 dev_err(&pdev->dev, "could not allocate IRQ %d: %d\n",
141 dev_info(&pdev->dev, "base %p, irq %d\n", ps2if->base, ps2if->irq);
143 serio_register_port(ps2if->io);
144 platform_set_drvdata(pdev, ps2if);
149 iounmap(ps2if->base);
151 release_mem_region(ps2if->iomem_res->start,
152 resource_size(ps2if->iomem_res));
160 * Remove one device from this driver.
162 static int altera_ps2_remove(struct platform_device *pdev)
164 struct ps2if *ps2if = platform_get_drvdata(pdev);
166 serio_unregister_port(ps2if->io);
167 free_irq(ps2if->irq, ps2if);
168 iounmap(ps2if->base);
169 release_mem_region(ps2if->iomem_res->start,
170 resource_size(ps2if->iomem_res));
177 static const struct of_device_id altera_ps2_match[] = {
178 { .compatible = "ALTR,ps2-1.0", },
181 MODULE_DEVICE_TABLE(of, altera_ps2_match);
182 #endif /* CONFIG_OF */
185 * Our device driver structure
187 static struct platform_driver altera_ps2_driver = {
188 .probe = altera_ps2_probe,
189 .remove = altera_ps2_remove,
192 .owner = THIS_MODULE,
193 .of_match_table = of_match_ptr(altera_ps2_match),
196 module_platform_driver(altera_ps2_driver);
198 MODULE_DESCRIPTION("Altera University Program PS2 controller driver");
199 MODULE_AUTHOR("Thomas Chou <thomas@wytron.com.tw>");
200 MODULE_LICENSE("GPL");
201 MODULE_ALIAS("platform:" DRV_NAME);