The Raspberry Pi Home Media Center is a series of compact and neatly designed hardware projects that combine the power of the Raspberry Pi Zero board and the Hi-Fi DAC.
The Raspberry PI Media Center Hats is a series of boards designed to solve two weak points of the original Media Center – (a) the possibility to work with any Raspberry Pi and (b) the added cost of Alu case that is not always required in the project.
The HiFi version of the board uses the capabilities of the TI’s PCM5100 32-bit DAC with line-level output, just like to HiFi Media Center, but doubling the number of outputs.
The HiFi-Amped Hat adds a TPA3110 D-class amp to the above setup, allowing connection of large speakers and simplicity of setup and usage.
Loud Hat is an equivalent of Loud Media Center, using MAX98365 DAC with D-class amp, doubling the number of channels
The Louder version is based on TAS5805M with a stereo amplifier delivering up to 30W per channel (no longer restricted b
In the previous post I mentioned plans to move beyond TAS5805M. That work is now far enough along to share - introducing the Louder Raspberry Hat “Plus” model
This is not a redesign of the concept but an evolution of the platform: more efficient hardware, more advanced DSP, and a linux driver that unifies support across DAC family
The Plus version is built around a newer TAS5825M DAC that I previously tested on ESP32 and now integrated into the Raspberry Pi HAT platform. The most immediate improvement is power efficiency. The new chip has significantly lower Rds(on), which reduces heat dissipation and improves behavior under high load. In practice, it runs noticeably cooler in the same enclosure and leaves more thermal margin for compact builds.
On the software side, I reworked the driver so both DAC families are supported by the same code. The system still presents a single sound card with independently controlled codecs for 2.0 and 2.1 Hats, but now the platform is not tied to one specific chip. Configuration model, DSP control, and runtime behavior remain consistent, you just need to specify the I2C right address (examples provided in the docs).
Another addition is fault monitoring exposed to user space through ALSA. Previously faults could be handled at driver level; now they are also observable directly from user space without custom tooling. This allows for example automatically back off volume when overtemp warning lit up.
Everything else from the original platform remains:
Single or cascaded Dual DAC topology with independent DAC controls
15-band EQ adjustable on the fly and restored on boot
LF filter for subwoofer channel with cutoff frequency and gain control
Separate gain controls for L/R and Sub/Sat balance
New fast connectors 😉
The Plus model is intended to extend the platform rather than replace the existing boards. Both versions will remain supported by the same driver stack. Both generations are available on Tindie
Hey folks. Today is the day, when I close the task that I was trying to solve for 3 years, with many many attempts. Finally, together with my friend Claude, we managed to do it.
It is 2.1 configuration with two TAS5805M DACs daisy-chained working on Linux the way it should - Single sound card, two codecs, driven by two kernel module instances, **individually controlled** via Alsa.
Main DAC driver stereo speakers, with 15-band EQ available. Secondary DAC drives a single subwoofer channel in bridge mode, with frequency adjustable LF filter. Seriously, I was fighting kernel module and device tree for 3 YEARS to make it work the way it should!
The code and docs are here. Next stop is TAS5825M version of the Louder Raspberry Hat, with dual-DAC variant from the start.
Hey Folks. I spent the last 2 weeks trying to upgrade my TAS5805m raspberry driver to support multiple DACs chained into a single audio interface. Specifically for my 2X Hat (on the pic). Seems like driver implementation is almost ready for it, but I struggled to provide a valid device tree file that would configure a single audio interface that is linked to multiple DACs. I reached out to TI support, and they provided a whole new driver implementation, that is a work-in-progress on their side.
After looking inside the code, I found it to be a bit clumsy, and many features were missing compared to the original implementation. But in other aspects, the TI code was much better integrated into the Linux kernel ASoC, and most importantly, after some changes, it worked with dual DAC implementation. At this point, I will provide this implementation as an alternative to the original driver until I figure out how to make it work in the chaining config (branch)
It works with both Louder Raspberry 1X and 2X hats, and for both, I've implemented 11 profiles for all configurations: 0.1 (subwoofer, bridged) / 2.0 (stereo) / 2.1 configs
I'm testing it myself currently and it sounds great, although it is a challenge for such a small hat to dissipate all the heat from two DACs. The 2X Hat itself is available for purchase now, and it is also possible to stack two 1X Hats to get a similar result.
Next stop is to do 2.1 for the larger Media Center format, and also ship the same DAC setup into the ESP32 device.
Hey folks. I'm finalizing a major update in the Raspberry Hat family. I've straighten out the full lineup of DACs that I have developed and tested and all of them are available right now in a cost-efficient Hat shape (Media Center versions are coming up next). All of them available in 1X version, which is a simple stereo DAC; and a 2X version that is a Dual configuration that is possible to use on new Raspberry Pi 5 with both outputs available independently (so you can create multi-zone systems using a singe host device).
First in the line is HiFi Rasberry Pi Hat based on well known PCM5100 DAC
The next one is Loud Raspberry Pi Hat based on MAX98357A DAC (5W per channel with 5V at input)
Amped Raspberry Pi Hat is a PCM5100 DAC combined together with TPA3110 D-class amp. It is very easy to setup and it can drive large speakers, delivering up to 25W per channel (or about twice as much in bridge mode)
An the last one is well known Louder Raspberry Hat based on TAS5805M DAC, with around the same 25W per channel, but now with 2X version with a companion DACs connected together to drive 2.1 speaker set
This feels as a major achievement for me and I hope that anyone who's out there to do an audio on Raspberry will find something useful for themselves.