summaryrefslogtreecommitdiffstats
path: root/main.v
diff options
context:
space:
mode:
authorRaptor Engineering Development Team <support@raptorengineering.com>2018-06-06 00:10:43 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2018-06-06 00:10:43 -0500
commit74190de14568f3cd50ba9c6d5b626862ad5f7019 (patch)
tree0bab6238e019d6ec3ee5cb5a23876fe734767f12 /main.v
parentbe9634aeac2b5b5e1db6c8b4e0b29cce0d298580 (diff)
downloadtalos-system-fpga-74190de14568f3cd50ba9c6d5b626862ad5f7019.tar.gz
talos-system-fpga-74190de14568f3cd50ba9c6d5b626862ad5f7019.zip
Enable pullup on secondary CPU presence detect pin
Bump FPGA version
Diffstat (limited to 'main.v')
-rw-r--r--main.v14
1 files changed, 12 insertions, 2 deletions
diff --git a/main.v b/main.v
index 32df956..f238b20 100644
--- a/main.v
+++ b/main.v
@@ -58,7 +58,7 @@ module system_fpga_top
inout i2c_sda,
// Second CPU presence detect
- input wire cpub_present_n,
+ input wire cpub_present_l,
output wire cpub_clk_oea,
output wire cpub_clk_oeb,
@@ -126,6 +126,16 @@ module system_fpga_top
.D_IN_0(flexver_reset_req_l)
);
+ // The CPU presence detect line requires a pullup to 3.3V
+ wire cpub_present_n;
+ SB_IO #(
+ .PIN_TYPE(6'b000001),
+ .PULLUP(1'b1)
+ ) cpub_present_l_io (
+ .PACKAGE_PIN(cpub_present_l),
+ .D_IN_0(cpub_present_n)
+ );
+
// Make NIC activity lights work
// WARNING: Hic Sunt Dracones!
//
@@ -212,7 +222,7 @@ module system_fpga_top
.D_IN_0(i2c_sda_in)
);
- parameter fpga_version = 8'h09;
+ parameter fpga_version = 8'h0a;
parameter vendor_id1 = 8'h52;
parameter vendor_id2 = 8'h43;
parameter vendor_id3 = 8'h53;
OpenPOWER on IntegriCloud