128 lines
4.1 KiB
HTML
128 lines
4.1 KiB
HTML
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
|
|
|
|
<title>Interrupt Controller — LiteX SoC Project documentation</title>
|
|
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
|
<link rel="stylesheet" type="text/css" href="_static/alabaster.css" />
|
|
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
|
<script src="_static/doctools.js"></script>
|
|
<script src="_static/sphinx_highlight.js"></script>
|
|
<script src="_static/default.js"></script>
|
|
<script src="_static/WaveDrom.js"></script>
|
|
<link rel="index" title="Index" href="genindex.html" />
|
|
<link rel="search" title="Search" href="search.html" />
|
|
<link rel="next" title="CTRL" href="ctrl.html" />
|
|
<link rel="prev" title="Documentation for LiteX SoC Project" href="index.html" />
|
|
|
|
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
|
|
|
|
</head><body>
|
|
|
|
|
|
<div class="document">
|
|
<div class="documentwrapper">
|
|
<div class="bodywrapper">
|
|
|
|
|
|
<div class="body" role="main">
|
|
|
|
<section id="interrupt-controller">
|
|
<h1>Interrupt Controller<a class="headerlink" href="#interrupt-controller" title="Permalink to this heading">¶</a></h1>
|
|
<p>This device has an <code class="docutils literal notranslate"><span class="pre">EventManager</span></code>-based interrupt system. Individual modules
|
|
generate <cite>events</cite> which are wired into a central interrupt controller.</p>
|
|
<p>When an interrupt occurs, you should look the interrupt number up in the CPU-
|
|
specific interrupt table and then call the relevant module.</p>
|
|
<section id="assigned-interrupts">
|
|
<h2>Assigned Interrupts<a class="headerlink" href="#assigned-interrupts" title="Permalink to this heading">¶</a></h2>
|
|
<p>The following interrupts are assigned on this system:</p>
|
|
</section>
|
|
</section>
|
|
|
|
<script type="text/javascript">
|
|
function init() {
|
|
WaveDrom.ProcessAll();
|
|
}
|
|
window.onload = init;
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
|
<div class="sphinxsidebarwrapper">
|
|
<h1 class="logo"><a href="index.html">LiteX SoC Project</a></h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h3>Navigation</h3>
|
|
<ul class="current">
|
|
<li class="toctree-l1 current"><a class="current reference internal" href="#">Interrupt Controller</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li class="toctree-l1"><a class="reference internal" href="ctrl.html">CTRL</a></li>
|
|
<li class="toctree-l1"><a class="reference internal" href="ethmac.html">ETHMAC</a></li>
|
|
<li class="toctree-l1"><a class="reference internal" href="ethphy.html">ETHPHY</a></li>
|
|
</ul>
|
|
|
|
<div class="relations">
|
|
<h3>Related Topics</h3>
|
|
<ul>
|
|
<li><a href="index.html">Documentation overview</a><ul>
|
|
<li>Previous: <a href="index.html" title="previous chapter">Documentation for LiteX SoC Project</a></li>
|
|
<li>Next: <a href="ctrl.html" title="next chapter">CTRL</a></li>
|
|
</ul></li>
|
|
</ul>
|
|
</div>
|
|
<div id="searchbox" style="display: none" role="search">
|
|
<h3 id="searchlabel">Quick search</h3>
|
|
<div class="searchformwrapper">
|
|
<form class="search" action="search.html" method="get">
|
|
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
|
|
<input type="submit" value="Go" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script>document.getElementById('searchbox').style.display = "block"</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<div class="clearer"></div>
|
|
</div>
|
|
<div class="footer">
|
|
©2023, Anonymous.
|
|
|
|
|
|
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 6.1.3</a>
|
|
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.13</a>
|
|
|
|
|
|
|
<a href="_sources/interrupts.rst.txt"
|
|
rel="nofollow">Page source</a>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |