Skip to content

Instantly share code, notes, and snippets.

@ianhan
ianhan / readme
Created July 6, 2019 08:21 — forked from captain-amygdala/readme
G-Sync Arria V Module Reverse notes
Location of the zip with the quartus project, scans and this note:
https://drive.google.com/file/d/19l7rQpiQJmDnbOJQavnp8BZulNxUG0uI/view?usp=sharing
Power
I injected 5V on C60 (Fat ceramic cap , on top lower right corner near the sodimm edge)
The Module needs a fair ammount of current to start up properly. I had my lab supply at 3A current
limit, with the original config bitstream off the config prom on the module it draws about 700mA after startup
#!/usr/bin/env python3
import zipfile, urllib.request, shutil
import os
import sys
import platform
vi = sys.version_info
if platform.system() == 'Darwin':
if vi.major < 3 or (vi.major == 3 and vi.minor < 7):
print("Please run this script with Python 3.7 or newer")