2011-11-09 23:52:17 +01:00
|
|
|
package Top
|
|
|
|
{
|
|
|
|
|
|
|
|
import Chisel._
|
2012-01-14 00:55:56 +01:00
|
|
|
import Node._
|
|
|
|
import scala.math._
|
|
|
|
|
|
|
|
object foldR
|
|
|
|
{
|
|
|
|
def apply[T <: Bits](x: Seq[T], f: (T, T) => T): T =
|
|
|
|
if (x.length == 1) x(0) else f(x(0), foldR(x.slice(1, x.length), f))
|
|
|
|
}
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2011-12-12 15:49:16 +01:00
|
|
|
object log2up
|
|
|
|
{
|
2012-01-18 08:49:32 +01:00
|
|
|
def apply(in: Int) = if (in == 1) 1 else ceil(log(in)/log(2)).toInt
|
2011-12-12 15:49:16 +01:00
|
|
|
}
|
2011-12-09 09:42:43 +01:00
|
|
|
|
2012-01-25 01:51:30 +01:00
|
|
|
object ispow2
|
|
|
|
{
|
|
|
|
def apply(in: Int) = in > 0 && ((in & (in-1)) == 0)
|
|
|
|
}
|
|
|
|
|
2011-12-12 15:49:16 +01:00
|
|
|
object FillInterleaved
|
|
|
|
{
|
|
|
|
def apply(n: Int, in: Bits) =
|
|
|
|
{
|
|
|
|
var out = Fill(n, in(0))
|
2011-12-17 16:20:32 +01:00
|
|
|
for (i <- 1 until in.getWidth)
|
2011-12-12 15:49:16 +01:00
|
|
|
out = Cat(Fill(n, in(i)), out)
|
|
|
|
out
|
|
|
|
}
|
2011-12-09 09:42:43 +01:00
|
|
|
}
|
|
|
|
|
2011-12-17 16:20:32 +01:00
|
|
|
object Reverse
|
|
|
|
{
|
|
|
|
def apply(in: Bits) =
|
|
|
|
{
|
|
|
|
var out = in(in.getWidth-1)
|
|
|
|
for (i <- 1 until in.getWidth)
|
|
|
|
out = Cat(in(in.getWidth-i-1), out)
|
|
|
|
out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-18 08:49:32 +01:00
|
|
|
object OHToUFix
|
|
|
|
{
|
|
|
|
def apply(in: Bits): UFix =
|
|
|
|
{
|
2012-01-19 02:53:26 +01:00
|
|
|
val out = MuxCase( UFix(0), (0 until in.getWidth).map( i => (in(i).toBool, UFix(i))))
|
|
|
|
out.toUFix
|
2012-01-18 08:49:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object UFixToOH
|
|
|
|
{
|
|
|
|
def apply(in: UFix, width: Int): Bits =
|
|
|
|
{
|
2012-02-01 22:26:04 +01:00
|
|
|
(UFix(1) << in(log2up(width)-1,0))
|
2012-01-18 08:49:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-24 23:39:52 +01:00
|
|
|
object LFSR16
|
|
|
|
{
|
2012-01-25 01:51:30 +01:00
|
|
|
def apply(increment: Bool = Bool(true)) =
|
2012-01-24 23:39:52 +01:00
|
|
|
{
|
|
|
|
val width = 16
|
|
|
|
val lfsr = Reg(resetVal = UFix(1, width))
|
2012-02-12 02:20:33 +01:00
|
|
|
when (increment) { lfsr := Cat(lfsr(0)^lfsr(2)^lfsr(3)^lfsr(5), lfsr(width-1,1)).toUFix }
|
2012-01-24 23:39:52 +01:00
|
|
|
lfsr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-15 04:11:57 +01:00
|
|
|
object ShiftRegister
|
|
|
|
{
|
|
|
|
def apply [T <: Data](n: Int, in: T): T =
|
|
|
|
if (n > 0) Reg(apply(n-1, in)) else in
|
|
|
|
}
|
|
|
|
|
2012-02-01 22:24:28 +01:00
|
|
|
object Mux1H
|
|
|
|
{
|
|
|
|
//TODO: cloning in(0) is unsafe if other elements have different widths, but
|
|
|
|
//is that even allowable?
|
|
|
|
def apply [T <: Data](n: Int, sel: Vec[Bool], in: Vec[T]): T = {
|
|
|
|
MuxCase(in(0), (0 until n).map( i => (sel(i), in(i))))
|
|
|
|
// val mux = (new Mux1H(n)){ in(0).clone }
|
|
|
|
// mux.io.sel <> sel
|
|
|
|
// mux.io.in <> in
|
|
|
|
// mux.io.out.asInstanceOf[T]
|
|
|
|
}
|
|
|
|
|
|
|
|
def apply [T <: Data](n: Int, sel: Seq[Bool], in: Vec[T]): T = {
|
|
|
|
MuxCase(in(0), (0 until n).map( i => (sel(i), in(i))))
|
|
|
|
// val mux = (new Mux1H(n)){ in(0).clone }
|
|
|
|
// for(i <- 0 until n) {
|
|
|
|
// mux.io.sel(i) := sel(i)
|
|
|
|
// }
|
|
|
|
// mux.io.in <> in.asOutput
|
|
|
|
// mux.io.out.asInstanceOf[T]
|
|
|
|
}
|
|
|
|
|
|
|
|
def apply [T <: Data](n: Int, sel: Bits, in: Vec[T]): T = {
|
|
|
|
MuxCase(in(0), (0 until n).map( i => (sel(i).toBool, in(i))))
|
|
|
|
// val mux = (new Mux1H(n)){ in(0).clone }
|
|
|
|
// for(i <- 0 until n) {
|
|
|
|
// mux.io.sel(i) := sel(i).toBool
|
|
|
|
// }
|
|
|
|
// mux.io.in := in
|
|
|
|
// mux.io.out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Mux1H [T <: Data](n: Int)(gen: => T) extends Component
|
2011-12-09 09:42:43 +01:00
|
|
|
{
|
|
|
|
val io = new Bundle {
|
2012-01-18 19:28:48 +01:00
|
|
|
val sel = Vec(n) { Bool(dir = INPUT) }
|
2012-02-01 22:24:28 +01:00
|
|
|
val in = Vec(n) { gen }.asInput
|
|
|
|
val out = gen.asOutput
|
2011-12-09 09:42:43 +01:00
|
|
|
}
|
|
|
|
|
2012-02-01 22:24:28 +01:00
|
|
|
if (n > 2) {
|
|
|
|
var out = io.in(0).toBits & Fill(gen.getWidth, io.sel(0))
|
2011-12-12 15:49:16 +01:00
|
|
|
for (i <- 1 to n-1)
|
2012-02-01 22:24:28 +01:00
|
|
|
out = out | (io.in(i).toBits & Fill(gen.getWidth, io.sel(i)))
|
2011-12-12 15:49:16 +01:00
|
|
|
io.out := out
|
2012-02-01 22:24:28 +01:00
|
|
|
} else if (n == 2) {
|
|
|
|
io.out := Mux(io.sel(1), io.in(1), io.in(0))
|
2011-12-09 09:42:43 +01:00
|
|
|
} else {
|
|
|
|
io.out := io.in(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 22:24:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-09 09:42:43 +01:00
|
|
|
class ioDecoupled[T <: Data]()(data: => T) extends Bundle
|
|
|
|
{
|
2012-01-18 19:28:48 +01:00
|
|
|
val valid = Bool(INPUT)
|
|
|
|
val ready = Bool(OUTPUT)
|
2011-12-09 09:42:43 +01:00
|
|
|
val bits = data.asInput
|
|
|
|
}
|
|
|
|
|
|
|
|
class ioArbiter[T <: Data](n: Int)(data: => T) extends Bundle {
|
|
|
|
val in = Vec(n) { (new ioDecoupled()) { data } }
|
|
|
|
val out = (new ioDecoupled()) { data }.flip()
|
|
|
|
}
|
|
|
|
|
|
|
|
class Arbiter[T <: Data](n: Int)(data: => T) extends Component {
|
|
|
|
val io = new ioArbiter(n)(data)
|
|
|
|
|
|
|
|
io.in(0).ready := io.out.ready
|
|
|
|
for (i <- 1 to n-1) {
|
|
|
|
io.in(i).ready := !io.in(i-1).valid && io.in(i-1).ready
|
|
|
|
}
|
|
|
|
|
2011-12-12 15:49:16 +01:00
|
|
|
var dout = io.in(n-1).bits
|
|
|
|
for (i <- 1 to n-1)
|
|
|
|
dout = Mux(io.in(n-1-i).valid, io.in(n-1-i).bits, dout)
|
2011-12-09 09:42:43 +01:00
|
|
|
|
2011-12-21 07:08:27 +01:00
|
|
|
var vout = io.in(0).valid
|
|
|
|
for (i <- 1 to n-1)
|
|
|
|
vout = vout || io.in(i).valid
|
2011-12-09 09:42:43 +01:00
|
|
|
|
2012-01-23 18:51:35 +01:00
|
|
|
vout <> io.out.valid
|
|
|
|
dout <> io.out.bits
|
2011-12-09 09:42:43 +01:00
|
|
|
}
|
|
|
|
|
2011-11-09 23:52:17 +01:00
|
|
|
class ioPriorityDecoder(in_width: Int, out_width: Int) extends Bundle
|
|
|
|
{
|
2012-01-18 19:28:48 +01:00
|
|
|
val in = UFix(in_width, INPUT);
|
|
|
|
val out = Bits(out_width, OUTPUT);
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class priorityDecoder(width: Int) extends Component
|
|
|
|
{
|
|
|
|
val in_width = ceil(log10(width)/log10(2)).toInt;
|
|
|
|
val io = new ioPriorityEncoder(in_width, width);
|
|
|
|
val l_out = Wire() { Bits() };
|
|
|
|
|
2012-02-12 02:20:33 +01:00
|
|
|
l_out := Bits(0, width);
|
|
|
|
for (i <- width-1 to 0 by -1) {
|
2011-11-09 23:52:17 +01:00
|
|
|
when (io.in === UFix(i, in_width)) {
|
2012-02-12 02:20:33 +01:00
|
|
|
l_out := Bits(1,1) << UFix(i);
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
io.out := l_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ioPriorityEncoder(in_width: Int, out_width: Int) extends Bundle
|
|
|
|
{
|
2012-01-18 19:28:48 +01:00
|
|
|
val in = Bits(in_width, INPUT);
|
|
|
|
val out = UFix(out_width, OUTPUT);
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class priorityEncoder(width: Int) extends Component
|
|
|
|
{
|
|
|
|
val out_width = ceil(log10(width)/log10(2)).toInt;
|
|
|
|
val io = new ioPriorityDecoder(width, out_width);
|
|
|
|
val l_out = Wire() { UFix() };
|
|
|
|
|
2012-02-12 02:20:33 +01:00
|
|
|
l_out := UFix(0, out_width);
|
|
|
|
for (i <- width-1 to 1 by -1) {
|
2011-11-09 23:52:17 +01:00
|
|
|
when (io.in(i).toBool) {
|
2012-02-12 02:20:33 +01:00
|
|
|
l_out := UFix(i, out_width);
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
io.out := l_out;
|
|
|
|
}
|
|
|
|
|
2011-12-09 09:42:43 +01:00
|
|
|
}
|