blob: 8e130bf7d32b9de5bb0da6158f7fa0bf31761911 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for PC-speaker like devices found on various Sparc systems.
3 *
4 * Copyright (c) 2002 Vojtech Pavlik
David S. Miller9c1a5072008-04-26 21:02:21 -07005 * Copyright (c) 2002, 2006, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/input.h>
David S. Miller9c1a5072008-04-26 21:02:21 -070011#include <linux/of_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
David S. Millera2bd4fd2006-06-23 01:44:10 -070016MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -050017MODULE_DESCRIPTION("Sparc Speaker beeper driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070018MODULE_LICENSE("GPL");
19
David S. Miller9c1a5072008-04-26 21:02:21 -070020struct grover_beep_info {
21 void __iomem *freq_regs;
22 void __iomem *enable_reg;
23};
24
25struct bbc_beep_info {
26 u32 clock_freq;
27 void __iomem *regs;
28};
29
David S. Millera2bd4fd2006-06-23 01:44:10 -070030struct sparcspkr_state {
31 const char *name;
David S. Millera2bd4fd2006-06-23 01:44:10 -070032 int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
33 spinlock_t lock;
34 struct input_dev *input_dev;
David S. Miller9c1a5072008-04-26 21:02:21 -070035 union {
36 struct grover_beep_info grover;
37 struct bbc_beep_info bbc;
38 } u;
David S. Millera2bd4fd2006-06-23 01:44:10 -070039};
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
David S. Miller9c1a5072008-04-26 21:02:21 -070041static u32 bbc_count_to_reg(struct bbc_beep_info *info, unsigned int count)
42{
43 u32 val, clock_freq = info->clock_freq;
44 int i;
45
46 if (!count)
47 return 0;
48
49 if (count <= clock_freq >> 20)
50 return 1 << 18;
51
52 if (count >= clock_freq >> 12)
53 return 1 << 10;
54
55 val = 1 << 18;
56 for (i = 19; i >= 11; i--) {
57 val >>= 1;
58 if (count <= clock_freq >> i)
59 break;
60 }
61
62 return val;
63}
64
65static int bbc_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Dmitry Torokhov293e6392007-04-12 01:35:32 -040067 struct sparcspkr_state *state = dev_get_drvdata(dev->dev.parent);
David S. Miller9c1a5072008-04-26 21:02:21 -070068 struct bbc_beep_info *info = &state->u.bbc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned int count = 0;
70 unsigned long flags;
71
72 if (type != EV_SND)
73 return -1;
74
75 switch (code) {
76 case SND_BELL: if (value) value = 1000;
77 case SND_TONE: break;
78 default: return -1;
79 }
80
81 if (value > 20 && value < 32767)
82 count = 1193182 / value;
83
David S. Miller9c1a5072008-04-26 21:02:21 -070084 count = bbc_count_to_reg(info, count);
85
David S. Millera2bd4fd2006-06-23 01:44:10 -070086 spin_lock_irqsave(&state->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
David S. Miller9c1a5072008-04-26 21:02:21 -070088 if (count) {
89 outb(0x01, info->regs + 0);
90 outb(0x00, info->regs + 2);
91 outb((count >> 16) & 0xff, info->regs + 3);
92 outb((count >> 8) & 0xff, info->regs + 4);
93 outb(0x00, info->regs + 5);
94 } else {
95 outb(0x00, info->regs + 0);
96 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David S. Millera2bd4fd2006-06-23 01:44:10 -070098 spin_unlock_irqrestore(&state->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 return 0;
101}
102
David S. Miller9c1a5072008-04-26 21:02:21 -0700103static int grover_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Dmitry Torokhov293e6392007-04-12 01:35:32 -0400105 struct sparcspkr_state *state = dev_get_drvdata(dev->dev.parent);
David S. Miller9c1a5072008-04-26 21:02:21 -0700106 struct grover_beep_info *info = &state->u.grover;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 unsigned int count = 0;
108 unsigned long flags;
109
110 if (type != EV_SND)
111 return -1;
112
113 switch (code) {
114 case SND_BELL: if (value) value = 1000;
115 case SND_TONE: break;
116 default: return -1;
117 }
118
119 if (value > 20 && value < 32767)
120 count = 1193182 / value;
121
David S. Millera2bd4fd2006-06-23 01:44:10 -0700122 spin_lock_irqsave(&state->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (count) {
125 /* enable counter 2 */
David S. Miller9c1a5072008-04-26 21:02:21 -0700126 outb(inb(info->enable_reg) | 3, info->enable_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* set command for counter 2, 2 byte write */
David S. Miller9c1a5072008-04-26 21:02:21 -0700128 outb(0xB6, info->freq_regs + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* select desired HZ */
David S. Miller9c1a5072008-04-26 21:02:21 -0700130 outb(count & 0xff, info->freq_regs + 0);
131 outb((count >> 8) & 0xff, info->freq_regs + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 } else {
133 /* disable counter 2 */
David S. Miller9c1a5072008-04-26 21:02:21 -0700134 outb(inb_p(info->enable_reg) & 0xFC, info->enable_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
David S. Millera2bd4fd2006-06-23 01:44:10 -0700137 spin_unlock_irqrestore(&state->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 return 0;
140}
141
David S. Millera2bd4fd2006-06-23 01:44:10 -0700142static int __devinit sparcspkr_probe(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700144 struct sparcspkr_state *state = dev_get_drvdata(dev);
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500145 struct input_dev *input_dev;
146 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500148 input_dev = input_allocate_device();
149 if (!input_dev)
Dmitry Torokhov76b7cdd2005-09-15 02:01:51 -0500150 return -ENOMEM;
151
David S. Millera2bd4fd2006-06-23 01:44:10 -0700152 input_dev->name = state->name;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500153 input_dev->phys = "sparc/input0";
154 input_dev->id.bustype = BUS_ISA;
155 input_dev->id.vendor = 0x001f;
156 input_dev->id.product = 0x0001;
157 input_dev->id.version = 0x0100;
Dmitry Torokhov293e6392007-04-12 01:35:32 -0400158 input_dev->dev.parent = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700160 input_dev->evbit[0] = BIT_MASK(EV_SND);
161 input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
David S. Millera2bd4fd2006-06-23 01:44:10 -0700163 input_dev->event = state->event;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500164
165 error = input_register_device(input_dev);
166 if (error) {
167 input_free_device(input_dev);
168 return error;
169 }
170
David S. Millera2bd4fd2006-06-23 01:44:10 -0700171 state->input_dev = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500175
Grant Likely2dc11582010-08-06 09:25:50 -0600176static int sparcspkr_shutdown(struct platform_device *dev)
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500177{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700178 struct sparcspkr_state *state = dev_get_drvdata(&dev->dev);
179 struct input_dev *input_dev = state->input_dev;
180
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500181 /* turn off the speaker */
David S. Millera2bd4fd2006-06-23 01:44:10 -0700182 state->event(input_dev, EV_SND, SND_BELL, 0);
183
184 return 0;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500185}
186
Grant Likely2dc11582010-08-06 09:25:50 -0600187static int __devinit bbc_beep_probe(struct platform_device *op, const struct of_device_id *match)
David S. Millera2bd4fd2006-06-23 01:44:10 -0700188{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700189 struct sparcspkr_state *state;
David S. Miller9c1a5072008-04-26 21:02:21 -0700190 struct bbc_beep_info *info;
191 struct device_node *dp;
192 int err = -ENOMEM;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700193
194 state = kzalloc(sizeof(*state), GFP_KERNEL);
195 if (!state)
David S. Miller9c1a5072008-04-26 21:02:21 -0700196 goto out_err;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700197
David S. Miller9c1a5072008-04-26 21:02:21 -0700198 state->name = "Sparc BBC Speaker";
199 state->event = bbc_spkr_event;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700200 spin_lock_init(&state->lock);
201
David S. Miller9c1a5072008-04-26 21:02:21 -0700202 dp = of_find_node_by_path("/");
203 err = -ENODEV;
204 if (!dp)
205 goto out_free;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700206
David S. Miller9c1a5072008-04-26 21:02:21 -0700207 info = &state->u.bbc;
208 info->clock_freq = of_getintprop_default(dp, "clock-frequency", 0);
209 if (!info->clock_freq)
210 goto out_free;
211
212 info->regs = of_ioremap(&op->resource[0], 0, 6, "bbc beep");
213 if (!info->regs)
214 goto out_free;
215
216 dev_set_drvdata(&op->dev, state);
217
218 err = sparcspkr_probe(&op->dev);
219 if (err)
220 goto out_clear_drvdata;
221
222 return 0;
223
224out_clear_drvdata:
225 dev_set_drvdata(&op->dev, NULL);
226 of_iounmap(&op->resource[0], info->regs, 6);
227
228out_free:
229 kfree(state);
230out_err:
231 return err;
232}
233
Grant Likely2dc11582010-08-06 09:25:50 -0600234static int __devexit bbc_remove(struct platform_device *op)
David S. Miller9c1a5072008-04-26 21:02:21 -0700235{
236 struct sparcspkr_state *state = dev_get_drvdata(&op->dev);
237 struct input_dev *input_dev = state->input_dev;
238 struct bbc_beep_info *info = &state->u.bbc;
239
240 /* turn off the speaker */
241 state->event(input_dev, EV_SND, SND_BELL, 0);
242
243 input_unregister_device(input_dev);
244
245 of_iounmap(&op->resource[0], info->regs, 6);
246
247 dev_set_drvdata(&op->dev, NULL);
248 kfree(state);
David S. Millera2bd4fd2006-06-23 01:44:10 -0700249
250 return 0;
251}
252
David S. Millerfd098312008-08-31 01:23:17 -0700253static const struct of_device_id bbc_beep_match[] = {
David S. Millera2bd4fd2006-06-23 01:44:10 -0700254 {
255 .name = "beep",
David S. Miller9c1a5072008-04-26 21:02:21 -0700256 .compatible = "SUNW,bbc-beep",
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500257 },
David S. Millera2bd4fd2006-06-23 01:44:10 -0700258 {},
259};
260
David S. Miller9c1a5072008-04-26 21:02:21 -0700261static struct of_platform_driver bbc_beep_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700262 .driver = {
263 .name = "bbcbeep",
264 .owner = THIS_MODULE,
265 .of_match_table = bbc_beep_match,
266 },
David S. Miller9c1a5072008-04-26 21:02:21 -0700267 .probe = bbc_beep_probe,
268 .remove = __devexit_p(bbc_remove),
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500269 .shutdown = sparcspkr_shutdown,
270};
271
Grant Likely2dc11582010-08-06 09:25:50 -0600272static int __devinit grover_beep_probe(struct platform_device *op, const struct of_device_id *match)
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500273{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700274 struct sparcspkr_state *state;
David S. Miller9c1a5072008-04-26 21:02:21 -0700275 struct grover_beep_info *info;
276 int err = -ENOMEM;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500277
David S. Millera2bd4fd2006-06-23 01:44:10 -0700278 state = kzalloc(sizeof(*state), GFP_KERNEL);
279 if (!state)
David S. Miller9c1a5072008-04-26 21:02:21 -0700280 goto out_err;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500281
David S. Miller9c1a5072008-04-26 21:02:21 -0700282 state->name = "Sparc Grover Speaker";
283 state->event = grover_spkr_event;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700284 spin_lock_init(&state->lock);
285
David S. Miller9c1a5072008-04-26 21:02:21 -0700286 info = &state->u.grover;
287 info->freq_regs = of_ioremap(&op->resource[2], 0, 2, "grover beep freq");
288 if (!info->freq_regs)
289 goto out_free;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700290
David S. Miller9c1a5072008-04-26 21:02:21 -0700291 info->enable_reg = of_ioremap(&op->resource[3], 0, 1, "grover beep enable");
292 if (!info->enable_reg)
293 goto out_unmap_freq_regs;
294
295 dev_set_drvdata(&op->dev, state);
296
297 err = sparcspkr_probe(&op->dev);
298 if (err)
299 goto out_clear_drvdata;
300
301 return 0;
302
303out_clear_drvdata:
304 dev_set_drvdata(&op->dev, NULL);
305 of_iounmap(&op->resource[3], info->enable_reg, 1);
306
307out_unmap_freq_regs:
308 of_iounmap(&op->resource[2], info->freq_regs, 2);
309out_free:
310 kfree(state);
311out_err:
312 return err;
313}
314
Grant Likely2dc11582010-08-06 09:25:50 -0600315static int __devexit grover_remove(struct platform_device *op)
David S. Miller9c1a5072008-04-26 21:02:21 -0700316{
317 struct sparcspkr_state *state = dev_get_drvdata(&op->dev);
318 struct grover_beep_info *info = &state->u.grover;
319 struct input_dev *input_dev = state->input_dev;
320
321 /* turn off the speaker */
322 state->event(input_dev, EV_SND, SND_BELL, 0);
323
324 input_unregister_device(input_dev);
325
326 of_iounmap(&op->resource[3], info->enable_reg, 1);
327 of_iounmap(&op->resource[2], info->freq_regs, 2);
328
329 dev_set_drvdata(&op->dev, NULL);
330 kfree(state);
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500331
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500332 return 0;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500333}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
David S. Millerfd098312008-08-31 01:23:17 -0700335static const struct of_device_id grover_beep_match[] = {
David S. Millera2bd4fd2006-06-23 01:44:10 -0700336 {
David S. Miller9c1a5072008-04-26 21:02:21 -0700337 .name = "beep",
338 .compatible = "SUNW,smbus-beep",
David S. Millera2bd4fd2006-06-23 01:44:10 -0700339 },
340 {},
341};
342
David S. Miller9c1a5072008-04-26 21:02:21 -0700343static struct of_platform_driver grover_beep_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700344 .driver = {
345 .name = "groverbeep",
346 .owner = THIS_MODULE,
347 .of_match_table = grover_beep_match,
348 },
David S. Miller9c1a5072008-04-26 21:02:21 -0700349 .probe = grover_beep_probe,
350 .remove = __devexit_p(grover_remove),
David S. Millera2bd4fd2006-06-23 01:44:10 -0700351 .shutdown = sparcspkr_shutdown,
352};
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static int __init sparcspkr_init(void)
355{
Grant Likely1ab1d632010-06-24 15:14:37 -0600356 int err = of_register_platform_driver(&bbc_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
David S. Millera2bd4fd2006-06-23 01:44:10 -0700358 if (!err) {
Grant Likely1ab1d632010-06-24 15:14:37 -0600359 err = of_register_platform_driver(&grover_beep_driver);
David S. Millera2bd4fd2006-06-23 01:44:10 -0700360 if (err)
Grant Likely1ab1d632010-06-24 15:14:37 -0600361 of_unregister_platform_driver(&bbc_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
David S. Millera2bd4fd2006-06-23 01:44:10 -0700364 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367static void __exit sparcspkr_exit(void)
368{
Grant Likely1ab1d632010-06-24 15:14:37 -0600369 of_unregister_platform_driver(&bbc_beep_driver);
370 of_unregister_platform_driver(&grover_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373module_init(sparcspkr_init);
374module_exit(sparcspkr_exit);