diff options
Diffstat (limited to 'src/dev/Device.py')
-rw-r--r-- | src/dev/Device.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dev/Device.py b/src/dev/Device.py index cb990104d..0023f97a2 100644 --- a/src/dev/Device.py +++ b/src/dev/Device.py @@ -84,6 +84,13 @@ class DmaDevice(PioDevice): abstract = True dma = MasterPort("DMA port") + sid = Param.Unsigned(0, + "Stream identifier used by an IOMMU to distinguish amongst " + "several devices attached to it") + ssid = Param.Unsigned(0, + "Substream identifier used by an IOMMU to distinguish amongst " + "several devices attached to it") + class IsaFake(BasicPioDevice): type = 'IsaFake' |