Updates to Freedom SoCs
[freedom-sifive.git] / src / main / scala / unleashed / u500vc707devkit / FPGAChip.scala
1 // See LICENSE for license details.
2 package sifive.freedom.unleashed.u500vc707devkit
3
4 import Chisel._
5 import chisel3.experimental.{withClockAndReset}
6
7 import freechips.rocketchip.config._
8 import freechips.rocketchip.diplomacy._
9
10 import sifive.blocks.devices.gpio._
11 import sifive.blocks.devices.pinctrl.{BasePin}
12
13 import sifive.fpgashells.shell.xilinx.vc707shell.{VC707Shell}
14 import sifive.fpgashells.ip.xilinx.{IOBUF}
15
16 //-------------------------------------------------------------------------
17 // PinGen
18 //-------------------------------------------------------------------------
19
20 object PinGen {
21 def apply(): BasePin = {
22 new BasePin()
23 }
24 }
25
26 //-------------------------------------------------------------------------
27 // U500VC707DevKitFPGAChip
28 //-------------------------------------------------------------------------
29
30 class U500VC707DevKitFPGAChip(implicit override val p: Parameters) extends VC707Shell {
31
32 //-----------------------------------------------------------------------
33 // DUT
34 //-----------------------------------------------------------------------
35
36 // Connect the clock to the 50 Mhz output from the PLL
37 dut_clock := clk50
38 withClockAndReset(dut_clock, dut_reset) {
39 val dut = Module(LazyModule(new U500VC707DevKitSystem).module)
40
41 //---------------------------------------------------------------------
42 // Connect peripherals
43 //---------------------------------------------------------------------
44
45 connectDebugJTAG(dut)
46 connectSPI (dut)
47 connectUART (dut)
48 connectPCIe (dut)
49 connectMIG (dut)
50
51 //---------------------------------------------------------------------
52 // GPIO
53 //---------------------------------------------------------------------
54
55 val gpioParams = p(PeripheryGPIOKey)
56 val gpio_pins = Wire(new GPIOPins(() => PinGen(), gpioParams(0)))
57
58 gpio_pins.fromPort(dut.gpio(0))
59
60 gpio_pins.pins.foreach { _.i.ival := Bool(false) }
61 gpio_pins.pins.zipWithIndex.foreach {
62 case(pin, idx) => led(idx) := pin.o.oval
63 }
64
65 // tie to zero
66 for( idx <- 7 to 4 ) { led(idx) := false.B }
67 }
68
69 }