summaryrefslogtreecommitdiff
path: root/Kernel/Devices/SB16.cpp
AgeCommit message (Expand)Author
2020-08-04Kernel: Make File::write() and File::read() return KResultOr<size_t>Andreas Kling
2020-07-06Kernel: Require a reason to be passed to Thread::wait_onTom
2020-07-01Kernel: Turn Thread::current and Process::current into functionsTom
2020-05-31Kernel: Fix glitched audio output in SB16 driverAndreas Kling
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Kernel: Let's say that IO::delay(N) delays for N microsecondsAndreas Kling
2020-04-28Kernel: Add Region helpers for accessing underlying physical pagesAndreas Kling
2020-04-10Kernel: Add explicit offset parameter to File::read etcConrad Pankoff
2020-03-23AK: Reduce header dependency graph of String.hAndreas Kling
2020-03-19Kernel: Use a const reference to RegisterState in IRQ handlingLiav A
2020-03-08Kernel: Add missing #includes now that <AK/StdLibExtras.h> is smallerAndreas Kling
2020-03-06Kernel: Enable IRQs before sending commands to devicesLiav A
2020-03-02Kernel: Use klog() instead of kprintf()Liav A
2020-02-24Kernel: Update SB16 driver to use the new IRQHandler classLiav A
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-09Kernel: Apply changes to use LibBareMetal definitionsLiav A
2020-01-22Revert "Kernel: Replace IRQHandler with the new InterruptHandler class"Andreas Kling
2020-01-22Kernel: Replace IRQHandler with the new InterruptHandler classLiav A
2020-01-20SB16: Map the DMA buffer in kernelspace so we can write to itAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-12-01Kernel: Use a WaitQueue in the SoundBlaster 16 driverAndreas Kling
2019-11-04Kernel: Make File's can_read/can_write take a const FileDescription&Andreas Kling
2019-07-20Thread: Return a result from block() indicating why the block terminatedRobin Burchell
2019-07-19Kernel: Restore state strings for block statesRobin Burchell
2019-07-14SB16: Set "m_interrupted" to false before enabling IRQ's.Andreas Kling
2019-07-14Kernel: Add Thread::block_until(Condition).Andreas Kling
2019-07-13SB16: Write the correct DMA buffer offset for 16-bit samples.Andreas Kling
2019-07-13SB16: IRQ handler should send 0xd5 to pause 16-bit playback.Andreas Kling
2019-07-13SB16: Use a snooze alarm to block the current thread while playing.Andreas Kling
2019-07-13SB16: Put debug spam behind SB16_DEBUG.Andreas Kling
2019-07-13SB16: Use Stereo samples by default.Andreas Kling
2019-07-13SB16: Send (sample count, less 1) to the DSP, not the number of bytes.Andreas Kling
2019-07-13SB16: Switch to signed 16-bit 44100 Hz Mono by default.Andreas Kling
2019-07-13Kernel: First cut of a sb16 driverRobin Burchell