2015-12-31 22:23:13 +08:00
|
|
|
import os, sys
|
2015-08-07 16:44:49 +08:00
|
|
|
|
|
|
|
from pythonparser import diagnostic
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2016-01-26 09:04:06 +08:00
|
|
|
from artiq import __artiq_dir__ as artiq_dir
|
|
|
|
|
2014-12-03 18:20:30 +08:00
|
|
|
from artiq.language.core import *
|
2015-08-11 00:25:48 +08:00
|
|
|
from artiq.language.types import *
|
2015-08-20 03:37:31 +08:00
|
|
|
from artiq.language.units import *
|
2014-12-03 18:20:30 +08:00
|
|
|
|
2015-11-24 17:32:04 +08:00
|
|
|
from artiq.compiler.module import Module
|
|
|
|
from artiq.compiler.embedding import Stitcher
|
2015-08-07 16:44:49 +08:00
|
|
|
from artiq.compiler.targets import OR1KTarget
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2015-08-07 16:44:49 +08:00
|
|
|
# Import for side effects (creating the exception classes).
|
|
|
|
from artiq.coredevice import exceptions
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2016-01-16 09:28:26 +08:00
|
|
|
|
|
|
|
def _render_diagnostic(diagnostic, colored):
|
2015-12-31 22:23:13 +08:00
|
|
|
def shorten_path(path):
|
2016-01-26 09:04:06 +08:00
|
|
|
return path.replace(artiq_dir, "<artiq>")
|
2016-01-27 07:23:35 +08:00
|
|
|
lines = [shorten_path(path) for path in diagnostic.render(colored=colored)]
|
2015-12-31 22:23:13 +08:00
|
|
|
return "\n".join(lines)
|
|
|
|
|
2016-03-09 17:12:50 +08:00
|
|
|
colors_supported = os.name == "posix"
|
2015-12-31 22:23:13 +08:00
|
|
|
class _DiagnosticEngine(diagnostic.Engine):
|
2016-01-04 22:11:54 +08:00
|
|
|
def render_diagnostic(self, diagnostic):
|
2016-02-22 19:27:45 +08:00
|
|
|
sys.stderr.write(_render_diagnostic(diagnostic, colored=colors_supported) + "\n")
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2015-08-07 16:44:49 +08:00
|
|
|
class CompileError(Exception):
|
2015-09-01 12:52:39 +08:00
|
|
|
def __init__(self, diagnostic):
|
|
|
|
self.diagnostic = diagnostic
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
# Prepend a newline so that the message shows up on after
|
|
|
|
# exception class name printed by Python.
|
2016-02-22 19:27:45 +08:00
|
|
|
return "\n" + _render_diagnostic(self.diagnostic, colored=colors_supported)
|
2014-11-03 18:44:30 +08:00
|
|
|
|
2015-08-11 00:25:48 +08:00
|
|
|
|
2016-06-29 02:37:39 +08:00
|
|
|
@syscall
|
2016-06-29 10:38:19 +08:00
|
|
|
def rtio_init() -> TNone:
|
2016-06-29 02:37:39 +08:00
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
2016-03-29 05:25:40 +08:00
|
|
|
@syscall(flags={"nounwind", "nowrite"})
|
2015-08-11 00:25:48 +08:00
|
|
|
def rtio_get_counter() -> TInt64:
|
|
|
|
raise NotImplementedError("syscall not simulated")
|
|
|
|
|
2016-03-09 17:12:50 +08:00
|
|
|
|
2015-07-14 04:08:20 +08:00
|
|
|
class Core:
|
2015-10-06 18:12:57 +08:00
|
|
|
"""Core device driver.
|
|
|
|
|
|
|
|
:param ref_period: period of the reference clock for the RTIO subsystem.
|
|
|
|
On platforms that use clock multiplication and SERDES-based PHYs,
|
|
|
|
this is the period after multiplication. For example, with a RTIO core
|
|
|
|
clocked at 125MHz and a SERDES multiplication factor of 8, the
|
|
|
|
reference period is 1ns.
|
|
|
|
The time machine unit is equal to this period.
|
|
|
|
:param external_clock: whether the core device should switch to its
|
|
|
|
external RTIO clock input instead of using its internal oscillator.
|
2016-03-04 16:59:35 +08:00
|
|
|
:param ref_multiplier: ratio between the RTIO fine timestamp frequency
|
|
|
|
and the RTIO coarse timestamp frequency (e.g. SERDES multiplication
|
|
|
|
factor).
|
2015-10-06 18:12:57 +08:00
|
|
|
:param comm_device: name of the device used for communications.
|
|
|
|
"""
|
2016-03-28 08:05:29 +08:00
|
|
|
|
2016-04-07 06:38:31 +08:00
|
|
|
kernel_invariants = {
|
2016-03-29 16:19:03 +08:00
|
|
|
"core", "ref_period", "coarse_ref_period", "ref_multiplier",
|
|
|
|
"external_clock",
|
2016-03-28 08:05:29 +08:00
|
|
|
}
|
|
|
|
|
2016-03-04 16:59:35 +08:00
|
|
|
def __init__(self, dmgr, ref_period, external_clock=False,
|
|
|
|
ref_multiplier=8, comm_device="comm"):
|
2015-07-14 04:08:20 +08:00
|
|
|
self.ref_period = ref_period
|
|
|
|
self.external_clock = external_clock
|
2016-03-04 16:59:35 +08:00
|
|
|
self.ref_multiplier = ref_multiplier
|
|
|
|
self.coarse_ref_period = ref_period*ref_multiplier
|
2015-10-06 18:12:57 +08:00
|
|
|
self.comm = dmgr.get(comm_device)
|
2014-12-03 18:20:30 +08:00
|
|
|
|
2015-05-02 23:41:49 +08:00
|
|
|
self.first_run = True
|
2016-03-18 10:01:14 +08:00
|
|
|
self.dmgr = dmgr
|
2014-11-21 04:38:52 +08:00
|
|
|
self.core = self
|
2015-03-13 21:55:18 +08:00
|
|
|
self.comm.core = self
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2016-11-10 09:04:36 +08:00
|
|
|
def compile(self, function, args, kwargs, set_result=None, attribute_writeback=True):
|
2015-08-07 16:44:49 +08:00
|
|
|
try:
|
2015-12-31 22:23:13 +08:00
|
|
|
engine = _DiagnosticEngine(all_errors_are_fatal=True)
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2016-03-18 10:01:14 +08:00
|
|
|
stitcher = Stitcher(engine=engine, core=self, dmgr=self.dmgr)
|
2015-12-19 05:26:18 +08:00
|
|
|
stitcher.stitch_call(function, args, kwargs, set_result)
|
2015-08-11 01:25:57 +08:00
|
|
|
stitcher.finalize()
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2016-11-10 09:04:36 +08:00
|
|
|
module = Module(stitcher,
|
|
|
|
ref_period=self.ref_period,
|
|
|
|
attribute_writeback=attribute_writeback)
|
2015-08-09 02:47:20 +08:00
|
|
|
target = OR1KTarget()
|
2014-09-17 17:06:51 +08:00
|
|
|
|
2015-08-10 20:12:22 +08:00
|
|
|
library = target.compile_and_link([module])
|
|
|
|
stripped_library = target.strip(library)
|
|
|
|
|
2016-05-16 22:30:21 +08:00
|
|
|
return stitcher.embedding_map, stripped_library, \
|
2016-05-14 20:52:28 +08:00
|
|
|
lambda addresses: target.symbolize(library, addresses), \
|
|
|
|
lambda symbols: target.demangle(symbols)
|
2015-08-07 16:44:49 +08:00
|
|
|
except diagnostic.Error as error:
|
2015-09-01 12:52:39 +08:00
|
|
|
raise CompileError(error.diagnostic) from error
|
2014-10-29 17:09:45 +08:00
|
|
|
|
2015-08-07 16:44:49 +08:00
|
|
|
def run(self, function, args, kwargs):
|
2015-12-19 05:26:18 +08:00
|
|
|
result = None
|
|
|
|
def set_result(new_result):
|
|
|
|
nonlocal result
|
|
|
|
result = new_result
|
|
|
|
|
2016-05-16 22:30:21 +08:00
|
|
|
embedding_map, kernel_library, symbolizer, demangler = \
|
2016-05-14 20:52:28 +08:00
|
|
|
self.compile(function, args, kwargs, set_result)
|
2015-08-09 07:17:19 +08:00
|
|
|
|
2015-05-02 23:41:49 +08:00
|
|
|
if self.first_run:
|
|
|
|
self.comm.check_ident()
|
|
|
|
self.comm.switch_clock(self.external_clock)
|
2015-08-07 16:44:49 +08:00
|
|
|
self.first_run = False
|
|
|
|
|
2015-08-10 20:12:22 +08:00
|
|
|
self.comm.load(kernel_library)
|
2015-08-07 16:44:49 +08:00
|
|
|
self.comm.run()
|
2016-05-16 22:30:21 +08:00
|
|
|
self.comm.serve(embedding_map, symbolizer, demangler)
|
2014-11-21 04:38:52 +08:00
|
|
|
|
2015-12-19 05:26:18 +08:00
|
|
|
return result
|
|
|
|
|
2015-02-19 00:56:30 +08:00
|
|
|
@kernel
|
2015-07-02 04:22:53 +08:00
|
|
|
def get_rtio_counter_mu(self):
|
2015-08-11 00:25:48 +08:00
|
|
|
return rtio_get_counter()
|
2015-02-19 00:56:30 +08:00
|
|
|
|
2016-06-29 02:37:39 +08:00
|
|
|
@kernel
|
|
|
|
def reset(self):
|
|
|
|
"""Clear RTIO FIFOs, release RTIO PHY reset, and set the time cursor
|
|
|
|
at the current value of the hardware RTIO counter plus a margin of
|
|
|
|
125000 machine units."""
|
|
|
|
rtio_init()
|
|
|
|
at_mu(rtio_get_counter() + 125000)
|
|
|
|
|
2014-11-21 04:38:52 +08:00
|
|
|
@kernel
|
2015-05-03 20:42:42 +08:00
|
|
|
def break_realtime(self):
|
2016-06-29 02:37:39 +08:00
|
|
|
"""Set the time cursor after the current value of the hardware RTIO
|
|
|
|
counter plus a margin of 125000 machine units.
|
|
|
|
|
|
|
|
If the time cursor is already after that position, this function
|
|
|
|
does nothing."""
|
2015-09-27 23:22:13 +08:00
|
|
|
min_now = rtio_get_counter() + 125000
|
2015-08-17 23:41:21 +08:00
|
|
|
if now_mu() < min_now:
|
|
|
|
at_mu(min_now)
|