[WIP] DSP LLE Blog Post (#96)
* DSP LLE Blog Post: In progress * Address review comments and add missing media * Minor changes to wording and changed the intro to let the embed version look better * Add forum id * Add more paragraph breaks * Mention canary not nightly on the page at least once * Address review concerns * Update accurate-audio-emulation.md * Add notice that this is still very slow and we are working on that
|
@ -20,6 +20,7 @@
|
||||||
"gulp-sass": "^3.1.0",
|
"gulp-sass": "^3.1.0",
|
||||||
"gulp-util": "^3.0.8",
|
"gulp-util": "^3.0.8",
|
||||||
"merge-stream": "^1.0.1",
|
"merge-stream": "^1.0.1",
|
||||||
"run-sequence": "^2.1.0"
|
"run-sequence": "^2.1.0",
|
||||||
|
"yarn": "^1.12.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,242 @@
|
||||||
|
+++
|
||||||
|
date = "2018-12-07T08:00:00-08:00"
|
||||||
|
title = "Accurate Audio Emulation Has Arrived"
|
||||||
|
tags = [ "feature-update" ]
|
||||||
|
author = "jroweboy"
|
||||||
|
banner = "accurate-audio-emulation.png"
|
||||||
|
forum = 67781
|
||||||
|
+++
|
||||||
|
|
||||||
|
## Pokémon X / Y and Many More Games Are Finally Working!
|
||||||
|
|
||||||
|
You've been asking for it for years now, and we've been listening, we promise!
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/pokemonleague.png"
|
||||||
|
title="The Pokémon league awaits your challenge!"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
Thanks to the hard work of one of our very talented developers, some of Citra's longest standing issues are finally fixed! Special thanks to all those who are supporting these efforts on [Patreon](https://www.patreon.com/citraemu). These donations are given directly to support the hard working developers such as [wwylele](https://github.com/wwylele/) who spent almost an entire year of his spare time on the feature in this blog post! We love working on this project, and have a whole lot more to talk about in the coming weeks!
|
||||||
|
|
||||||
|
It's been a long time in development, but we are finally pleased to announce that many of the oldest bugs in Citra are now fixed in the latest Canary build thanks to the tireless efforts of [wwylele](https://github.com/wwylele/).
|
||||||
|
Among the titles that had issues with Citra's HLE audio emulation, one stands out as the number one most requested game of all time: Pokémon X and Y.
|
||||||
|
Before we get too much into the long story behind this great achievement, we should set expectations for what this means for the users of the emulator.
|
||||||
|
|
||||||
|
## F.A.Q
|
||||||
|
|
||||||
|
* What games are now working?
|
||||||
|
|
||||||
|
We've been able to test a few of the fan favorites such as Pokémon X / Y, Fire Emblem Fates and Echoes, and many more! If you've experienced audio crashes or bugs in the past, now's the best time to try those games out again and help us find any issues with this new accurate audio feature.
|
||||||
|
|
||||||
|
* How can I test it out?
|
||||||
|
|
||||||
|
In the Audio tab of the Configuration menu, there is a new option for Emulation. Selecting "LLE (Accurate)" will use the new feature, while the default value "HLE (Fast)" will continue to use the original audio code.
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/configuration.png"
|
||||||
|
title="You can find the dropdown here. Keep in mind you cannot switch between Fast and Accurate while a game is running"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
* Why is it so slow on every game?
|
||||||
|
|
||||||
|
**We still recommend using HLE (Fast) Audio emulation until further speed improvements are added to LLE (Accurate) emulation! Today we are pleased to announce that many bugs are fixed, but also we are aware that LLE (Accurate) audio makes every game run at around 5FPS or less!**
|
||||||
|
|
||||||
|
As you'll see in the rest of the article, this feature has been in development by a single developer for almost a whole year now. During this time, the focus was on accurate emulation, but now that it's released, we can and will put effort into optimizing it.
|
||||||
|
|
||||||
|
* What will happen to the current fast audio emulation?
|
||||||
|
|
||||||
|
It's not going anywhere! In fact, thanks to this new accurate audio emulation option, it should help developers make it even better so it will work with every game.
|
||||||
|
|
||||||
|
* How long will it take for games to be full speed with Accurate Audio?
|
||||||
|
|
||||||
|
We can't ever say for sure, but we really hope that it'll be soon! We've done some preliminary profiling and can confidently say that there's plenty of room for improvement, but now that the code change is live, we welcome any and all contributions to the [Teakra project](https://github.com/wwylele/teakra).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/levelup.png"
|
||||||
|
title="With the level up freeze fixed, Citra has levelled up too!"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
With that out of the way, buckle up as it's now time to dive into the storied history behind the fix for Citra's most prolific bug yet!
|
||||||
|
|
||||||
|
## All About HLE Audio And Why It's Awesome
|
||||||
|
|
||||||
|
Take a trip down memory lane, and you'll dig up a blog post from 2016 titled ["HLE Audio Comes to Citra"](https://citra-emu.org/entry/hle-audio-comes-to-citra/).
|
||||||
|
Written by the very talented [MerryMage](https://github.com/MerryMage/), High Level Audio Emulation (or HLE audio for short) provides excellent audio quality while also being very efficient.
|
||||||
|
So for emulation, where the goal of many developers is not only to make the emulation accurate, but also to make it *fast*, HLE audio is a great middle ground as you get to have high accuracy while also taking almost no processing effort.
|
||||||
|
But as usual, there is one thing that's particularly hard to get right with HLE audio.
|
||||||
|
In order to write an effective HLE audio engine, one must first reverse engineer the audio code that the game uses, and truly understand what it does.
|
||||||
|
|
||||||
|
[merry](https://github.com/MerryMage/) spent a long time writing tools to help break down exactly what the game was doing, and also decipher what the audio code is doing *semantically*.
|
||||||
|
This turns out to be pretty tricky in practice.
|
||||||
|
It's much simpler to look at disassembly and see what the code is doing than it is to really understand why it's doing something, which is a requirement when recreating the audio code.
|
||||||
|
Simply put, writing HLE audio support means diving deep into how the code for the game's audio works, and recreating its functionality in Citra, without ever running any actual audio code from the game.
|
||||||
|
But there's a very different way to handle audio, and this is hinted about at the end of the 2016 article: Low Level Audio Emulation (or LLE for short).
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/echoes.png"
|
||||||
|
title="Fire Emblem Echoes: Shadows of Valentia can get past the intro now as well"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
## Debugging Pokémon X Told Us That It's Broken but not WHY
|
||||||
|
|
||||||
|
Before looking in depth at what LLE audio emulation is all about, a quick diversion into the debugging effort that went into Pokémon X / Y is in order.
|
||||||
|
Looking at the [Citra YouTube channel](https://www.youtube.com/channel/UC_dcdgzuapBtAY4ol3x-90Q), one will find several videos talking about the games progress!
|
||||||
|
At the time, we were just as excited as everyone else to see how well the games were advancing, but at some point, they stopped getting better.
|
||||||
|
After CRO support landed to get the games running (thanks to both [Subv](https://github.com/Subv/) and [wwylele](https://github.com/wwylele/)), several fixes to the 3DS GPU emulation, followed by geometry shader support (thanks to the hard work of [neobrain](https://github.com/neobrain/), [JayFoxRox](https://github.com/JayFoxRox/), [ds84182](https://github.com/ds84182), and once again [wwylele](https://github.com/wwylele/)), we really hoped that the games would finally start working!
|
||||||
|
As everyone knows, they still didn't work!
|
||||||
|
|
||||||
|
We kept feeding more and more time into features that made the emulation so much better, yet this one very popular, and very stubborn game would not work.
|
||||||
|
[Subv](https://github.com/Subv/) spent many long hours reverse engineering the game, and found that at the core of the game lay a state machine that drives the game engine.
|
||||||
|
The game would transition from state to state, and mysteriously whenever the game softlocked, it simply wasn't moving onto the next state.
|
||||||
|
As cool as it is to learn what causes the softlock, it doesn't answer the big question of *why* the game doesn't transition to the next state like it should.
|
||||||
|
After spending more time than anyone could have asked, eventually he burned out and moved on to develop other amazing features for Citra such as multiplayer network support, leaving us without any more clues to why the game freezes.
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/kirby.png"
|
||||||
|
title="Kirby Battle Royale's missing sounds have been found!"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
## Then Is the Problem Everyone's Best Guess: AAC Audio?
|
||||||
|
|
||||||
|
Well-informed users have pointed out for years that the specific sounds that are not playing in Citra when emulating Pokémon X all have a very suspicious thing in common: all of them are stored in AAC audio format.
|
||||||
|
AAC (or [Advanced Audio Coding](https://en.wikipedia.org/wiki/Advanced_Audio_Coding)) is a standard audio format that typically has better sounding audio than mp3 at the same bitrate.
|
||||||
|
While we appreciate the detective work, there was one glaring problem with deciding that we just needed to add AAC audio support.
|
||||||
|
How *does* one add AAC audio support to Citra's HLE audio?
|
||||||
|
|
||||||
|
The answer was talked about earlier, in order to add a new feature in HLE audio, one needs to reverse engineer the audio code that the games use, and then find out exactly how the audio code processes AAC audio; where the data is passed through, where each decoding option is stored, and all the way down what every bit of data written to the audio pipe semantically means.
|
||||||
|
To make matters worse, there's no guarentee that this will fix any other games with similar symptoms.
|
||||||
|
After all, a game can upload any code it wants to the audio chip, meaning even if they both used AAC audio, they could potentially use different decoding options, causing the HLE AAC decoder to work for one game and not the other.
|
||||||
|
And worst of all, it's possible that everyone is wrong, and X/Y are freezing because of a completely unrelated issue!
|
||||||
|
|
||||||
|
Faced with this dilemma, [wwylele](https://github.com/wwylele) designed a test to show that audio is likely the cause of the softlock.
|
||||||
|
He knew from the get go that the HLE audio code was based off reverse engineering the most common audio code that games use, the home menu, and decided to make a custom rom hack for Pokémon X that replaced it's audio code with the home menu audio.
|
||||||
|
Upon launching the game on a 3DS, everything seemed fine at first, but soon enough the familiar lack of background music kicked in, and Pokémon X started to behave exactly like it does in Citra.
|
||||||
|
One short level up later, and the game froze, just like in Citra!
|
||||||
|
We double checked the results by recreating this on different copies of Pokémon X and different 3dses, and it all went the exact same way.
|
||||||
|
Audio issues is very likely the cause, but what then should be the fix?
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/dp.png"
|
||||||
|
title="Detective Pikachu cutscenes no longer skip parts and now run at the proper speed"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
## The Long Road to LLE Audio Emulation
|
||||||
|
|
||||||
|
The methods for fixing any audio issues boils down to two potential solutions.
|
||||||
|
Either take a good amount of time to research, reverse engineer, and recreate the audio code for Pokémon X/Y in HLE, or build out a program that can read the original binary audio code in Pokémon X/Y and emulate the actual audio chip, known as LLE.
|
||||||
|
Both of the options have advantages and disadvantages.
|
||||||
|
HLE means it'll be faster overall to get working, but also will likely take a lot more time and effort to fix bugs in other games with slightly different audio code; whereas LLE means that potentially every audio code in every game will *just work*, but also will take a lot longer to write, involve even more detailed technical research, and scariest of all, will probably end up running much slower.
|
||||||
|
Weighing the risks and rewards, [wwylele](https://github.com/wwylele) ended up choosing to build out a full LLE audio emulator, what's now known as Teakra.
|
||||||
|
|
||||||
|
The first commit on Teakra started in late January 2018, but design and research phase started before this.
|
||||||
|
This same audio chip, the TeakLite, was a part of the DSi system as well, albeit only used by a very small number of DSiWare.
|
||||||
|
In spite of its limited use on the DSi, [GBATek](http://problemkaputt.de/gbatek.htm#dsixpertteakdsp) is loaded with valuable information about the processor, put together by the reverse engineering efforts of Martin Korth and many other contributors.
|
||||||
|
There are others who have worked hard to write documentation, which [wwylele](https://github.com/wwylele) referenced often throughout development.
|
||||||
|
|
||||||
|
Building an LLE audio emulator from scratch is an exciting, yet somewhat scary prospect.
|
||||||
|
When working on HLE audio emulation, you really start to understand what the games are doing, but when writing an LLE audio emulator, you create a magical black box where binary data goes in, and binary data comes out.
|
||||||
|
This was especially true for [wwylele](https://github.com/wwylele) because he had never worked with a DSP before this!
|
||||||
|
It's daunting to know that you'll gain a deep understanding of the architecture and the instruction set of the audio chip, but you won't gain any detailed knowledge of how the audio code is functioning.
|
||||||
|
|
||||||
|
<div style="text-align: center;">
|
||||||
|
<iframe
|
||||||
|
src="https://clips.twitch.tv/embed?clip=CloudySmallAlligatorBIRB&autoplay=false&muted=true"
|
||||||
|
height="300"
|
||||||
|
width="400"
|
||||||
|
scrolling="no"
|
||||||
|
preload="metadata"
|
||||||
|
allowfullscreen="true">
|
||||||
|
</iframe>
|
||||||
|
<h4>Who knew live streaming yourself staring at a monitor for hours could be this fun!</h4>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
## Wait, How Long Until This Starts Playing Sound?
|
||||||
|
|
||||||
|
Several months after starting, the interpreter was coming along nicely, and it was time to start hooking things together.
|
||||||
|
As a quick explaination about what interpreter is, the interpreter is responsible for running the actual machine code of the audio code, and emulating each of the instructions on the computer that it's running on.
|
||||||
|
This marked another very exciting yet very scary point in time; it's been about 5 months of work on audio emulation, and all of it in complete silence!
|
||||||
|
To understand why, first one must understand that audio hardware is rather complicated, and it's more than just the running machine code.
|
||||||
|
Anything beyond simple audio output is typically generated through specialized hardware known as a [Digital Signal Processor](https://en.wikipedia.org/wiki/Digital_signal_processor), or DSP for short.
|
||||||
|
This custom built hardware is very efficient at transforming and processing audio samples while using less power, enabling the game developers to produce high quality audio without severely impacting battery life.
|
||||||
|
|
||||||
|
In order to start seeing results, [wwylele](https://github.com/wwylele) needed to emulate the ways that the 3DS communicates with the DSP chip, such as [Memory Mapped IO](https://en.wikipedia.org/wiki/Memory-mapped_I/O), [hardware interrupts](https://en.wikipedia.org/wiki/Interrupt), and [Direct Memory Access](https://en.wikipedia.org/wiki/Direct_memory_access).
|
||||||
|
The first two are a piece of cake to recreate when compared to DMA.
|
||||||
|
There are straightfoward test cases one can write and run on a real 3DS to verify how the 3DS and TeakLite DSP respond and recreate this in Teakra, and after a month of work, [wwylele](https://github.com/wwylele) got them both functional.
|
||||||
|
But DMA poses a unique challenge, as DMA enables the DSP to do direct memory to memory transfers, independent of what the CPU is doing, making it really hard to figure out how it works!
|
||||||
|
To add to the trouble, DMA is the least documented feature on [GBATek](http://problemkaputt.de/gbatek.htm#dsixpertteakdsp), meaning so there is nothing one can study to get an understanding of how the TeakLite does DMA transfers.
|
||||||
|
|
||||||
|
Maybe, just maybe, DMA won't be needed to produce audio output!
|
||||||
|
Around August 2018, [wwylele](https://github.com/wwylele) hooked everything together except for DMA with this hope in mind and...
|
||||||
|
|
||||||
|
Nothing.
|
||||||
|
|
||||||
|
Even worse, the games exhibited the same behavior from before HLE audio was added to Citra, implying that the games weren't detecting that anything was working at all.
|
||||||
|
After spending a few weeks fiddling around with the code, and trying to rule out that it wasn't playing audio because of some bug in the existing code, [wwylele](https://github.com/wwylele) reaffirmed what he always knew.
|
||||||
|
When it comes to writing an LLE DSP emulator, it's all or nothing.
|
||||||
|
Either all of your code works, or absolutely nothing happens.
|
||||||
|
Time to work on DMA.
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/dspnotes.png"
|
||||||
|
title="A small sample of what it looks like when you are trying to understand all of this DSP stuff"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
<h4 style="text-align: center;"><a href="/resources/entry/accurate-audio-emulation/dspnote.pdf">The full notes are uploaded as a pdf in case someone finds this useful.</a></h4>
|
||||||
|
|
||||||
|
## Burn Out Strikes
|
||||||
|
|
||||||
|
Over the next month and into September, [wwylele](https://github.com/wwylele) took shots in the dark and tried to implement DMA.
|
||||||
|
He started first with a simple approach to copy data to and from the specific memory regions.
|
||||||
|
DMA allows the DSP to copy data quickly both to the 3DS RAM and from the 3DS RAM, making it well suited for uploading audio samples and writing audio output.
|
||||||
|
With the simple approach in place, data was being transferred into the emulated DSP, but the output was always zero.
|
||||||
|
Debug the code as he might, it was just too frustrating to figure out what was wrong.
|
||||||
|
Is there an error in the interpreter? MMIO? Audio Output? Maybe it's actually in DMA?
|
||||||
|
At this point, the stress was too much to handle.
|
||||||
|
The fear of failure after spending so much time and effort on this project really sunk in, and [wwylele](https://github.com/wwylele) just stopped working on Teakra.
|
||||||
|
By the middle of September, [wwylele](https://github.com/wwylele) had just had enough, and decided to work on something else in the mean time.
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/conversation.png"
|
||||||
|
title="It turns out developers are still just regular human beings. Thankfully everything turned out okay!"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
## Success... Finally!
|
||||||
|
|
||||||
|
The end of November rolls around with no news about DSP LLE, and [wwylele](https://github.com/wwylele) is working tirelessly to fix many other core issues, including [fixing issues with how Citra handled memory that prevented many cheat codes from working properly](https://github.com/citra-emu/citra/pull/4392) (but more on that in another blog post!)
|
||||||
|
Out of nowhere, there's new progress on DMA.
|
||||||
|
[wwylele](https://github.com/wwylele) worked out some extra details about the different patterns that the DMA can use to copy memory and things started taking off from there.
|
||||||
|
The next day, he noticed an [oversight](https://github.com/wwylele/teakra/commit/d22c2d99d3b0858eb190bf9298815fcac237793a#diff-fe5ba875bf987b9df6685326294fe86fR13) in his simple DMA approach, which ended up causing the DMA to copy data to the *program* region in memory instead of the data region!
|
||||||
|
Now that data was going to the right spot, it was much easier to debug.
|
||||||
|
|
||||||
|
After some more reverse engineering and hardware testing, wwylele had a good idea of how to recreate DMA completely now, and tried it out on a custom application that produces just a simple sine wave.
|
||||||
|
|
||||||
|
{{< audio src="/resources/entry/accurate-audio-emulation/sine_wav_deformed.ogg" >}}
|
||||||
|
|
||||||
|
After some more tinkering, and with renewed enthusiasm, he started finding and fixing minor bugs here and there.
|
||||||
|
All of the sudden, everything just started working.
|
||||||
|
|
||||||
|
{{< audio src="/resources/entry/accurate-audio-emulation/kirby_bad.ogg" >}}
|
||||||
|
|
||||||
|
And with a few more fixes...
|
||||||
|
|
||||||
|
{{< audio src="/resources/entry/accurate-audio-emulation/kirby_good.ogg" >}}
|
||||||
|
|
||||||
|
Finally, on Dec 6th, this is what happened after we hooked it into Citra's audio framework (sped up to full speed.)
|
||||||
|
|
||||||
|
{{< audio src="/resources/entry/accurate-audio-emulation/pokemonx.ogg" >}}
|
||||||
|
|
||||||
|
{{< figure src="/images/entry/accurate-audio-emulation/mhgen_najarala_armor_4K.png"
|
||||||
|
title="The audio used to be too loud after changing to certain armor in Monster Hunter Generations, but this bug is no more!"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
## The Future of Audio in Citra
|
||||||
|
|
||||||
|
So what is going to happen to the current audio code?
|
||||||
|
As you can see, there's a lot of benefit in both approaches, and we feel they both have a bright future ahead of them.
|
||||||
|
HLE audio will almost always remain the preffered choice for users, as it's much faster and produces very good audio quality, while LLE audio will be an excellent tool for finding and debugging audio issues, as after any last remaining bugs are worked out, it should have near perfect compatibility.
|
||||||
|
With LLE audio released now, we can use it to take a deeper look at the communication between 3DS and DSP, allowing us to mimic responses from the DSP, and begin researching what each of the bytes of data actually mean.
|
||||||
|
We plan to fix any outstanding issues with HLE "fast" audio to support all of the games, and also plan to optimize LLE "accurate" audio so it will be usable at a good framerate!
|
||||||
|
|
||||||
|
|
||||||
|
<h4 style="text-align:center;">
|
||||||
|
Thanks to our patreon supporters, our fans, and our userbase for the continual support!
|
||||||
|
|
||||||
|
<b>Please consider supporting us on [Patreon](https://www.patreon.com/citraemu)!<br>
|
||||||
|
If you would like to contribute to this project, checkout our [GitHub](https://github.com/citra-emu/citra)!</b>
|
||||||
|
</h4>
|
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 903 KiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 1.7 MiB |
After Width: | Height: | Size: 584 KiB |
After Width: | Height: | Size: 2.1 MiB |
After Width: | Height: | Size: 1.3 MiB |
|
@ -1,4 +1,5 @@
|
||||||
<audio preload="auto" controls>
|
<audio preload="auto" controls>
|
||||||
<source src="{{.Get "src"}}" type="audio/ogg">
|
<source src="{{.Get "src"}}" type="audio/ogg">
|
||||||
Your browser doesn't support Ogg Vorbis audio. :(
|
Your browser doesn't support Ogg Vorbis audio. :(
|
||||||
|
<a href="{{.Get "src"}}">Download the audio instead</a>
|
||||||
</audio>
|
</audio>
|
||||||
|
|