Changeset 8 in XOpenSparcT1 for trunk/Top/W1.v
- Timestamp:
- 03/22/11 11:51:17 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Top/W1.v
r6 r8 22 22 module W1( 23 23 24 input sysclk,24 input clk_in, 25 25 input sysrst, 26 26 … … 42 42 output [ 7:0] ddr3_dm, 43 43 44 output phy_init_done, // LED45 input rup,46 input rdn,44 //output phy_init_done, // LED 45 //input rup, 46 //input rdn, 47 47 48 48 // Console interface 49 49 input srx, 50 50 output stx, 51 input [1:0] flash_rev,51 //input [1:0] flash_rev, 52 52 53 53 /* MII interface replaced by SGMII … … 80 80 //output led_an, 81 81 82 output [2 4:0] flash_addr,82 output [21:0] flash_addr, 83 83 input [15:0] flash_data, 84 84 output flash_oen, … … 90 90 ); 91 91 92 wire pllclk; 93 wire sysclk; 92 94 wire wb_rst_i; 93 95 wire [35:0] CONTROL0; … … 387 389 dram_wb dram_wb_inst ( 388 390 .clk200(sysclk), 389 .rup(rup), 390 .rdn(rdn), 391 //.clk200(clk_in), 392 //.rup(rup), 393 //.rdn(rdn), 391 394 .wb_clk_i(wb_clk_i), 392 395 .wb_rst_i(wb_rst_i), … … 455 458 .flash_oen(flash_oen), 456 459 .flash_wen(flash_wen), 457 .flash_cen(flash_cen) ,458 .flash_rev(flash_rev)460 .flash_cen(flash_cen) 461 //.flash_rev(flash_rev) 459 462 ); 460 463 … … 570 573 assign sysrst_p=!sysrst; 571 574 575 576 IBUFG ibufg_inst (.O(sysclk),.I(clk_in)); 577 BUFG bufg_inst (.O(pllclk),.I(sysclk)); 578 572 579 // Standard PLL 573 580 pll pll_inst( 574 581 .RST_IN(sysrst_p), 575 .CLKIN1_IN( sysclk),582 .CLKIN1_IN(pllclk), 576 583 .CLKOUT0_OUT(wb_clk_i), //Up to 75 MHz on Stratix IV 577 584 .LOCKED_OUT(dcm_locked)
Note: See TracChangeset
for help on using the changeset viewer.