Blame view

sound/oss/sh_dac_audio.c 6.41 KB
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * sound/oss/sh_dac_audio.c
   *
   * SH DAC based sound :(
   *
   *  Copyright (C) 2004,2005  Andriy Skulysh
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
13
14
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/sched.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
  #include <linux/linkage.h>
  #include <linux/slab.h>
  #include <linux/fs.h>
  #include <linux/sound.h>
  #include <linux/soundcard.h>
4bcac20a7   Andriy Skulysh   sh: hp6xx mach-ty...
20
  #include <linux/interrupt.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
23
24
  #include <asm/io.h>
  #include <asm/uaccess.h>
  #include <asm/irq.h>
  #include <asm/delay.h>
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
25
  #include <asm/clock.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
  #include <asm/cpu/dac.h>
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
27
  #include <asm/cpu/timer.h>
4bcac20a7   Andriy Skulysh   sh: hp6xx mach-ty...
28
  #include <asm/machvec.h>
082c44d20   Paul Mundt   sh: Cleanup board...
29
  #include <asm/hp6xx.h>
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
30
  #include <asm/hd64461.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
35
36
37
  
  #define MODNAME "sh_dac_audio"
  
  #define TMU_TOCR_INIT	0x00
  
  #define TMU1_TCR_INIT	0x0020	/* Clock/4, rising edge; interrupt on */
  #define TMU1_TSTR_INIT  0x02	/* Bit to turn on TMU1 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  #define BUFFER_SIZE 48000
  
  static int rate;
  static int empty;
  static char *data_buffer, *buffer_begin, *buffer_end;
  static int in_use, device_major;
  
  static void dac_audio_start_timer(void)
  {
  	u8 tstr;
  
  	tstr = ctrl_inb(TMU_TSTR);
  	tstr |= TMU1_TSTR_INIT;
  	ctrl_outb(tstr, TMU_TSTR);
  }
  
  static void dac_audio_stop_timer(void)
  {
  	u8 tstr;
  
  	tstr = ctrl_inb(TMU_TSTR);
  	tstr &= ~TMU1_TSTR_INIT;
  	ctrl_outb(tstr, TMU_TSTR);
  }
  
  static void dac_audio_reset(void)
  {
  	dac_audio_stop_timer();
  	buffer_begin = buffer_end = data_buffer;
  	empty = 1;
  }
  
  static void dac_audio_sync(void)
  {
  	while (!empty)
  		schedule();
  }
  
  static void dac_audio_start(void)
  {
4bcac20a7   Andriy Skulysh   sh: hp6xx mach-ty...
78
79
80
81
82
  	if (mach_is_hp6xx()) {
  		u16 v = inw(HD64461_GPADR);
  		v &= ~HD64461_GPADR_SPEAKER;
  		outw(v, HD64461_GPADR);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
85
86
87
  	sh_dac_enable(CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
  	ctrl_outw(TMU1_TCR_INIT, TMU1_TCR);
  }
  static void dac_audio_stop(void)
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
  	dac_audio_stop_timer();
4bcac20a7   Andriy Skulysh   sh: hp6xx mach-ty...
89
90
91
92
93
94
  
  	if (mach_is_hp6xx()) {
  		u16 v = inw(HD64461_GPADR);
  		v |= HD64461_GPADR_SPEAKER;
  		outw(v, HD64461_GPADR);
  	}
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
95
   	sh_dac_output(0, CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
101
  	sh_dac_disable(CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
  }
  
  static void dac_audio_set_rate(void)
  {
  	unsigned long interval;
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
102
   	struct clk *clk;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103

5753171b8   Kristoffer Ericson   sh: hp6xx driver ...
104
   	clk = clk_get(NULL, "module_clk");
7e27b9b72   Andriy Skulysh   sound: SH DAC aud...
105
106
   	interval = (clk_get_rate(clk) / 4) / rate;
   	clk_put(clk);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
  	ctrl_outl(interval, TMU1_TCOR);
  	ctrl_outl(interval, TMU1_TCNT);
  }
  
  static int dac_audio_ioctl(struct inode *inode, struct file *file,
  			   unsigned int cmd, unsigned long arg)
  {
  	int val;
  
  	switch (cmd) {
  	case OSS_GETVERSION:
  		return put_user(SOUND_VERSION, (int *)arg);
  
  	case SNDCTL_DSP_SYNC:
  		dac_audio_sync();
  		return 0;
  
  	case SNDCTL_DSP_RESET:
  		dac_audio_reset();
  		return 0;
  
  	case SNDCTL_DSP_GETFMTS:
  		return put_user(AFMT_U8, (int *)arg);
  
  	case SNDCTL_DSP_SETFMT:
  		return put_user(AFMT_U8, (int *)arg);
  
  	case SNDCTL_DSP_NONBLOCK:
  		file->f_flags |= O_NONBLOCK;
  		return 0;
  
  	case SNDCTL_DSP_GETCAPS:
  		return 0;
  
  	case SOUND_PCM_WRITE_RATE:
  		val = *(int *)arg;
  		if (val > 0) {
  			rate = val;
  			dac_audio_set_rate();
  		}
  		return put_user(rate, (int *)arg);
  
  	case SNDCTL_DSP_STEREO:
  		return put_user(0, (int *)arg);
  
  	case SOUND_PCM_WRITE_CHANNELS:
  		return put_user(1, (int *)arg);
  
  	case SNDCTL_DSP_SETDUPLEX:
  		return -EINVAL;
  
  	case SNDCTL_DSP_PROFILE:
  		return -EINVAL;
  
  	case SNDCTL_DSP_GETBLKSIZE:
  		return put_user(BUFFER_SIZE, (int *)arg);
  
  	case SNDCTL_DSP_SETFRAGMENT:
  		return 0;
  
  	default:
  		printk(KERN_ERR "sh_dac_audio: unimplemented ioctl=0x%x
  ",
  		       cmd);
  		return -EINVAL;
  	}
  	return -EINVAL;
  }
  
  static ssize_t dac_audio_write(struct file *file, const char *buf, size_t count,
  			       loff_t * ppos)
  {
  	int free;
  	int nbytes;
  
  	if (count < 0)
  		return -EINVAL;
  
  	if (!count) {
  		dac_audio_sync();
  		return 0;
  	}
  
  	free = buffer_begin - buffer_end;
  
  	if (free < 0)
  		free += BUFFER_SIZE;
  	if ((free == 0) && (empty))
  		free = BUFFER_SIZE;
  	if (count > free)
  		count = free;
  	if (buffer_begin > buffer_end) {
  		if (copy_from_user((void *)buffer_end, buf, count))
  			return -EFAULT;
  
  		buffer_end += count;
  	} else {
  		nbytes = data_buffer + BUFFER_SIZE - buffer_end;
  		if (nbytes > count) {
  			if (copy_from_user((void *)buffer_end, buf, count))
  				return -EFAULT;
  			buffer_end += count;
  		} else {
  			if (copy_from_user((void *)buffer_end, buf, nbytes))
  				return -EFAULT;
  			if (copy_from_user
  			    ((void *)data_buffer, buf + nbytes, count - nbytes))
  				return -EFAULT;
  			buffer_end = data_buffer + count - nbytes;
  		}
  	}
  
  	if (empty) {
  		empty = 0;
  		dac_audio_start_timer();
  	}
  
  	return count;
  }
  
  static ssize_t dac_audio_read(struct file *file, char *buf, size_t count,
  			      loff_t * ppos)
  {
  	return -EINVAL;
  }
  
  static int dac_audio_open(struct inode *inode, struct file *file)
  {
  	if (file->f_mode & FMODE_READ)
  		return -ENODEV;
  	if (in_use)
  		return -EBUSY;
  
  	in_use = 1;
  
  	dac_audio_start();
  
  	return 0;
  }
  
  static int dac_audio_release(struct inode *inode, struct file *file)
  {
  	dac_audio_sync();
  	dac_audio_stop();
  	in_use = 0;
  
  	return 0;
  }
9c2e08c59   Arjan van de Ven   [PATCH] mark stru...
255
  const struct file_operations dac_audio_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
258
259
260
261
        .read =		dac_audio_read,
        .write =	dac_audio_write,
        .ioctl =	dac_audio_ioctl,
        .open =		dac_audio_open,
        .release =	dac_audio_release,
  };
7d12e780e   David Howells   IRQ: Maintain reg...
262
  static irqreturn_t timer1_interrupt(int irq, void *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
  {
  	unsigned long timer_status;
  
  	timer_status = ctrl_inw(TMU1_TCR);
  	timer_status &= ~0x100;
  	ctrl_outw(timer_status, TMU1_TCR);
  
  	if (!empty) {
  		sh_dac_output(*buffer_begin, CONFIG_SOUND_SH_DAC_AUDIO_CHANNEL);
  		buffer_begin++;
  
  		if (buffer_begin == data_buffer + BUFFER_SIZE)
  			buffer_begin = data_buffer;
  		if (buffer_begin == buffer_end) {
  			empty = 1;
  			dac_audio_stop_timer();
  		}
  	}
  	return IRQ_HANDLED;
  }
  
  static int __init dac_audio_init(void)
  {
  	int retval;
  
  	if ((device_major = register_sound_dsp(&dac_audio_fops, -1)) < 0) {
  		printk(KERN_ERR "Cannot register dsp device");
  		return device_major;
  	}
  
  	in_use = 0;
4fa95ef63   Jesper Juhl   [PATCH] sound: Re...
294
  	data_buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295
296
297
298
299
300
301
302
  	if (data_buffer == NULL)
  		return -ENOMEM;
  
  	dac_audio_reset();
  	rate = 8000;
  	dac_audio_set_rate();
  
  	retval =
65ca68b30   Thomas Gleixner   [PATCH] irq-flags...
303
  	    request_irq(TIMER1_IRQ, timer1_interrupt, IRQF_DISABLED, MODNAME, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
  	if (retval < 0) {
  		printk(KERN_ERR "sh_dac_audio: IRQ %d request failed
  ",
  		       TIMER1_IRQ);
  		return retval;
  	}
  
  	return 0;
  }
  
  static void __exit dac_audio_exit(void)
  {
  	free_irq(TIMER1_IRQ, 0);
  
  	unregister_sound_dsp(device_major);
  	kfree((void *)data_buffer);
  }
  
  module_init(dac_audio_init);
  module_exit(dac_audio_exit);
  
  MODULE_AUTHOR("Andriy Skulysh, askulysh@image.kiev.ua");
  MODULE_DESCRIPTION("SH DAC sound driver");
  MODULE_LICENSE("GPL");