mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-26 00:10:18 +00:00
053f2edbc3
Signed-off-by: Hector Martin <marcan@marcan.st>
28 lines
536 B
Python
28 lines
536 B
Python
import serial, os, struct, sys, time
|
|
from proxy import *
|
|
from tgtypes import *
|
|
from utils import *
|
|
|
|
uartdev = os.environ.get("M1N1DEVICE", "/dev/ttyUSB0")
|
|
uart = serial.Serial(uartdev, 115200)
|
|
|
|
iface = UartInterface(uart, debug=False)
|
|
p = M1N1Proxy(iface, debug=False)
|
|
|
|
try:
|
|
uart.timeout = 0.15
|
|
iface.nop()
|
|
p.set_baud(1500000)
|
|
except UartTimeout:
|
|
uart.baudrate = 1500000
|
|
iface.nop()
|
|
|
|
u = ProxyUtils(p)
|
|
mon = RegMonitor(u)
|
|
|
|
iface.nop()
|
|
|
|
fb = u.ba.video.base
|
|
|
|
print("Base at: 0x%x" % u.base)
|
|
print("FB at: 0x%x" % fb)
|