https://github.com/rodri042/gba-remote-play Skip to content Sign up * Why GitHub? Features - + Mobile - + Actions - + Codespaces - + Packages - + Security - + Code review - + Issues - + Integrations - + GitHub Sponsors - + Customer stories- * Team * Enterprise * Explore + Explore GitHub - Learn and contribute + Topics - + Collections - + Trending - + Learning Lab - + Open source guides - Connect with others + The ReadME Project - + Events - + Community forum - + GitHub Education - + GitHub Stars program - * Marketplace * Pricing Plans - + Compare plans - + Contact Sales - + Education - [ ] [search-key] * # In this repository All GitHub | Jump to | * No suggested jump to results * # In this repository All GitHub | Jump to | * # In this user All GitHub | Jump to | * # In this repository All GitHub | Jump to | Sign in Sign up {{ message }} rodri042 / gba-remote-play * Notifications * Star 156 * Fork 5 Stream Raspberry Pi games to the GBA via the Link Cable MIT License 156 stars 5 forks Star Notifications * Code * Issues 0 * Pull requests 0 * Actions * Projects 0 * Wiki * Security * Insights More * Code * Issues * Pull requests * Actions * Projects * Wiki * Security * Insights master Switch branches/tags [ ] Branches Tags Could not load branches Nothing to show {{ refName }} default View all branches Could not load tags Nothing to show {{ refName }} default View all tags 3 branches 3 tags Code Clone HTTPS GitHub CLI [https://github.com/r] Use Git or checkout with SVN using the web URL. [gh repo clone rodri0] Work fast with our official CLI. Learn more. * Open with GitHub Desktop * Download ZIP Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Go back Launching GitHub Desktop If nothing happens, download GitHub Desktop and try again. Go back Launching Xcode If nothing happens, download Xcode and try again. Go back Launching Visual Studio Code Your codespace will open once ready. There was a problem preparing your codespace, please try again. Latest commit @rodri042 rodri042 Adding a note about cartridges ... f391064 Jul 11, 2021 Adding a note about cartridges f391064 Git stats * 399 commits Files Permalink Failed to load latest commit information. Type Name Latest commit message Commit time .licenses Updating licenses Jul 10, 2021 gba Adding rpi build options Jul 10, 2021 raspi Adding rpi build options Jul 10, 2021 .editorconfig Project initialization May 21, 2021 .gitattributes Adding some raspi code May 21, 2021 .gitignore Ignoring gbfs files Jun 16, 2021 LICENSE Adding licenses May 30, 2021 README.md Adding a note about cartridges Jul 11, 2021 View code gba-remote-play GBA Jam 2021 Demo with audio How it works Serial communication Communication modes Normal Mode / SPI Reaching the maximum speed MISO waits Video Reading screen pixels Drawing on the GBA screen Color quantization Scaling Image compression Temporal diffs Run-length encoding Trimming the diffs Input Protocol overview Metadata exchange Audio Reading system audio Encoding GSM frames Controlling Linux pipes Decompressing on time EWRAM Overclock Setup Audio (optional) Credits README.md gba-remote-play video-only.mp4 This software streams games from a Raspberry Pi to a Game Boy Advance, through its Link Port. Video and audio are compressed and sent in real time to the GBA, while the latter responds with its current input, allowing to play games of any platform by using the GBA (hence, Remote Play). Features: * Plays any game using RetroPie on the GBA! * 120x80 pixels of power! * ~60fps using the default display mode * Retro scanlines * Experimental audio support! * Crashes on the GB Micro! (yep, that's a feature) rlabs Created by [r]labs. Check out my other GBA projects! * piuGBA: A PIU emulator /[?]\[?]\[?]/[?] * gba-link-connection: A multiplayer library GBA Jam 2021 All this code was made during the GBA Jam 2021. Since this project doesn't fit well into the jam (as it requires external hardware), there's a Demo available in the Releases section where one GBA sends a video with audio to another GBA via Link Cable. Here's a video of it: gba-jam-demo.mp4 The code of that demo is in the #gba-jam branch. Demo with audio video-and-audio.mp4 How it works [?][?] This section will talk about implementation details. For setup instructions, scroll down to Setup! [?][?] Basically, there are two programs: * On the GBA, a ROM that receives data. * On the RPI, a program that collects and sends data. The ROM is sent to the GBA by using the multiboot protocol, which allows small programs to be sent via Link Cable. No cartridge is required. Serial communication Communication is done through a GBA's Link Cable, soldered to the Raspberry Pi's pins. GBA Link Cable's pinout [124884342-] Communication modes The GBA supports several serial communication modes. Depending on what mode you use, the pins behave differently. The most common ones are: * Normal Mode: It's essentially SPI mode 3, but they call it "Normal mode" here. The transfer rate can be either 256Kbit/s or 2Mbit/s, and packets can be 8-bit or 32-bit. * Multiplayer Mode: What games normally use for multiplayer with up to 4 simultaneous GBAs. The maximum transfer rate is 115200bps and packets are always 16-bit. * General Purpose Input/Output: Classic GPIO, used for controlling LEDs, rumble motors, and that kind of stuff. To have a decent frame rate, this project uses the maximum available speed: that's Normal Mode at 2Mbps, with 32-bit transfers. Normal Mode / SPI SPI is a synchronous protocol supported by hardware in many devices, that allows full-duplex transmission. There's a master and a slave, and when the master issues a clock cycle, the two devices send data to each other (one bit at a time). SPI cycle [124885912-] This is what happens on an SPI cycle. Both devices use shift registers to move the bits of data circularly. You can read more about the data transmission protocol here. The GBA can work both as master or as slave, but the Raspberry Pi only works as master. So, the Raspberry controls the clock. As for the connection, only 4 pins are required for the transmission: CLK (clock), MOSI (master out, slave in), MISO (master in, slave out), and GND (ground). * On the GBA, these are Pin 5 (SC), Pin 3 (SI), Pin 2 (SO), and Pin 6 (GND). * On the RPI, these are GPIO 11 (SPI0 SCLK), GPIO 10 (SPI0 MOSI), GPIO 9 (SPI0 MISO), and one of its multiples GNDs. GBA <-> Raspberry Pi connection diagram [124893645-] Some peculiarities about GBA's Normal Mode: * When linking two GBAs, you need to use a GBC Link Cable. If you use a GBA one, the communication will be one-way: the slave will receive data but the master will receive zeroes. * Communication at 2Mbps is only reliable when using very short wires, as it's intended for special expansion hardware. Or so they say, I've tested it with a long cable and it's not "unreliable", just slower [?] Related code: * SPIMaster on the Raspberry Pi * SPISlave on the GBA * SPIMaster on the GBA (used for the GBA Jam demo) Reaching the maximum speed In my tests with a Raspberry Pi 3, the maximum transfer rates I was able to achieve were: * Bidirectional: 1.6Mbps. From here, the Raspberry Pi starts receiving garbage from the GBA. * One-way: 2.56Mbps. Crank this up, and nothing good will happen. One-way transfers are fine in this case, because we only care about input and some sync packets from the GBA. That means that the code is constantly switching between two frequencies depending of if it needs a response or not. In all cases the Raspberry Pi has to wait a small number of microseconds to let the poor GBA's CPU rest. Speed benchmark [125121356-] The first dot means 40000 packets/second and each extra dot adds 5000 more. At maximum speed they should be all green. The one at the right indicates if we're free of corrupted packets. If it's red, adjust! Related code: * Delay before each transfer * GBA benchmark code * RPI benchmark code * SPI config MISO waits In classic SPI, the master blindly issues clock cycles and it's responsability of the slave to catch up and process all packets on time. But here, sometimes the GBA is very busy doing things like putting pixels on screen or whatever it has to do, so it needs a way to tell the master to stop. As recommended in the GBA manual, the slave can put MISO on HIGH when it's idle, and master can read its value as a GPIO input pin and wait to send until it's LOW. Pls don't send me anything [125120423-] * Disable transfers (slave) * MISO wait (master) Video Reading screen pixels First, we need to configure Raspbian to use a frame buffer size that that matches the GBA's resolution: 240x160. There are two properties called framebuffer_width and framebuffer_height inside /boot/ config.txt that let us change this. Linux can provide all the pixel data shown on the screen (frame buffers) in devfiles like /dev/fb0. That works well when using desktop applications, but not for fullscreen games that use OpenGL -for example-, since they talk directly to the Raspberry Pi's GPU. So, to gather the colors no matter what application is running, we use the dispmanx API (calling vc_dispmanx_snapshot(...) once per frame), which provides us a nice RGBA32 pixel matrix with all the screen data. Here's one of the many ways of reading the frame buffer wrong [125160284-] Related code: * FrameBuffer Drawing on the GBA screen Instead of RGBA32, the GBA understands RGB555 (or 15bpp color), which means 5 bits for red, 5 for green, and 5 for blue with no alpha channel. As it's a little-endian system, first one is red. To draw those colors on the screen, it supports 3 different bitmap modes. For this project, I used mode 4, where each pixel is an 8-bit reference to a palette of 256 15bpp colors. The only consideration to have when using mode 4 is that VRAM doesn't support 8-bit writes, so you have to read first what's on the address to rewrite the complete halfword/word. 15bpp color representation [125148694-] Related code: * GBA writing a pixel in mode 4 Color quantization So, the Raspberry Pi has to quantize every frame to a 256 colors palette. In an initial iteration, I was using a quantization library that generated the most optimal palette for each frame. Though that's the best regarding image quality, it was too slow. The implemented solution ended up using a fixed palette (this one in particular), and approximate every color to a byte referencing palette's colors. Original image Quantized image [125025069-] [125025072-] To approximate colors faster, when running the code for the first time, it creates a 16MB lookup table called "palette cache" with all the possible color convertions. It's 16MB because there are 2^24 possible colors and each palette index is one byte. Related code: * 15bpp palette on GBA * 24bpp palette on RPI * Closest color math * Palette cache * JS code used to construct the table Scaling The frame buffer is 240x160 but what's sent to the GBA is configurable, so if you prefer a killer frame rate over detail you can send 120x80 and use the mosaic effect to scale the image so it fills the entire screen. Or, if you like old CRTs, you could send 240x80 and draw artificial scanlines between each actual line. The Raspberry Pi discards each pixel that is not a multiple of the drawing scale. For example, if you use a 2x width scale factor, it will discard odd pixels and the resulting width will be 120 instead of 240. At the time of rendering, you have to take this into account because GBA's mode 4 expects a 240x160 pixel matrix. If you give it less, you'd only fill a part of the screen. No scaling 2x mosaic Scanlines [125113283-] [125113332-] [125113327-] Here are 3 ways of scaling the same 120x80 clip. Related code: * RPI ignoring pixels * GBA setting up mosaic * GBA selecting the draw cursor Image compression Temporal diffs The code only sends the pixels that changed since the previous frame, and what "changed" means can be configured: there's a DIFF_THRESHOLD parameter in the configuration file that controls how far should be a color to the previous one in order to refresh it. At the compression stage, it creates a bit array where 1 means that a pixel did change, and 0 that it didn't. Then, it sends that array + the pixels with '1'. Example of a 13x1 diff array [125102399-] Related code: * ImageDiffRLECompressor * Bitarray transfer * Diff decompression * Diff threshold config Run-length encoding The resulting buffer of the temporal compression is run-length encoded. When using palette images, it's highly likely that there are consecutive pixels with the same color. Or, for example, during screen transitions where all pixels are black, instead of sending N black pixels (N bytes) we can send 1 byte for N and then the black color (2 bytes). That's RLE. However, RLE doesn't always make things better: it can sometimes produce a longer buffer than the original one because it has to add the "count" byte for every payload byte. For that reason, the encoding is made of two stages, and it only applies RLE if it helps compressing the data. Then, the frame's metadata stores a bit that represents if the payload is RLE'd or not. Encoding the compressed buffer [125102404-] Related code: * RLE bit in frame's metadata * RLEncoding * RLDecoding Trimming the diffs For a render resolution of 120x80, the bit array would be 120x80/8 = 1200bytes. That's a lot to transfer every frame, so it only sends the chunk from the first '1' to the last '1', but of course in 32-bit packets. v startPacket v endPacket PACKET 0 PACKET 1 PACKET 2 PACKET 3 PACKET 4 PACKET 5 BYTE 0 BYTE 1 BYTE 2 BYTE 3 BYTE 4 BYTE 5 BYTE 6 BYTE 7 BYTE 8 BYTE 9 BYTE 10 BYTE 11 BYTE 12 BYTE 13 BYTE 14 BYTE 15 BYTE 16 BYTE 17 BYTE 18 BYTE 19 BYTE 20 BYTE 21 BYTE 22 BYTE 23 00000000000000000000000000000000000000000000000000000000000000000000000000100100110010000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^ startPixel ^endPixel ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ packetsToSend // 24x1 screen maxPackets = 6 startPixel = 74 startPacket = startPixel / 8 / 4 = 2 endPixel = 97 endPacket = endPixel / 8 / 4 = 3 totalPackets = endPacket - startPacket + 1; Input Each frame, the GBA sends its pressed keys to the Raspberry Pi. It does so by reading REG_KEYINPUT and transferring it on the initial metadata exchange. Bits are set when a key is **not** pressed. Weird design! [125149055-] In Linux, there's /dev/uinput which lets user space processes create virtual devices and update its state. You can create your virtual gamepad however you like, for example, add analog sticks and then map GBA's D-pad to analog values. The current implementation just registers a simple gamepad with the same layout as the GBA. Related code: * VirtualGamepad * Gamepad name config Protocol overview For every frame, the steps to run are: * (Reset if needed) * Build frame (RPI only) * Sync frame start * Metadata exchange (described below) * (If the frame has audio, sync and transfer audio) * Sync pixels start * Transfer pixels * Sync frame end * Render (GBA only) Related code: * GBA Main loop * RPI Main loop * Protocol Metadata exchange In this step, the GBA sends its input and receives a frame metadata packet: 00000000000000000000000000000000 ^#**************$$$$$$$$$$$$$$$$ ||| | ||| > start pixel index (for faster GBA rendering) || > number of expected pixel packets | > compressed flag: if 1, the frame is RLEncoded > audio flag: if 1, the frame includes an audio chunk As a sanity check, this transfer is done twice. The second time, each device sends the received packet during the first transfer. If it doesn't match => Reset! Related code: * Metadata exchange on the GBA * Metadata exchange on the RPI Audio For the audio, the GBA runs a port of the GSM Full Rate audio codec. It expects 33-byte audio frames, but in order to survive frame drops, GSM frames are grouped into chunks, with its length defined by a build time constant called AUDIO_CHUNK_SIZE. Related code: * Audio chunk size constant Reading system audio On the Raspberry Pi side, we use a virtual sound card that is preinstalled on the system. When you start the module (sudo modprobe snd-aloop), two new sound devices appear (both for playing and recording). Playback audio devices Capture audio devices [125156531-] [125156637-] How it works is that if some application plays sound on -for example- hw:0,0,0 (card 0, device 0, substream 0), another application can record on hw:0,1,0 and obtain that sound. The loopback cards have to be set as the default output on the system, so we can record whatever sound is running on the OS. Encoding GSM frames GSM encoding is done with ffmpeg. The GBA port requires a non-standard rate of 18157Hz, so we have to tell it to ignore its checks, like "yeah, this is not officially supported, I don't care", as well as the new rate. This is what the recording command looks like: ffmpeg -f alsa -i hw:0,1 -y -ac 1 -af 'aresample=18157' -strict unofficial -c:a gsm -f gsm -loglevel quiet - I swear this is audio! [125157099-] Related code: * LoopbackAudio Controlling Linux pipes The - at the end of the ffmpeg command means "send the result to stdout". The code launches this process with popen and reads through the created pipe. Since transferring a frame takes time, it can sometimes happen that more audio frames are generated than what we can actually use. If we don't do anything about it, when reading the pipe we'd be actually reading audio from the past, producing a snowball of audio lag! Our GBA vibing to outdated audio frames [125158350-] To fix that, there's an ioctl we can use (called FIONREAD) to retrieve the amount of queued bytes. To skip over those, we call the splice system call to redirect them to /dev/null. Related code: * Skipping outdated bytes Decompressing on time This was the most complex part of the project. Drawing pixels on the bitmap modes is already a lot of work for the GBA, and now it has to decompress GSM frames! Also, it can't lag. Lots of people tolerate low frame rates on video, but I don't think of anyone who can find acceptable hearing high pitch noises or even silence between audio samples. What I understand GSMPlayer does, is decoding GSM frames, putting the resulting audio samples in a double buffer, and setting up DMA1 to copy them to a GBA's audio address, by using a special timing mode that syncs the copy with Timer 0. Me attempting to modify GSMPlayer code [125159152-] Audio must be copied on time to prevent stuttering, noises, etc. Regular games do this by using VBlank interrupts, but that doesn't work here. When transferring at 2.56Mbps there are very few cycles available to process data, and adding an interrupt handler just messes up the packets. I had to make it so every transfer is cancellable: if it's time to run the audio (we're on the VBlank part), we stop everything, run the audio, and then start a recovery process where we say to the Raspberry Pi where we're at. On start, end, and every TRANSFER_SYNC_PERIOD packets of every stream, the Raspi sends a bidirectional packet (at the slow rate) to check if it needs to start the "recovery mode". Related code: * ReliableStream * Starting recovery process * Handling recovery process * Transfers can be interrupted EWRAM Overclock The GBA code overclocks the external RAM at the beginning, to use only one wait state instead of two. This process crashes on a GB Micro, but who would use this [DEL:on a Micro:DEL] anyway? A guy using a GB Micro with a Raspberry Pi attached to it [125161540-] Setup * Solder a Link Cable to the Raspberry Pi according to the Normal Mode / SPI section of this document. * Install RetroPie. * Set the following attributes in /boot/config.txt: # Disable splash screen disable_splash=1 # Aspect ratio (4:3) hdmi_safe=0 disable_overscan=1 hdmi_group=2 hdmi_mode=6 # GBA render resolution framebuffer_width=240 framebuffer_height=160 # Memory Split (for RetroPie) gpu_mem_256=128 gpu_mem_512=256 gpu_mem_1024=256 #scaling_kernel=8 * In raspi-config, enable SPI. * Set RetroArch to a 4:3 aspect ratio: Settings -> Video -> Aspect ratio -> 4:3. * Pick the required files from the Releases section of this GitHub repo. * Load the GBA ROM with ./multiboot.tool gba.mb.gba. * Run the RPI backend with sudo ./raspi.run Audio (optional) It's optional because the Raspberry Pi already has pins for good old analog audio, and you could attach a speaker to it and have clean high-quality sound. On the other hand, audio support here is experimental and heavily decreases the frame rate. If you want audio coming out from the GBA speakers anyway, here's how: Change /etc/modprobe.d/alsa-base.conf and make it look like this: options snd_aloop index=0 options snd_bcm2835 index=1 options snd_bcm2835 index=2 options snd slots=snd-aloop,snd-bcm2835 Then, when you run cat /proc/asound/modules you should see: 0 snd_aloop 1 snd_bcm2835 2 snd_bcm2835 Now run sudo modprobe snd-aloop and set Loopback (Stereo Full Duplex) as the default output audio device from the UI. As a last step, open the config file of GBA Remote Play (config.cfg) and make sure that SPI_DELAY_MICROSECONDS is 4. It won't work with smaller values! Credits This project relies on the following open-source libraries: * GBA hardware access by libtonc * GBA audio decompression by gsmplayer-gba * GBA multiboot writer by gba_03_multiboot * Raspberry PI SPI transfers by the C library for Broadcom BCM 2835 The GBA Jam demo, uses these two open Blender clips with Creative Commons licenses: * Caminandes 2: Gran Dillama * Caminandes 3: Llamigos Also, here are some documentation links that I made use of: * TONC: The greatest GBA tutorial ever made. * GBATEK: Documentation of NO$GBA with GBA internals. * rpi-fbcp's dispmanx API usage * Linux uinput's usage tutorial * Playing with ALSA loopback devices Special thanks to my friend Lucas Fryzek (@Hazematman), who has a deep knowledge of embedded systems and helped me a lot with design decisions. About Stream Raspberry Pi games to the GBA via the Link Cable Topics raspberry-pi rpi serial gba gameboy advance remote pi link play spi raspberry netplay cable link-cable Resources Readme License MIT License Releases 3 v1.0 Latest Jul 10, 2021 + 2 releases Languages * C 73.6% * C++ 25.3% * Other 1.1% * (c) 2021 GitHub, Inc. * Terms * Privacy * Security * Status * Docs * Contact GitHub * Pricing * API * Training * Blog * About You can't perform that action at this time. You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.