blob: 131d7826dc6bea61f5db2b8ef85f14d0b4d985a5 [file] [log] [blame]
Thomas Choufb5bbee2009-10-12 21:35:00 -07001/*
2 * Altera University Program PS2 controller driver
3 *
4 * Copyright (C) 2008 Thomas Chou <thomas@wytron.com.tw>
5 *
6 * Based on sa1111ps2.c, which is:
7 * Copyright (C) 2002 Russell King
8 *
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.
12 */
13
14#include <linux/module.h>
Thomas Choufb5bbee2009-10-12 21:35:00 -070015#include <linux/input.h>
16#include <linux/serio.h>
17#include <linux/interrupt.h>
18#include <linux/platform_device.h>
19#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Walter Goossens0bfd95a2011-02-14 10:06:42 +080021#include <linux/of.h>
Thomas Choufb5bbee2009-10-12 21:35:00 -070022
23#define DRV_NAME "altera_ps2"
24
25struct ps2if {
26 struct serio *io;
Thomas Choufb5bbee2009-10-12 21:35:00 -070027 void __iomem *base;
Thomas Choufb5bbee2009-10-12 21:35:00 -070028};
29
30/*
31 * Read all bytes waiting in the PS2 port. There should be
32 * at the most one, but we loop for safety.
33 */
34static irqreturn_t altera_ps2_rxint(int irq, void *dev_id)
35{
36 struct ps2if *ps2if = dev_id;
37 unsigned int status;
Tobias Klauser5f77fc42014-10-31 09:16:41 -070038 irqreturn_t handled = IRQ_NONE;
Thomas Choufb5bbee2009-10-12 21:35:00 -070039
40 while ((status = readl(ps2if->base)) & 0xffff0000) {
41 serio_interrupt(ps2if->io, status & 0xff, 0);
42 handled = IRQ_HANDLED;
43 }
44
45 return handled;
46}
47
48/*
49 * Write a byte to the PS2 port.
50 */
51static int altera_ps2_write(struct serio *io, unsigned char val)
52{
53 struct ps2if *ps2if = io->port_data;
54
55 writel(val, ps2if->base);
56 return 0;
57}
58
59static int altera_ps2_open(struct serio *io)
60{
61 struct ps2if *ps2if = io->port_data;
62
63 /* clear fifo */
64 while (readl(ps2if->base) & 0xffff0000)
65 /* empty */;
66
67 writel(1, ps2if->base + 4); /* enable rx irq */
68 return 0;
69}
70
71static void altera_ps2_close(struct serio *io)
72{
73 struct ps2if *ps2if = io->port_data;
74
Tobias Klauserd0269b82014-10-31 09:16:19 -070075 writel(0, ps2if->base + 4); /* disable rx irq */
Thomas Choufb5bbee2009-10-12 21:35:00 -070076}
77
78/*
79 * Add one device to this driver.
80 */
Bill Pemberton5298cc42012-11-23 21:38:25 -080081static int altera_ps2_probe(struct platform_device *pdev)
Thomas Choufb5bbee2009-10-12 21:35:00 -070082{
83 struct ps2if *ps2if;
Tobias Klausera823c262014-10-31 09:16:51 -070084 struct resource *res;
Thomas Choufb5bbee2009-10-12 21:35:00 -070085 struct serio *serio;
Roel Kluin909275b2009-12-15 09:15:48 -080086 int error, irq;
Thomas Choufb5bbee2009-10-12 21:35:00 -070087
Tobias Klausera823c262014-10-31 09:16:51 -070088 ps2if = devm_kzalloc(&pdev->dev, sizeof(struct ps2if), GFP_KERNEL);
89 if (!ps2if)
90 return -ENOMEM;
91
92 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
93 ps2if->base = devm_ioremap_resource(&pdev->dev, res);
94 if (IS_ERR(ps2if->base))
95 return PTR_ERR(ps2if->base);
96
97 irq = platform_get_irq(pdev, 0);
98 if (irq < 0)
99 return -ENXIO;
100
101 error = devm_request_irq(&pdev->dev, irq, altera_ps2_rxint, 0,
102 pdev->name, ps2if);
103 if (error) {
104 dev_err(&pdev->dev, "could not request IRQ %d\n", irq);
105 return error;
Thomas Choufb5bbee2009-10-12 21:35:00 -0700106 }
107
Tobias Klausera823c262014-10-31 09:16:51 -0700108 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
109 if (!serio)
110 return -ENOMEM;
111
Thomas Choufb5bbee2009-10-12 21:35:00 -0700112 serio->id.type = SERIO_8042;
113 serio->write = altera_ps2_write;
114 serio->open = altera_ps2_open;
115 serio->close = altera_ps2_close;
116 strlcpy(serio->name, dev_name(&pdev->dev), sizeof(serio->name));
117 strlcpy(serio->phys, dev_name(&pdev->dev), sizeof(serio->phys));
118 serio->port_data = ps2if;
119 serio->dev.parent = &pdev->dev;
120 ps2if->io = serio;
121
Tobias Klausera823c262014-10-31 09:16:51 -0700122 dev_info(&pdev->dev, "base %p, irq %d\n", ps2if->base, irq);
Thomas Choufb5bbee2009-10-12 21:35:00 -0700123
124 serio_register_port(ps2if->io);
125 platform_set_drvdata(pdev, ps2if);
126
127 return 0;
Thomas Choufb5bbee2009-10-12 21:35:00 -0700128}
129
130/*
131 * Remove one device from this driver.
132 */
Bill Pembertone2619cf2012-11-23 21:50:47 -0800133static int altera_ps2_remove(struct platform_device *pdev)
Thomas Choufb5bbee2009-10-12 21:35:00 -0700134{
135 struct ps2if *ps2if = platform_get_drvdata(pdev);
136
Thomas Choufb5bbee2009-10-12 21:35:00 -0700137 serio_unregister_port(ps2if->io);
Thomas Choufb5bbee2009-10-12 21:35:00 -0700138
139 return 0;
140}
141
Walter Goossens0bfd95a2011-02-14 10:06:42 +0800142#ifdef CONFIG_OF
143static const struct of_device_id altera_ps2_match[] = {
144 { .compatible = "ALTR,ps2-1.0", },
Dinh Nguyen13960b42013-08-14 15:25:19 -0500145 { .compatible = "altr,ps2-1.0", },
Walter Goossens0bfd95a2011-02-14 10:06:42 +0800146 {},
147};
148MODULE_DEVICE_TABLE(of, altera_ps2_match);
Walter Goossens0bfd95a2011-02-14 10:06:42 +0800149#endif /* CONFIG_OF */
150
Thomas Choufb5bbee2009-10-12 21:35:00 -0700151/*
152 * Our device driver structure
153 */
154static struct platform_driver altera_ps2_driver = {
155 .probe = altera_ps2_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800156 .remove = altera_ps2_remove,
Thomas Choufb5bbee2009-10-12 21:35:00 -0700157 .driver = {
158 .name = DRV_NAME,
Tobias Klauser14b58422012-03-16 23:31:25 -0700159 .of_match_table = of_match_ptr(altera_ps2_match),
Thomas Choufb5bbee2009-10-12 21:35:00 -0700160 },
161};
JJ Ding24d24692011-11-29 11:08:43 -0800162module_platform_driver(altera_ps2_driver);
Thomas Choufb5bbee2009-10-12 21:35:00 -0700163
164MODULE_DESCRIPTION("Altera University Program PS2 controller driver");
165MODULE_AUTHOR("Thomas Chou <thomas@wytron.com.tw>");
166MODULE_LICENSE("GPL");
167MODULE_ALIAS("platform:" DRV_NAME);