RetroArch/audio/ps3_audio.c

240 lines
5.6 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 17:17:42 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
2011-11-30 16:11:42 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2011-11-30 16:11:42 +00:00
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2011-11-30 16:11:42 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2011-11-30 16:11:42 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../driver.h"
2011-12-02 14:50:51 +00:00
#include "../general.h"
2011-11-30 16:11:42 +00:00
#include <stdlib.h>
2011-11-30 16:11:42 +00:00
#include <string.h>
2011-12-02 14:50:51 +00:00
#include "../fifo_buffer.h"
#include "../ps3/sdk_defines.h"
2014-09-09 20:24:29 +00:00
#define AUDIO_BLOCKS 8
#define AUDIO_CHANNELS 2
2011-11-30 16:11:42 +00:00
typedef struct
{
uint32_t audio_port;
bool nonblocking;
bool started;
2011-11-30 16:11:42 +00:00
volatile bool quit_thread;
fifo_buffer_t *buffer;
sys_ppu_thread_t thread;
2011-12-02 15:21:01 +00:00
sys_lwmutex_t lock;
sys_lwmutex_t cond_lock;
sys_lwcond_t cond;
2011-11-30 16:11:42 +00:00
} ps3_audio_t;
2012-07-01 16:22:57 +00:00
#ifdef __PSL1GHT__
static void event_loop(void *data)
#else
static void event_loop(uint64_t data)
2012-07-01 16:22:57 +00:00
#endif
2011-11-30 16:11:42 +00:00
{
2012-07-01 16:22:57 +00:00
ps3_audio_t *aud = data;
2011-11-30 16:11:42 +00:00
sys_event_queue_t id;
sys_ipc_key_t key;
sys_event_t event;
cellAudioCreateNotifyEventQueue(&id, &key);
cellAudioSetNotifyEventQueue(key);
2011-11-30 16:11:42 +00:00
2014-09-09 20:24:29 +00:00
float out_tmp[CELL_AUDIO_BLOCK_SAMPLES * AUDIO_CHANNELS]
__attribute__((aligned(16)));
2011-11-30 16:11:42 +00:00
while (!aud->quit_thread)
{
sys_event_queue_receive(id, &event, SYS_NO_TIMEOUT);
2011-12-02 14:50:51 +00:00
sys_lwmutex_lock(&aud->lock, SYS_NO_TIMEOUT);
2011-12-02 14:50:51 +00:00
if (fifo_read_avail(aud->buffer) >= sizeof(out_tmp))
fifo_read(aud->buffer, out_tmp, sizeof(out_tmp));
else
memset(out_tmp, 0, sizeof(out_tmp));
sys_lwmutex_unlock(&aud->lock);
sys_lwcond_signal(&aud->cond);
2011-12-02 14:50:51 +00:00
2014-09-09 20:24:29 +00:00
cellAudioAddData(aud->audio_port, out_tmp,
CELL_AUDIO_BLOCK_SAMPLES, 1.0);
2011-11-30 16:11:42 +00:00
}
cellAudioRemoveNotifyEventQueue(key);
sys_ppu_thread_exit(0);
2011-11-30 16:11:42 +00:00
}
2014-09-09 20:24:29 +00:00
static void *ps3_audio_init(const char *device,
unsigned rate, unsigned latency)
2011-11-30 16:11:42 +00:00
{
(void)latency;
(void)device;
2013-01-22 00:38:00 +00:00
(void)rate;
2011-11-30 16:11:42 +00:00
ps3_audio_t *data = calloc(1, sizeof(*data));
2011-12-02 14:50:51 +00:00
if (!data)
2011-11-30 16:11:42 +00:00
return NULL;
CellAudioPortParam params;
cellAudioInit();
params.numChannels = AUDIO_CHANNELS;
params.numBlocks = AUDIO_BLOCKS;
#ifdef HAVE_HEADSET
if(g_extern.console.sound.mode == SOUND_MODE_HEADSET)
params.param_attrib = CELL_AUDIO_PORTATTR_OUT_SECONDARY;
else
#endif
params.param_attrib = 0;
2011-11-30 16:11:42 +00:00
if (cellAudioPortOpen(&params, &data->audio_port) != CELL_OK)
2011-11-30 16:11:42 +00:00
{
cellAudioQuit();
2011-12-02 14:50:51 +00:00
free(data);
2011-11-30 16:11:42 +00:00
return NULL;
}
2014-09-09 20:24:29 +00:00
data->buffer = fifo_new(CELL_AUDIO_BLOCK_SAMPLES *
AUDIO_CHANNELS * AUDIO_BLOCKS * sizeof(float));
2011-11-30 16:11:42 +00:00
#ifdef __PSL1GHT__
2014-09-09 20:24:29 +00:00
sys_lwmutex_attr_t lock_attr =
{SYS_LWMUTEX_ATTR_PROTOCOL, SYS_LWMUTEX_ATTR_RECURSIVE, "\0"};
sys_lwmutex_attr_t cond_lock_attr =
{SYS_LWMUTEX_ATTR_PROTOCOL, SYS_LWMUTEX_ATTR_RECURSIVE, "\0"};
2012-07-01 16:22:57 +00:00
sys_lwcond_attribute_t cond_attr = {"\0"};
#else
sys_lwmutex_attribute_t lock_attr;
sys_lwmutex_attribute_t cond_lock_attr;
2011-12-02 15:21:01 +00:00
sys_lwcond_attribute_t cond_attr;
sys_lwmutex_attribute_initialize(lock_attr);
sys_lwmutex_attribute_initialize(cond_lock_attr);
2011-12-02 15:21:01 +00:00
sys_lwcond_attribute_initialize(cond_attr);
#endif
2011-12-02 15:21:01 +00:00
sys_lwmutex_create(&data->lock, &lock_attr);
sys_lwmutex_create(&data->cond_lock, &cond_lock_attr);
sys_lwcond_create(&data->cond, &data->cond_lock, &cond_attr);
2011-11-30 16:11:42 +00:00
cellAudioPortStart(data->audio_port);
data->started = true;
sys_ppu_thread_create(&data->thread, event_loop,
2012-07-01 16:22:57 +00:00
#ifdef __PSL1GHT__
data,
2012-07-01 16:22:57 +00:00
#else
(uint64_t)data,
2012-07-01 16:22:57 +00:00
#endif
1500, 0x1000, SYS_PPU_THREAD_CREATE_JOINABLE, (char*)"sound");
2011-11-30 16:11:42 +00:00
return data;
}
2011-12-02 14:50:51 +00:00
static ssize_t ps3_audio_write(void *data, const void *buf, size_t size)
2011-11-30 16:11:42 +00:00
{
ps3_audio_t *aud = data;
if (aud->nonblocking)
{
if (fifo_write_avail(aud->buffer) < size)
return 0;
}
else
{
while (fifo_write_avail(aud->buffer) < size)
sys_lwcond_wait(&aud->cond, 0);
2011-11-30 16:11:42 +00:00
}
sys_lwmutex_lock(&aud->lock, SYS_NO_TIMEOUT);
2011-11-30 16:11:42 +00:00
fifo_write(aud->buffer, buf, size);
sys_lwmutex_unlock(&aud->lock);
2011-11-30 16:11:42 +00:00
return size;
}
2011-12-02 14:50:51 +00:00
static bool ps3_audio_stop(void *data)
2011-11-30 16:11:42 +00:00
{
2011-12-02 14:50:51 +00:00
ps3_audio_t *aud = data;
if (aud->started)
{
cellAudioPortStop(aud->audio_port);
aud->started = false;
}
2011-11-30 16:11:42 +00:00
return true;
}
2011-12-02 14:50:51 +00:00
static bool ps3_audio_start(void *data)
2011-11-30 16:11:42 +00:00
{
2011-12-02 14:50:51 +00:00
ps3_audio_t *aud = data;
if (!aud->started)
{
cellAudioPortStart(aud->audio_port);
aud->started = true;
}
2011-12-02 14:55:49 +00:00
return true;
2011-11-30 16:11:42 +00:00
}
static bool ps3_audio_alive(void *data)
{
ps3_audio_t *aud = data;
return aud->started;
}
2013-11-18 09:55:28 +00:00
static void ps3_audio_set_nonblock_state(void *data, bool toggle)
2011-11-30 16:11:42 +00:00
{
ps3_audio_t *aud = data;
2013-11-18 09:55:28 +00:00
aud->nonblocking = toggle;
2011-11-30 16:11:42 +00:00
}
2011-12-02 14:50:51 +00:00
static void ps3_audio_free(void *data)
2011-11-30 16:11:42 +00:00
{
uint64_t val;
2011-11-30 16:11:42 +00:00
ps3_audio_t *aud = data;
aud->quit_thread = true;
ps3_audio_start(aud);
sys_ppu_thread_join(aud->thread, &val);
2011-11-30 16:11:42 +00:00
ps3_audio_stop(aud);
cellAudioPortClose(aud->audio_port);
cellAudioQuit();
2011-11-30 16:11:42 +00:00
fifo_free(aud->buffer);
sys_lwmutex_destroy(&aud->lock);
sys_lwmutex_destroy(&aud->cond_lock);
sys_lwcond_destroy(&aud->cond);
2011-11-30 16:11:42 +00:00
free(data);
}
2011-12-02 14:50:51 +00:00
static bool ps3_audio_use_float(void *data)
{
(void)data;
return true;
}
2014-09-11 05:06:20 +00:00
audio_driver_t audio_ps3 = {
ps3_audio_init,
ps3_audio_write,
ps3_audio_stop,
ps3_audio_start,
ps3_audio_alive,
ps3_audio_set_nonblock_state,
ps3_audio_free,
2013-11-18 09:55:28 +00:00
ps3_audio_use_float,
"ps3",
NULL,
NULL
2011-11-30 16:11:42 +00:00
};