csr/fields: document, add separators, 100 characters per line
This commit is contained in:
parent
4e84729cf9
commit
8e14694eb5
|
@ -34,6 +34,7 @@ from migen import *
|
||||||
from migen.util.misc import xdir
|
from migen.util.misc import xdir
|
||||||
from migen.fhdl.tracer import get_obj_var_name
|
from migen.fhdl.tracer import get_obj_var_name
|
||||||
|
|
||||||
|
# CSRBase ------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class _CSRBase(DUID):
|
class _CSRBase(DUID):
|
||||||
def __init__(self, size, name):
|
def __init__(self, size, name):
|
||||||
|
@ -43,6 +44,7 @@ class _CSRBase(DUID):
|
||||||
raise ValueError("Cannot extract CSR name from code, need to specify.")
|
raise ValueError("Cannot extract CSR name from code, need to specify.")
|
||||||
self.size = size
|
self.size = size
|
||||||
|
|
||||||
|
# CSRConstant --------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class CSRConstant(DUID):
|
class CSRConstant(DUID):
|
||||||
"""Register which contains a constant value.
|
"""Register which contains a constant value.
|
||||||
|
@ -62,6 +64,7 @@ class CSRConstant(DUID):
|
||||||
"""Read method for simulation."""
|
"""Read method for simulation."""
|
||||||
return self.value.value
|
return self.value.value
|
||||||
|
|
||||||
|
# CSR ----------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class CSR(_CSRBase):
|
class CSR(_CSRBase):
|
||||||
"""Basic CSR register.
|
"""Basic CSR register.
|
||||||
|
@ -121,8 +124,37 @@ class _CompoundCSR(_CSRBase, Module):
|
||||||
def do_finalize(self, busword):
|
def do_finalize(self, busword):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
# CSRField -----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class CSRField(Signal):
|
class CSRField(Signal):
|
||||||
|
"""CSR Field.
|
||||||
|
|
||||||
|
Parameters / Attributes
|
||||||
|
-----------------------
|
||||||
|
name : string
|
||||||
|
Name of the CSR field.
|
||||||
|
|
||||||
|
size : int
|
||||||
|
Size of the CSR field in bits.
|
||||||
|
|
||||||
|
offset : int (optional)
|
||||||
|
Offset of the CSR field on the CSR register in bits.
|
||||||
|
|
||||||
|
reset: int (optional)
|
||||||
|
Reset value of the CSR field.
|
||||||
|
|
||||||
|
description: string (optional)
|
||||||
|
Description of the CSR Field (can be used to document the code and/or to be reused by tools
|
||||||
|
to create the documentation).
|
||||||
|
|
||||||
|
pulse: boolean (optional)
|
||||||
|
Field value is only valid for one cycle when set to True. Only valid for 1-bit fields.
|
||||||
|
|
||||||
|
access: TBD
|
||||||
|
|
||||||
|
values: TBD
|
||||||
|
"""
|
||||||
|
|
||||||
def __init__(self, name, size=1, offset=None, reset=0, description=None, pulse=False, access=None, values=None):
|
def __init__(self, name, size=1, offset=None, reset=0, description=None, pulse=False, access=None, values=None):
|
||||||
assert name == name.lower()
|
assert name == name.lower()
|
||||||
assert access in [None, "write-only", "read-only", "read-write"]
|
assert access in [None, "write-only", "read-only", "read-write"]
|
||||||
|
@ -137,7 +169,9 @@ class CSRField(Signal):
|
||||||
Signal.__init__(self, size, name=name, reset=reset)
|
Signal.__init__(self, size, name=name, reset=reset)
|
||||||
|
|
||||||
|
|
||||||
class CSRFieldCompound:
|
class CSRFieldAggregate:
|
||||||
|
"""CSR Field Aggregate."""
|
||||||
|
|
||||||
def __init__(self, fields, access):
|
def __init__(self, fields, access):
|
||||||
self.check_names(fields)
|
self.check_names(fields)
|
||||||
self.check_ordering_overlap(fields)
|
self.check_ordering_overlap(fields)
|
||||||
|
@ -156,7 +190,7 @@ class CSRFieldCompound:
|
||||||
names = []
|
names = []
|
||||||
for field in fields:
|
for field in fields:
|
||||||
if field.name in names:
|
if field.name in names:
|
||||||
raise ValueError("CSRField \"{}\" name is already used in CSR".format(field.name))
|
raise ValueError("CSRField \"{}\" name is already used in CSR register".format(field.name))
|
||||||
else:
|
else:
|
||||||
names.append(field.name)
|
names.append(field.name)
|
||||||
|
|
||||||
|
@ -181,20 +215,20 @@ class CSRFieldCompound:
|
||||||
reset |= (field.reset_value << field.offset)
|
reset |= (field.reset_value << field.offset)
|
||||||
return reset
|
return reset
|
||||||
|
|
||||||
|
# CSRStatus ----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class CSRStatus(_CompoundCSR):
|
class CSRStatus(_CompoundCSR):
|
||||||
"""Status Register.
|
"""Status Register.
|
||||||
|
|
||||||
The ``CSRStatus`` class is meant to be used as a status register that is
|
The ``CSRStatus`` class is meant to be used as a status register that is read-only from the CPU.
|
||||||
read-only from the CPU.
|
|
||||||
|
|
||||||
The user design is expected to drive its ``status`` signal.
|
The user design is expected to drive its ``status`` signal.
|
||||||
|
|
||||||
The advantage of using ``CSRStatus`` instead of using ``CSR`` and driving
|
The advantage of using ``CSRStatus`` instead of using ``CSR`` and driving ``w`` is that the
|
||||||
``w`` is that the width of ``CSRStatus`` can be arbitrary.
|
width of ``CSRStatus`` can be arbitrary.
|
||||||
|
|
||||||
Status registers larger than the bus word width are automatically broken
|
Status registers larger than the bus word width are automatically broken down into several
|
||||||
down into several ``CSR`` registers to span several addresses.
|
``CSR`` registers to span several addresses.
|
||||||
|
|
||||||
*Be careful, though:* the atomicity of reads is not guaranteed.
|
*Be careful, though:* the atomicity of reads is not guaranteed.
|
||||||
|
|
||||||
|
@ -218,7 +252,7 @@ class CSRStatus(_CompoundCSR):
|
||||||
|
|
||||||
def __init__(self, size=1, reset=0, fields=[], name=None, description=None):
|
def __init__(self, size=1, reset=0, fields=[], name=None, description=None):
|
||||||
if fields != []:
|
if fields != []:
|
||||||
self.fields = CSRFieldCompound(fields, "read-only")
|
self.fields = CSRFieldAggregate(fields, "read-only")
|
||||||
size = self.fields.get_size()
|
size = self.fields.get_size()
|
||||||
reset = self.fields.get_reset()
|
reset = self.fields.get_reset()
|
||||||
_CompoundCSR.__init__(self, size, name)
|
_CompoundCSR.__init__(self, size, name)
|
||||||
|
@ -238,33 +272,31 @@ class CSRStatus(_CompoundCSR):
|
||||||
"""Read method for simulation."""
|
"""Read method for simulation."""
|
||||||
return (yield self.status)
|
return (yield self.status)
|
||||||
|
|
||||||
|
# CSRStorage ---------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class CSRStorage(_CompoundCSR):
|
class CSRStorage(_CompoundCSR):
|
||||||
"""Control Register.
|
"""Control Register.
|
||||||
|
|
||||||
The ``CSRStorage`` class provides a memory location that can be read and
|
The ``CSRStorage`` class provides a memory location that can be read and written by the CPU, and read and optionally written by the design.
|
||||||
written by the CPU, and read and optionally written by the design.
|
|
||||||
|
|
||||||
It can span several CSR addresses.
|
It can span several CSR addresses.
|
||||||
|
|
||||||
Parameters
|
Parameters
|
||||||
----------
|
----------
|
||||||
size : int
|
size : int
|
||||||
Size of the CSR register in bits.
|
Size of the CSR register in bits. Can be bigger than the CSR bus width.
|
||||||
Can be bigger than the CSR bus width.
|
|
||||||
|
|
||||||
reset : string
|
reset : string
|
||||||
Value of the register after reset.
|
Value of the register after reset.
|
||||||
|
|
||||||
atomic_write : bool
|
atomic_write : bool
|
||||||
Provide an mechanism for atomic CPU writes is provided.
|
Provide an mechanism for atomic CPU writes is provided. When enabled, writes to the first
|
||||||
When enabled, writes to the first CSR addresses go to a back-buffer
|
CSR addresses go to a back-buffer whose contents are atomically copied to the main buffer
|
||||||
whose contents are atomically copied to the main buffer when the last
|
when the last address is written.
|
||||||
address is written.
|
|
||||||
|
|
||||||
write_from_dev : bool
|
write_from_dev : bool
|
||||||
Allow the design to update the CSRStorage value.
|
Allow the design to update the CSRStorage value. *Warning*: The atomicity of reads by the
|
||||||
*Warning*: The atomicity of reads by the CPU is not guaranteed.
|
CPU is not guaranteed.
|
||||||
|
|
||||||
alignment_bits : int
|
alignment_bits : int
|
||||||
???
|
???
|
||||||
|
@ -281,8 +313,8 @@ class CSRStorage(_CompoundCSR):
|
||||||
Signal providing the value of the ``CSRStorage`` object.
|
Signal providing the value of the ``CSRStorage`` object.
|
||||||
|
|
||||||
re : Signal(), in
|
re : Signal(), in
|
||||||
The strobe signal indicating a write to the ``CSRStorage`` register.
|
The strobe signal indicating a write to the ``CSRStorage`` register. It is active for one
|
||||||
It is active for one cycle, after or during a write from the bus.
|
cycle, after or during a write from the bus.
|
||||||
|
|
||||||
we : Signal(), out
|
we : Signal(), out
|
||||||
Only available when ``write_from_dev == True``
|
Only available when ``write_from_dev == True``
|
||||||
|
@ -295,7 +327,7 @@ class CSRStorage(_CompoundCSR):
|
||||||
|
|
||||||
def __init__(self, size=1, reset=0, fields=[], atomic_write=False, write_from_dev=False, alignment_bits=0, name=None, description=None):
|
def __init__(self, size=1, reset=0, fields=[], atomic_write=False, write_from_dev=False, alignment_bits=0, name=None, description=None):
|
||||||
if fields != []:
|
if fields != []:
|
||||||
self.fields = CSRFieldCompound(fields, "read-write")
|
self.fields = CSRFieldAggregate(fields, "read-write")
|
||||||
size = self.fields.get_size()
|
size = self.fields.get_size()
|
||||||
reset = self.fields.get_reset()
|
reset = self.fields.get_reset()
|
||||||
_CompoundCSR.__init__(self, size, name)
|
_CompoundCSR.__init__(self, size, name)
|
||||||
|
@ -355,6 +387,7 @@ class CSRStorage(_CompoundCSR):
|
||||||
yield
|
yield
|
||||||
yield self.re.eq(0)
|
yield self.re.eq(0)
|
||||||
|
|
||||||
|
# AutoCSR & Helpers --------------------------------------------------------------------------------
|
||||||
|
|
||||||
def csrprefix(prefix, csrs, done):
|
def csrprefix(prefix, csrs, done):
|
||||||
for csr in csrs:
|
for csr in csrs:
|
||||||
|
@ -396,13 +429,11 @@ def _make_gatherer(method, cls, prefix_cb):
|
||||||
class AutoCSR:
|
class AutoCSR:
|
||||||
"""MixIn to provide bus independent access to CSR registers.
|
"""MixIn to provide bus independent access to CSR registers.
|
||||||
|
|
||||||
A module can inherit from the ``AutoCSR`` class, which provides
|
A module can inherit from the ``AutoCSR`` class, which provides ``get_csrs``, ``get_memories``
|
||||||
``get_csrs``, ``get_memories`` and ``get_constants`` methods that scan for
|
and ``get_constants`` methods that scan for CSR and memory attributes and return their list.
|
||||||
CSR and memory attributes and return their list.
|
|
||||||
|
|
||||||
If the module has child objects that implement ``get_csrs``,
|
If the module has child objects that implement ``get_csrs``, ``get_memories`` or ``get_constants``,
|
||||||
``get_memories`` or ``get_constants``, they will be called by the
|
they will be called by the``AutoCSR`` methods and their CSR and memories added to the lists returned,
|
||||||
``AutoCSR`` methods and their CSR and memories added to the lists returned,
|
|
||||||
with the child objects' names as prefixes.
|
with the child objects' names as prefixes.
|
||||||
"""
|
"""
|
||||||
get_memories = _make_gatherer("get_memories", Memory, memprefix)
|
get_memories = _make_gatherer("get_memories", Memory, memprefix)
|
||||||
|
|
Loading…
Reference in New Issue