Class/Object

chisel3.util

Pipe

Related Docs: object Pipe | package util

Permalink

class Pipe[T <: Data] extends Module

Pipeline module generator parameterized by data type and latency.

This defines a module with one input, enq, and one output, deq. The input and output are Valid interfaces that wrap some Chisel type, e.g., a UInt or a Bundle. This generator will then chain together a number of pipeline stages that all advance when the input Valid enq fires. The output deq Valid will fire only when valid data has made it all the way through the pipeline.

As an example, to construct a 4-stage pipe of 8-bit UInts and connect it to a producer and consumer, you can use the following:

val foo = Module(new Pipe(UInt(8.W)), 4)
pipe.io.enq := producer.io
consumer.io := pipe.io.deq

If you already have the Valid input or the components of a Valid interface, it may be simpler to use the Pipe factory companion object. This, which Pipe internally utilizes, will automatically connect the input for you.

Source
Valid.scala
See also

The ShiftRegister factory to generate a pipe without a Valid interface

Queue and the Queue factory for actual queues

Valid interface

Pipe factory for an alternative API

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pipe
  2. LegacyModule
  3. MultiIOModule
  4. RawModule
  5. BaseModule
  6. HasId
  7. InstanceId
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Pipe(gen: T, latency: Int = 1)(implicit compileOptions: CompileOptions)

    Permalink

    gen

    a Chisel type

    latency

    the number of pipeline stages

Type Members

  1. class PipeIO extends Bundle

    Permalink

    Interface for Pipes composed of a Valid input and Valid output

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def IO[T <: Data](iodef: T): T

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  5. def _bindIoInPlace(iodef: Data): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  6. var _closed: Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  7. def _compatAutoWrapPorts(): Unit

    Permalink
    Definition Classes
    BaseModule
  8. def _compatIoPortBound(): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    LegacyModule
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def circuitName: String

    Permalink
    Attributes
    protected
    Definition Classes
    HasId
  11. final val clock: Clock

    Permalink
    Definition Classes
    MultiIOModule
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. val compileOptions: CompileOptions

    Permalink
    Definition Classes
    RawModule
  14. def desiredName: String

    Permalink
    Definition Classes
    BaseModule
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    HasId → AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def getCommands: Seq[Command]

    Permalink
    Attributes
    protected
    Definition Classes
    RawModule
  20. def getIds: Seq[HasId]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  21. def getModulePorts: Seq[Data]

    Permalink
    Attributes
    protected[chisel3]
    Definition Classes
    BaseModule
  22. lazy val getPorts: Seq[Port]

    Permalink
    Definition Classes
    RawModule
  23. def hashCode(): Int

    Permalink
    Definition Classes
    HasId → AnyRef → Any
  24. def instanceName: String

    Permalink
    Definition Classes
    BaseModule → HasId → InstanceId
  25. val io: PipeIO

    Permalink
    Definition Classes
    Pipe → LegacyModule
  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. final lazy val name: String

    Permalink
    Definition Classes
    BaseModule
  28. def nameIds(rootClass: Class[_]): HashMap[HasId, String]

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. var override_clock: Option[Clock]

    Permalink
    Attributes
    protected
    Definition Classes
    LegacyModule
  33. var override_reset: Option[Bool]

    Permalink
    Attributes
    protected
    Definition Classes
    LegacyModule
  34. def parentModName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  35. def parentPathName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  36. def pathName: String

    Permalink
    Definition Classes
    HasId → InstanceId
  37. def portsContains(elem: Data): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  38. def portsSize: Int

    Permalink
    Attributes
    protected
    Definition Classes
    BaseModule
  39. final val reset: Reset

    Permalink
    Definition Classes
    MultiIOModule
  40. def suggestName(name: ⇒ String): Pipe.this.type

    Permalink
    Definition Classes
    HasId
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. final def toAbsoluteTarget: IsModule

    Permalink
    Definition Classes
    BaseModule → InstanceId
  43. final def toNamed: ModuleName

    Permalink
    Definition Classes
    BaseModule → InstanceId
  44. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  45. final def toTarget: ModuleTarget

    Permalink
    Definition Classes
    BaseModule → InstanceId
  46. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LegacyModule

Inherited from MultiIOModule

Inherited from RawModule

Inherited from BaseModule

Inherited from HasId

Inherited from internal.InstanceId

Inherited from AnyRef

Inherited from Any

Ungrouped