u500: disable PCIe
[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._
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)
31 extends VC707Shell
32 with HasDDR3 {
33
34 //-----------------------------------------------------------------------
35 // DUT
36 //-----------------------------------------------------------------------
37
38 // Connect the clock to the 50 Mhz output from the PLL
39 dut_clock := clk50
40 withClockAndReset(dut_clock, dut_reset) {
41 val dut = Module(LazyModule(new U500VC707DevKitSystem).module)
42
43 //---------------------------------------------------------------------
44 // Connect peripherals
45 //---------------------------------------------------------------------
46
47 connectDebugJTAG(dut)
48 connectSPI (dut)
49 connectUART (dut)
50 connectMIG (dut)
51
52 //---------------------------------------------------------------------
53 // GPIO
54 //---------------------------------------------------------------------
55
56 val gpioParams = p(PeripheryGPIOKey)
57 val gpio_pins = Wire(new GPIOPins(() => PinGen(), gpioParams(0)))
58
59 GPIOPinsFromPort(gpio_pins, dut.gpio(0))
60
61 gpio_pins.pins.foreach { _.i.ival := Bool(false) }
62 gpio_pins.pins.zipWithIndex.foreach {
63 case(pin, idx) => led(idx) := pin.o.oval
64 }
65
66 // tie to zero
67 for( idx <- 7 to 4 ) { led(idx) := false.B }
68 }
69
70 }