blob: a53586a7fbdb68c9deff6745629e16642ab6aa7d [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 Torokhov76b7cddf2005-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
Bill Pemberton5298cc42012-11-23 21:38:25 -0800142static int 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 Torokhov76b7cddf2005-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 Likely4ebb24f2011-02-22 20:01:33 -0700176static void 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);
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500183}
184
Bill Pemberton5298cc42012-11-23 21:38:25 -0800185static int bbc_beep_probe(struct platform_device *op)
David S. Millera2bd4fd2006-06-23 01:44:10 -0700186{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700187 struct sparcspkr_state *state;
David S. Miller9c1a5072008-04-26 21:02:21 -0700188 struct bbc_beep_info *info;
189 struct device_node *dp;
190 int err = -ENOMEM;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700191
192 state = kzalloc(sizeof(*state), GFP_KERNEL);
193 if (!state)
David S. Miller9c1a5072008-04-26 21:02:21 -0700194 goto out_err;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700195
David S. Miller9c1a5072008-04-26 21:02:21 -0700196 state->name = "Sparc BBC Speaker";
197 state->event = bbc_spkr_event;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700198 spin_lock_init(&state->lock);
199
David S. Miller9c1a5072008-04-26 21:02:21 -0700200 dp = of_find_node_by_path("/");
201 err = -ENODEV;
202 if (!dp)
203 goto out_free;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700204
David S. Miller9c1a5072008-04-26 21:02:21 -0700205 info = &state->u.bbc;
206 info->clock_freq = of_getintprop_default(dp, "clock-frequency", 0);
207 if (!info->clock_freq)
208 goto out_free;
209
210 info->regs = of_ioremap(&op->resource[0], 0, 6, "bbc beep");
211 if (!info->regs)
212 goto out_free;
213
214 dev_set_drvdata(&op->dev, state);
215
216 err = sparcspkr_probe(&op->dev);
217 if (err)
218 goto out_clear_drvdata;
219
220 return 0;
221
222out_clear_drvdata:
223 dev_set_drvdata(&op->dev, NULL);
224 of_iounmap(&op->resource[0], info->regs, 6);
225
226out_free:
227 kfree(state);
228out_err:
229 return err;
230}
231
Bill Pembertone2619cf2012-11-23 21:50:47 -0800232static int bbc_remove(struct platform_device *op)
David S. Miller9c1a5072008-04-26 21:02:21 -0700233{
234 struct sparcspkr_state *state = dev_get_drvdata(&op->dev);
235 struct input_dev *input_dev = state->input_dev;
236 struct bbc_beep_info *info = &state->u.bbc;
237
238 /* turn off the speaker */
239 state->event(input_dev, EV_SND, SND_BELL, 0);
240
241 input_unregister_device(input_dev);
242
243 of_iounmap(&op->resource[0], info->regs, 6);
244
245 dev_set_drvdata(&op->dev, NULL);
246 kfree(state);
David S. Millera2bd4fd2006-06-23 01:44:10 -0700247
248 return 0;
249}
250
David S. Millerfd098312008-08-31 01:23:17 -0700251static const struct of_device_id bbc_beep_match[] = {
David S. Millera2bd4fd2006-06-23 01:44:10 -0700252 {
253 .name = "beep",
David S. Miller9c1a5072008-04-26 21:02:21 -0700254 .compatible = "SUNW,bbc-beep",
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500255 },
David S. Millera2bd4fd2006-06-23 01:44:10 -0700256 {},
257};
258
Grant Likely4ebb24f2011-02-22 20:01:33 -0700259static struct platform_driver bbc_beep_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700260 .driver = {
261 .name = "bbcbeep",
262 .owner = THIS_MODULE,
263 .of_match_table = bbc_beep_match,
264 },
David S. Miller9c1a5072008-04-26 21:02:21 -0700265 .probe = bbc_beep_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800266 .remove = bbc_remove,
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500267 .shutdown = sparcspkr_shutdown,
268};
269
Bill Pemberton5298cc42012-11-23 21:38:25 -0800270static int grover_beep_probe(struct platform_device *op)
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500271{
David S. Millera2bd4fd2006-06-23 01:44:10 -0700272 struct sparcspkr_state *state;
David S. Miller9c1a5072008-04-26 21:02:21 -0700273 struct grover_beep_info *info;
274 int err = -ENOMEM;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500275
David S. Millera2bd4fd2006-06-23 01:44:10 -0700276 state = kzalloc(sizeof(*state), GFP_KERNEL);
277 if (!state)
David S. Miller9c1a5072008-04-26 21:02:21 -0700278 goto out_err;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500279
David S. Miller9c1a5072008-04-26 21:02:21 -0700280 state->name = "Sparc Grover Speaker";
281 state->event = grover_spkr_event;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700282 spin_lock_init(&state->lock);
283
David S. Miller9c1a5072008-04-26 21:02:21 -0700284 info = &state->u.grover;
285 info->freq_regs = of_ioremap(&op->resource[2], 0, 2, "grover beep freq");
286 if (!info->freq_regs)
287 goto out_free;
David S. Millera2bd4fd2006-06-23 01:44:10 -0700288
David S. Miller9c1a5072008-04-26 21:02:21 -0700289 info->enable_reg = of_ioremap(&op->resource[3], 0, 1, "grover beep enable");
290 if (!info->enable_reg)
291 goto out_unmap_freq_regs;
292
293 dev_set_drvdata(&op->dev, state);
294
295 err = sparcspkr_probe(&op->dev);
296 if (err)
297 goto out_clear_drvdata;
298
299 return 0;
300
301out_clear_drvdata:
302 dev_set_drvdata(&op->dev, NULL);
303 of_iounmap(&op->resource[3], info->enable_reg, 1);
304
305out_unmap_freq_regs:
306 of_iounmap(&op->resource[2], info->freq_regs, 2);
307out_free:
308 kfree(state);
309out_err:
310 return err;
311}
312
Bill Pembertone2619cf2012-11-23 21:50:47 -0800313static int grover_remove(struct platform_device *op)
David S. Miller9c1a5072008-04-26 21:02:21 -0700314{
315 struct sparcspkr_state *state = dev_get_drvdata(&op->dev);
316 struct grover_beep_info *info = &state->u.grover;
317 struct input_dev *input_dev = state->input_dev;
318
319 /* turn off the speaker */
320 state->event(input_dev, EV_SND, SND_BELL, 0);
321
322 input_unregister_device(input_dev);
323
324 of_iounmap(&op->resource[3], info->enable_reg, 1);
325 of_iounmap(&op->resource[2], info->freq_regs, 2);
326
327 dev_set_drvdata(&op->dev, NULL);
328 kfree(state);
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500329
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500330 return 0;
Dmitry Torokhovf5b64072005-12-21 00:52:35 -0500331}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
David S. Millerfd098312008-08-31 01:23:17 -0700333static const struct of_device_id grover_beep_match[] = {
David S. Millera2bd4fd2006-06-23 01:44:10 -0700334 {
David S. Miller9c1a5072008-04-26 21:02:21 -0700335 .name = "beep",
336 .compatible = "SUNW,smbus-beep",
David S. Millera2bd4fd2006-06-23 01:44:10 -0700337 },
338 {},
339};
340
Grant Likely4ebb24f2011-02-22 20:01:33 -0700341static struct platform_driver grover_beep_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700342 .driver = {
343 .name = "groverbeep",
344 .owner = THIS_MODULE,
345 .of_match_table = grover_beep_match,
346 },
David S. Miller9c1a5072008-04-26 21:02:21 -0700347 .probe = grover_beep_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800348 .remove = grover_remove,
David S. Millera2bd4fd2006-06-23 01:44:10 -0700349 .shutdown = sparcspkr_shutdown,
350};
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352static int __init sparcspkr_init(void)
353{
Grant Likely4ebb24f2011-02-22 20:01:33 -0700354 int err = platform_driver_register(&bbc_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
David S. Millera2bd4fd2006-06-23 01:44:10 -0700356 if (!err) {
Grant Likely4ebb24f2011-02-22 20:01:33 -0700357 err = platform_driver_register(&grover_beep_driver);
David S. Millera2bd4fd2006-06-23 01:44:10 -0700358 if (err)
Grant Likely4ebb24f2011-02-22 20:01:33 -0700359 platform_driver_unregister(&bbc_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
David S. Millera2bd4fd2006-06-23 01:44:10 -0700362 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365static void __exit sparcspkr_exit(void)
366{
Grant Likely4ebb24f2011-02-22 20:01:33 -0700367 platform_driver_unregister(&bbc_beep_driver);
368 platform_driver_unregister(&grover_beep_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371module_init(sparcspkr_init);
372module_exit(sparcspkr_exit);