]> Git Repo - linux.git/blob - drivers/input/misc/ixp4xx-beeper.c
Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / drivers / input / misc / ixp4xx-beeper.c
1 /*
2  * Generic IXP4xx beeper driver
3  *
4  * Copyright (C) 2005 Tower Technologies
5  *
6  * based on nslu2-io.c
7  *  Copyright (C) 2004 Karen Spearel
8  *
9  * Author: Alessandro Zummo <[email protected]>
10  * Maintainers: http://www.nslu2-linux.org/
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 as
14  * published by the Free Software Foundation.
15  *
16  */
17
18 #include <linux/module.h>
19 #include <linux/input.h>
20 #include <linux/delay.h>
21 #include <linux/platform_device.h>
22 #include <linux/interrupt.h>
23 #include <linux/gpio.h>
24 #include <mach/hardware.h>
25
26 MODULE_AUTHOR("Alessandro Zummo <[email protected]>");
27 MODULE_DESCRIPTION("ixp4xx beeper driver");
28 MODULE_LICENSE("GPL");
29 MODULE_ALIAS("platform:ixp4xx-beeper");
30
31 static DEFINE_SPINLOCK(beep_lock);
32
33 static int ixp4xx_timer2_irq;
34
35 static void ixp4xx_spkr_control(unsigned int pin, unsigned int count)
36 {
37         unsigned long flags;
38
39         spin_lock_irqsave(&beep_lock, flags);
40
41         if (count) {
42                 gpio_direction_output(pin, 0);
43                 *IXP4XX_OSRT2 = (count & ~IXP4XX_OST_RELOAD_MASK) | IXP4XX_OST_ENABLE;
44         } else {
45                 gpio_direction_output(pin, 1);
46                 gpio_direction_input(pin);
47                 *IXP4XX_OSRT2 = 0;
48         }
49
50         spin_unlock_irqrestore(&beep_lock, flags);
51 }
52
53 static int ixp4xx_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
54 {
55         unsigned int pin = (unsigned int) input_get_drvdata(dev);
56         unsigned int count = 0;
57
58         if (type != EV_SND)
59                 return -1;
60
61         switch (code) {
62                 case SND_BELL:
63                         if (value)
64                                 value = 1000;
65                 case SND_TONE:
66                         break;
67                 default:
68                         return -1;
69         }
70
71         if (value > 20 && value < 32767)
72                 count = (ixp4xx_timer_freq / (value * 4)) - 1;
73
74         ixp4xx_spkr_control(pin, count);
75
76         return 0;
77 }
78
79 static irqreturn_t ixp4xx_spkr_interrupt(int irq, void *dev_id)
80 {
81         unsigned int pin = (unsigned int) dev_id;
82
83         /* clear interrupt */
84         *IXP4XX_OSST = IXP4XX_OSST_TIMER_2_PEND;
85
86         /* flip the beeper output */
87         gpio_set_value(pin, !gpio_get_value(pin));
88
89         return IRQ_HANDLED;
90 }
91
92 static int ixp4xx_spkr_probe(struct platform_device *dev)
93 {
94         struct input_dev *input_dev;
95         int irq;
96         int err;
97
98         input_dev = input_allocate_device();
99         if (!input_dev)
100                 return -ENOMEM;
101
102         input_set_drvdata(input_dev, (void *) dev->id);
103
104         input_dev->name = "ixp4xx beeper",
105         input_dev->phys = "ixp4xx/gpio";
106         input_dev->id.bustype = BUS_HOST;
107         input_dev->id.vendor  = 0x001f;
108         input_dev->id.product = 0x0001;
109         input_dev->id.version = 0x0100;
110         input_dev->dev.parent = &dev->dev;
111
112         input_dev->evbit[0] = BIT_MASK(EV_SND);
113         input_dev->sndbit[0] = BIT_MASK(SND_BELL) | BIT_MASK(SND_TONE);
114         input_dev->event = ixp4xx_spkr_event;
115
116         irq = platform_get_irq(dev, 0);
117         if (irq < 0) {
118                 err = irq;
119                 goto err_free_device;
120         }
121
122         err = gpio_request(dev->id, "ixp4-beeper");
123         if (err)
124                 goto err_free_device;
125
126         err = request_irq(irq, &ixp4xx_spkr_interrupt,
127                           IRQF_NO_SUSPEND, "ixp4xx-beeper",
128                           (void *) dev->id);
129         if (err)
130                 goto err_free_gpio;
131         ixp4xx_timer2_irq = irq;
132
133         err = input_register_device(input_dev);
134         if (err)
135                 goto err_free_irq;
136
137         platform_set_drvdata(dev, input_dev);
138
139         return 0;
140
141  err_free_irq:
142         free_irq(irq, (void *)dev->id);
143  err_free_gpio:
144         gpio_free(dev->id);
145  err_free_device:
146         input_free_device(input_dev);
147
148         return err;
149 }
150
151 static int ixp4xx_spkr_remove(struct platform_device *dev)
152 {
153         struct input_dev *input_dev = platform_get_drvdata(dev);
154         unsigned int pin = (unsigned int) input_get_drvdata(input_dev);
155
156         input_unregister_device(input_dev);
157
158         /* turn the speaker off */
159         disable_irq(ixp4xx_timer2_irq);
160         ixp4xx_spkr_control(pin, 0);
161
162         free_irq(ixp4xx_timer2_irq, (void *)dev->id);
163         gpio_free(dev->id);
164
165         return 0;
166 }
167
168 static void ixp4xx_spkr_shutdown(struct platform_device *dev)
169 {
170         struct input_dev *input_dev = platform_get_drvdata(dev);
171         unsigned int pin = (unsigned int) input_get_drvdata(input_dev);
172
173         /* turn off the speaker */
174         disable_irq(ixp4xx_timer2_irq);
175         ixp4xx_spkr_control(pin, 0);
176 }
177
178 static struct platform_driver ixp4xx_spkr_platform_driver = {
179         .driver         = {
180                 .name   = "ixp4xx-beeper",
181         },
182         .probe          = ixp4xx_spkr_probe,
183         .remove         = ixp4xx_spkr_remove,
184         .shutdown       = ixp4xx_spkr_shutdown,
185 };
186 module_platform_driver(ixp4xx_spkr_platform_driver);
187
This page took 0.044748 seconds and 4 git commands to generate.