123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- /* vim: tabstop=4 shiftwidth=4 noexpandtab
- * This file is part of ToaruOS and is released under the terms
- * of the NCSA / University of Illinois License - see LICENSE.md
- * Copyright (C) 2015 Mike Gerow
- *
- * Sound subsystem.
- *
- * Currently has the ability to mix several sound sources together. Could use
- * a /dev/mixer device to allow changing of audio settings. Also could use
- * the ability to change frequency and format for audio samples. Also doesn't
- * really support multiple devices despite the interface suggesting it might...
- */
- #include <kernel/module.h>
- #include <kernel/ringbuffer.h>
- #include <kernel/system.h>
- #include <kernel/mod/snd.h>
- #include <toaru/list.h>
- #include <errno.h>
- /* Utility macros */
- #define N_ELEMENTS(arr) (sizeof(arr) / sizeof((arr)[0]))
- #define SND_BUF_SIZE 0x4000
- static uint32_t snd_dsp_write(fs_node_t * node, uint32_t offset, uint32_t size, uint8_t *buffer);
- static int snd_dsp_ioctl(fs_node_t * node, int request, void * argp);
- static void snd_dsp_open(fs_node_t * node, unsigned int flags);
- static void snd_dsp_close(fs_node_t * node);
- static int snd_mixer_ioctl(fs_node_t * node, int request, void * argp);
- static void snd_mixer_open(fs_node_t * node, unsigned int flags);
- static void snd_mixer_close(fs_node_t * node);
- static spin_lock_t _devices_lock;
- static list_t _devices;
- static fs_node_t _dsp_fnode = {
- .name = "dsp",
- .device = &_devices,
- .mask = 0666,
- .flags = FS_CHARDEVICE,
- .ioctl = snd_dsp_ioctl,
- .write = snd_dsp_write,
- .open = snd_dsp_open,
- .close = snd_dsp_close,
- };
- static fs_node_t _mixer_fnode = {
- .name = "mixer",
- .mask = 0666,
- .flags = FS_CHARDEVICE,
- .ioctl = snd_mixer_ioctl,
- .open = snd_mixer_open,
- .close = snd_mixer_close,
- };
- static spin_lock_t _buffers_lock;
- static list_t _buffers;
- static uint32_t _next_device_id = SND_DEVICE_MAIN;
- struct dsp_node {
- ring_buffer_t * rb;
- size_t samples;
- size_t written;
- int realtime;
- };
- int snd_register(snd_device_t * device) {
- int rv = 0;
- debug_print(WARNING, "[snd] _devices lock: %d", _devices_lock);
- spin_lock(_devices_lock);
- device->id = _next_device_id;
- _next_device_id++;
- if (list_find(&_devices, device)) {
- debug_print(WARNING, "[snd] attempt to register duplicate %s", device->name);
- rv = -1;
- goto snd_register_cleanup;
- }
- list_insert(&_devices, device);
- debug_print(NOTICE, "[snd] %s registered", device->name);
- snd_register_cleanup:
- spin_unlock(_devices_lock);
- return rv;
- }
- int snd_unregister(snd_device_t * device) {
- int rv = 0;
- node_t * node = list_find(&_devices, device);
- if (!node) {
- debug_print(WARNING, "[snd] attempted to unregister %s, "
- "but it was never registered", device->name);
- goto snd_unregister_cleanup;
- }
- list_delete(&_devices, node);
- debug_print(NOTICE, "[snd] %s unregistered", device->name);
- snd_unregister_cleanup:
- spin_unlock(_devices_lock);
- return rv;
- }
- static uint32_t snd_dsp_write(fs_node_t * node, uint32_t offset, uint32_t size, uint8_t *buffer) {
- if (!_devices.length) return -1; /* No sink available. */
- struct dsp_node * dsp = node->device;
- size_t s = ring_buffer_available(dsp->rb);
- size_t out;
- if (size > s && dsp->realtime) {
- out = ring_buffer_write(dsp->rb, s & ~0x3, buffer);
- } else {
- out = ring_buffer_write(dsp->rb, size, buffer);
- }
- dsp->written += out / 4;
- return out;
- }
- static int snd_dsp_ioctl(fs_node_t * node, int request, void * argp) {
- /* Potentially use this to set sample rates in the future */
- struct dsp_node * dsp = node->device;
- if (request == 4) {
- dsp->realtime = 1;
- } else if (request == 5) {
- return dsp->samples;
- }
- return -1;
- }
- static void snd_dsp_open(fs_node_t * node, unsigned int flags) {
- /*
- * XXX(gerow): A process could take the memory of the entire system by opening
- * too many of these...
- */
- /* Allocate a buffer for the node and keep a reference for ourselves */
- struct dsp_node * dsp = malloc(sizeof(struct dsp_node));
- dsp->rb = ring_buffer_create(SND_BUF_SIZE);
- dsp->samples = 0;
- dsp->written = 0;
- dsp->realtime = 0;
- node->device = dsp;
- spin_lock(_buffers_lock);
- list_insert(&_buffers, node->device);
- spin_unlock(_buffers_lock);
- }
- static void snd_dsp_close(fs_node_t * node) {
- struct dsp_node * dsp = node->device;
- spin_lock(_buffers_lock);
- list_delete(&_buffers, list_find(&_buffers, dsp));
- spin_unlock(_buffers_lock);
- ring_buffer_destroy(dsp->rb);
- free(dsp->rb);
- free(dsp);
- }
- static snd_device_t * snd_device_by_id(uint32_t device_id) {
- spin_lock(_devices_lock);
- snd_device_t * out = NULL;
- snd_device_t * cur = NULL;
- foreach(node, &_devices) {
- cur = node->value;
- if (cur->id == device_id) {
- out = cur;
- }
- }
- spin_unlock(_devices_lock);
- return out;
- }
- static int snd_mixer_ioctl(fs_node_t * node, int request, void * argp) {
- switch (request) {
- case SND_MIXER_GET_KNOBS: {
- snd_knob_list_t * list = argp;
- snd_device_t * device = snd_device_by_id(list->device);
- if (!device) {
- return -EINVAL;
- }
- list->num = device->num_knobs;
- for (uint32_t i = 0; i < device->num_knobs; i++) {
- list->ids[i] = device->knobs[i].id;
- }
- return 0;
- }
- case SND_MIXER_GET_KNOB_INFO: {
- snd_knob_info_t * info = argp;
- snd_device_t * device = snd_device_by_id(info->device);
- if (!device) {
- return -EINVAL;
- }
- for (uint32_t i = 0; i < device->num_knobs; i++) {
- if (device->knobs[i].id == info->id) {
- memcpy(info->name, device->knobs[i].name, sizeof(info->name));
- return 0;
- }
- }
- return -EINVAL;
- }
- case SND_MIXER_READ_KNOB: {
- snd_knob_value_t * value = argp;
- snd_device_t * device = snd_device_by_id(value->device);
- if (!device) {
- return -EINVAL;
- }
- return device->mixer_read(value->id, &value->val);
- }
- case SND_MIXER_WRITE_KNOB: {
- snd_knob_value_t * value = argp;
- snd_device_t * device = snd_device_by_id(value->device);
- if (!device) {
- return -EINVAL;
- }
- return device->mixer_write(value->id, value->val);
- }
- default: {
- return -EINVAL;
- }
- }
- }
- static void snd_mixer_open(fs_node_t * node, unsigned int flags) {
- return;
- }
- static void snd_mixer_close(fs_node_t * node) {
- return;
- }
- int snd_request_buf(snd_device_t * device, uint32_t size, uint8_t *buffer) {
- static int16_t tmp_buf[0x100];
- memset(buffer, 0, size);
- spin_lock(_buffers_lock);
- foreach(buf_node, &_buffers) {
- struct dsp_node * dsp = buf_node->value;
- ring_buffer_t * buf = dsp->rb;
- /* ~0x3 is to ensure we don't read partial samples or just a single channel */
- size_t bytes_left = MIN(ring_buffer_unread(buf) & ~0x3, size);
- int16_t * adding_ptr = (int16_t *) buffer;
- while (bytes_left) {
- size_t this_read_size = MIN(bytes_left, sizeof(tmp_buf));
- ring_buffer_read(buf, this_read_size, (uint8_t *)tmp_buf);
- dsp->samples += this_read_size / 4; /* 16 bits, 2 channels */
- /*
- * Reduce the sample by a half so that multiple sources won't immediately
- * cause awful clipping. This is kind of a hack since it would probably be
- * better to just use some kind of compressor.
- */
- for (size_t i = 0; i < N_ELEMENTS(tmp_buf); i++) {
- tmp_buf[i] /= 2;
- }
- for (size_t i = 0; i < this_read_size / sizeof(*adding_ptr); i++) {
- adding_ptr[i] += tmp_buf[i];
- }
- adding_ptr += this_read_size / sizeof(*adding_ptr);
- bytes_left -= this_read_size;
- }
- }
- spin_unlock(_buffers_lock);
- return size;
- }
- static snd_device_t * snd_main_device() {
- spin_lock(_devices_lock);
- foreach(node, &_devices) {
- spin_unlock(_devices_lock);
- return node->value;
- }
- spin_unlock(_devices_lock);
- return NULL;
- }
- #if 0
- #include <mod/shell.h>
- DEFINE_SHELL_FUNCTION(snd_full, "[debug] turn snd master to full") {
- snd_main_device()->mixer_write(SND_KNOB_MASTER, UINT32_MAX);
- return 0;
- }
- DEFINE_SHELL_FUNCTION(snd_half, "[debug] turn snd master to half") {
- snd_main_device()->mixer_write(SND_KNOB_MASTER, UINT32_MAX / 2);
- return 0;
- }
- DEFINE_SHELL_FUNCTION(snd_off, "[debug] turn snd master to lowest volume") {
- snd_main_device()->mixer_write(SND_KNOB_MASTER, 0);
- return 0;
- }
- #endif
- static int init(void) {
- vfs_mount("/dev/dsp", &_dsp_fnode);
- vfs_mount("/dev/mixer", &_mixer_fnode);
- #if 0
- BIND_SHELL_FUNCTION(snd_full);
- BIND_SHELL_FUNCTION(snd_half);
- BIND_SHELL_FUNCTION(snd_off);
- #endif
- return 0;
- }
- static int fini(void) {
- /* umount? */
- return 0;
- }
- MODULE_DEF(snd, init, fini);
- #if 0
- MODULE_DEPENDS(debugshell);
- #endif
|