sparcspkr.c 5.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *  Driver for PC-speaker like devices found on various Sparc systems.
 *
 *  Copyright (c) 2002 Vojtech Pavlik
5
 *  Copyright (c) 2002, 2006 David S. Miller (davem@davemloft.net)
L
Linus Torvalds 已提交
6 7 8 9 10
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/input.h>
11
#include <linux/platform_device.h>
L
Linus Torvalds 已提交
12 13 14 15 16

#include <asm/io.h>
#include <asm/ebus.h>
#include <asm/isa.h>

17
MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
18
MODULE_DESCRIPTION("Sparc Speaker beeper driver");
L
Linus Torvalds 已提交
19 20
MODULE_LICENSE("GPL");

21 22 23 24 25 26 27
struct sparcspkr_state {
	const char		*name;
	unsigned long		iobase;
	int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
	spinlock_t		lock;
	struct input_dev	*input_dev;
};
L
Linus Torvalds 已提交
28 29 30

static int ebus_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
31
	struct sparcspkr_state *state = dev_get_drvdata(dev->dev.parent);
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
	unsigned int count = 0;
	unsigned long flags;

	if (type != EV_SND)
		return -1;

	switch (code) {
		case SND_BELL: if (value) value = 1000;
		case SND_TONE: break;
		default: return -1;
	}

	if (value > 20 && value < 32767)
		count = 1193182 / value;

47
	spin_lock_irqsave(&state->lock, flags);
L
Linus Torvalds 已提交
48 49 50 51

	/* EBUS speaker only has on/off state, the frequency does not
	 * appear to be programmable.
	 */
52 53
	if (state->iobase & 0x2UL)
		outb(!!count, state->iobase);
54
	else
55
		outl(!!count, state->iobase);
L
Linus Torvalds 已提交
56

57
	spin_unlock_irqrestore(&state->lock, flags);
L
Linus Torvalds 已提交
58 59 60 61 62 63

	return 0;
}

static int isa_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
64
	struct sparcspkr_state *state = dev_get_drvdata(dev->dev.parent);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
	unsigned int count = 0;
	unsigned long flags;

	if (type != EV_SND)
		return -1;

	switch (code) {
		case SND_BELL: if (value) value = 1000;
		case SND_TONE: break;
		default: return -1;
	}

	if (value > 20 && value < 32767)
		count = 1193182 / value;

80
	spin_lock_irqsave(&state->lock, flags);
L
Linus Torvalds 已提交
81 82 83

	if (count) {
		/* enable counter 2 */
84
		outb(inb(state->iobase + 0x61) | 3, state->iobase + 0x61);
L
Linus Torvalds 已提交
85
		/* set command for counter 2, 2 byte write */
86
		outb(0xB6, state->iobase + 0x43);
L
Linus Torvalds 已提交
87
		/* select desired HZ */
88 89
		outb(count & 0xff, state->iobase + 0x42);
		outb((count >> 8) & 0xff, state->iobase + 0x42);
L
Linus Torvalds 已提交
90 91
	} else {
		/* disable counter 2 */
92
		outb(inb_p(state->iobase + 0x61) & 0xFC, state->iobase + 0x61);
L
Linus Torvalds 已提交
93 94
	}

95
	spin_unlock_irqrestore(&state->lock, flags);
L
Linus Torvalds 已提交
96 97 98 99

	return 0;
}

100
static int __devinit sparcspkr_probe(struct device *dev)
L
Linus Torvalds 已提交
101
{
102
	struct sparcspkr_state *state = dev_get_drvdata(dev);
103 104
	struct input_dev *input_dev;
	int error;
L
Linus Torvalds 已提交
105

106 107
	input_dev = input_allocate_device();
	if (!input_dev)
108 109
		return -ENOMEM;

110
	input_dev->name = state->name;
111 112 113 114 115
	input_dev->phys = "sparc/input0";
	input_dev->id.bustype = BUS_ISA;
	input_dev->id.vendor = 0x001f;
	input_dev->id.product = 0x0001;
	input_dev->id.version = 0x0100;
116
	input_dev->dev.parent = dev;
L
Linus Torvalds 已提交
117

118 119
	input_dev->evbit[0] = BIT(EV_SND);
	input_dev->sndbit[0] = BIT(SND_BELL) | BIT(SND_TONE);
L
Linus Torvalds 已提交
120

121
	input_dev->event = state->event;
122 123 124 125 126 127 128

	error = input_register_device(input_dev);
	if (error) {
		input_free_device(input_dev);
		return error;
	}

129
	state->input_dev = input_dev;
L
Linus Torvalds 已提交
130 131 132

	return 0;
}
133

134
static int __devexit sparcspkr_remove(struct of_device *dev)
135
{
136 137
	struct sparcspkr_state *state = dev_get_drvdata(&dev->dev);
	struct input_dev *input_dev = state->input_dev;
138 139

	/* turn off the speaker */
140 141 142 143 144 145
	state->event(input_dev, EV_SND, SND_BELL, 0);

	input_unregister_device(input_dev);

	dev_set_drvdata(&dev->dev, NULL);
	kfree(state);
146 147 148 149

	return 0;
}

150
static int sparcspkr_shutdown(struct of_device *dev)
151
{
152 153 154
	struct sparcspkr_state *state = dev_get_drvdata(&dev->dev);
	struct input_dev *input_dev = state->input_dev;

155
	/* turn off the speaker */
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
	state->event(input_dev, EV_SND, SND_BELL, 0);

	return 0;
}

static int __devinit ebus_beep_probe(struct of_device *dev, const struct of_device_id *match)
{
	struct linux_ebus_device *edev = to_ebus_device(&dev->dev);
	struct sparcspkr_state *state;
	int err;

	state = kzalloc(sizeof(*state), GFP_KERNEL);
	if (!state)
		return -ENOMEM;

	state->name = "Sparc EBUS Speaker";
	state->iobase = edev->resource[0].start;
	state->event = ebus_spkr_event;
	spin_lock_init(&state->lock);

	dev_set_drvdata(&dev->dev, state);

	err = sparcspkr_probe(&dev->dev);
	if (err) {
		dev_set_drvdata(&dev->dev, NULL);
		kfree(state);
	}

	return 0;
185 186
}

187 188 189
static struct of_device_id ebus_beep_match[] = {
	{
		.name = "beep",
190
	},
191
	{},
192 193
};

194 195 196 197 198 199 200
static struct of_platform_driver ebus_beep_driver = {
	.name		= "beep",
	.match_table	= ebus_beep_match,
	.probe		= ebus_beep_probe,
	.remove		= sparcspkr_remove,
	.shutdown	= sparcspkr_shutdown,
};
201

202
static int __devinit isa_beep_probe(struct of_device *dev, const struct of_device_id *match)
203
{
204 205 206
	struct sparc_isa_device *idev = to_isa_device(&dev->dev);
	struct sparcspkr_state *state;
	int err;
207

208 209 210
	state = kzalloc(sizeof(*state), GFP_KERNEL);
	if (!state)
		return -ENOMEM;
211

212 213 214 215 216 217
	state->name = "Sparc ISA Speaker";
	state->iobase = idev->resource.start;
	state->event = isa_spkr_event;
	spin_lock_init(&state->lock);

	dev_set_drvdata(&dev->dev, state);
218

219 220 221 222 223
	err = sparcspkr_probe(&dev->dev);
	if (err) {
		dev_set_drvdata(&dev->dev, NULL);
		kfree(state);
	}
224 225

	return 0;
226
}
227

228 229 230 231 232 233
static struct of_device_id isa_beep_match[] = {
	{
		.name = "dma",
	},
	{},
};
234

235 236 237 238 239 240 241
static struct of_platform_driver isa_beep_driver = {
	.name		= "beep",
	.match_table	= isa_beep_match,
	.probe		= isa_beep_probe,
	.remove		= sparcspkr_remove,
	.shutdown	= sparcspkr_shutdown,
};
L
Linus Torvalds 已提交
242 243 244

static int __init sparcspkr_init(void)
{
245 246 247 248 249 250
	int err = of_register_driver(&ebus_beep_driver, &ebus_bus_type);

	if (!err) {
		err = of_register_driver(&isa_beep_driver, &isa_bus_type);
		if (err)
			of_unregister_driver(&ebus_beep_driver);
L
Linus Torvalds 已提交
251 252
	}

253
	return err;
L
Linus Torvalds 已提交
254 255 256 257
}

static void __exit sparcspkr_exit(void)
{
258 259
	of_unregister_driver(&ebus_beep_driver);
	of_unregister_driver(&isa_beep_driver);
L
Linus Torvalds 已提交
260 261 262 263
}

module_init(sparcspkr_init);
module_exit(sparcspkr_exit);