GP2X updates
[libpicofe.git] / linux / sndout_oss.c
1 /*
2  * (C) GraÅžvydas "notaz" Ignotas, 2009-2010
3  *
4  * This work is licensed under the terms of any of these licenses
5  * (at your option):
6  *  - GNU GPL, version 2 or later.
7  *  - GNU LGPL, version 2.1 or later.
8  *  - MAME license.
9  * See the COPYING file in the top-level directory.
10  */
11
12 /* sound output via OSS */
13 #include <stdio.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16 #include <fcntl.h>
17 #include <sys/ioctl.h>
18 #include <sys/soundcard.h>
19 #include <unistd.h>
20
21 #include "sndout_oss.h"
22
23 int sndout_oss_frag_frames = 1;
24
25 static int sounddev = -1, mixerdev = -1;
26 static int can_write_safe;
27
28 #define FRAG_COUNT 4
29
30 int sndout_oss_init(void)
31 {
32         if (mixerdev >= 0) close(mixerdev);
33         mixerdev = open("/dev/mixer", O_RDWR);
34         if (mixerdev == -1)
35         {
36                 perror("open(\"/dev/mixer\")");
37         }
38
39         return 0;
40 }
41
42 void sndout_oss_stop(void)
43 {
44 #ifdef __GP2X__
45         /* restarting audio on GP2X causes trouble */
46         return;
47 #endif
48
49         if (sounddev < 0)
50                 return;
51
52         ioctl(sounddev, SOUND_PCM_SYNC, 0);
53         close(sounddev);
54         sounddev = -1;
55 }
56
57 int sndout_oss_start(int rate, int stereo)
58 {
59         static int s_oldrate = 0, s_oldstereo = 0;
60         int frag, bsize, bits, ret;
61
62         // GP2X: if no settings change, we don't need to do anything,
63         // since audio is never stopped there
64         if (sounddev >= 0 && rate == s_oldrate && s_oldstereo == stereo)
65                 return 0;
66
67         sndout_oss_stop();
68         sounddev = open("/dev/dsp", O_WRONLY);
69         if (sounddev == -1)
70         {
71                 perror("open(\"/dev/dsp\")");
72                 sounddev = open("/dev/dsp1", O_WRONLY);
73                 if (sounddev == -1) {
74                         perror("open(\"/dev/dsp1\")");
75                         return -1;
76                 }
77         }
78
79         // try to fit sndout_oss_frag_frames (video) frames
80         // worth of sound data in OSS fragment
81         // ignore mono because it's unlikely to be used and
82         // both GP2X and Wiz mixes mono to stereo anyway.
83         bsize = (sndout_oss_frag_frames * rate / 50) * 4;
84
85         for (frag = 0; bsize; bsize >>= 1, frag++)
86                 ;
87
88         frag |= FRAG_COUNT << 16;       // fragment count
89         ret = ioctl(sounddev, SNDCTL_DSP_SETFRAGMENT, &frag);
90         if (ret < 0)
91                 perror("SNDCTL_DSP_SETFRAGMENT failed");
92
93         bits = 16;
94         ret = ioctl(sounddev, SNDCTL_DSP_STEREO, &stereo);
95         if (ret == 0)
96                 ret = ioctl(sounddev, SNDCTL_DSP_SETFMT, &bits);
97         if (ret == 0)
98                 ret = ioctl(sounddev, SNDCTL_DSP_SPEED, &rate);
99         if (ret < 0)
100                 perror("failed to set audio format");
101
102 #ifdef __GP2X__
103         // not sure if this is still needed (avoiding driver bugs?)
104         usleep(192*1024);
105 #endif
106
107         printf("sndout_oss_start: %d/%dbit/%s, %d buffers of %i bytes\n",
108                 rate, bits, stereo ? "stereo" : "mono", frag >> 16, 1 << (frag & 0xffff));
109
110         s_oldrate = rate; s_oldstereo = stereo;
111         can_write_safe = 0;
112         return 0;
113 }
114
115 int sndout_oss_write(const void *buff, int len)
116 {
117         return write(sounddev, buff, len);
118 }
119
120 #include "../plat.h"
121
122 /* not really non-blocking, just detects if blocking occurs
123  * and starts skipping writes in case it does. */
124 int sndout_oss_write_nb(const void *buff, int len)
125 {
126         static int lag_counter, skip_counter;
127         unsigned int t;
128         int ret;
129
130         if (lag_counter > 2) {
131                 // skip writes if audio starts blocking
132                 lag_counter = 0;
133                 skip_counter = FRAG_COUNT;
134         }
135
136         if (skip_counter > 0) {
137                 skip_counter--;
138                 return len;
139         }
140
141         t = plat_get_ticks_ms();
142         ret = sndout_oss_write(buff, len);
143         t = plat_get_ticks_ms() - t;
144         if (t > 1) {
145                 // this shouldn't really happen, most likely audio is out of sync
146                 lag_counter++;
147                 if (lag_counter > 2)
148                         printf("audio lag %u\n", t);
149         }
150         else
151                 lag_counter = 0;
152
153         return ret;
154 }
155
156 int sndout_oss_can_write(int bytes)
157 {
158         audio_buf_info bi;
159         int ret;
160
161 #ifdef __GP2X__
162         // note: SNDCTL_DSP_GETOSPACE crashes F100 kernel for some reason
163         // if called too early, so we work around here
164         if (can_write_safe++ < 8)
165                 return 1;
166 #endif
167         ret = ioctl(sounddev, SNDCTL_DSP_GETOSPACE, &bi);
168         if (ret < 0)
169                 return 1;
170
171         // have enough bytes to write + 1 frag
172         return bi.bytes - bi.fragsize >= bytes ? 1 : 0;
173 }
174
175 void sndout_oss_wait(void)
176 {
177         // FIXME?
178         ioctl(sounddev, SOUND_PCM_SYNC, 0);
179 }
180
181 void sndout_oss_setvol(int l, int r)
182 {
183         if (mixerdev < 0) return;
184
185         l=l<0?0:l; l=l>255?255:l; r=r<0?0:r; r=r>255?255:r;
186         l<<=8; l|=r;
187         ioctl(mixerdev, SOUND_MIXER_WRITE_PCM, &l); /*SOUND_MIXER_WRITE_VOLUME*/
188 }
189
190 void sndout_oss_exit(void)
191 {
192         if (sounddev >= 0) close(sounddev); sounddev = -1;
193         if (mixerdev >= 0) close(mixerdev); mixerdev = -1;
194 }
195