Sign In

Don't have a Xilinx account yet?

  • Choose to receive important news and product information
  • Gain access to special content
  • Personalize your web experience on Xilinx.com

Create Account

Username

Password

Forgot your password?
XClose Panel
Xilinx Home
Reply
Visitor
bhathi123
Posts: 5
Registered: ‎05-24-2012
0
Accepted Solution

PIN assigning in Spartan3

I'm very very new to this area...

I'm using a Spartan 3 development board.

I need to communicate with computer through RS232. (I have written the Verilog codes for RS232 Rx and Tx assuming a 25MHz input clock).  "Spartan 3E starter kit user guide" says FPGA pins for RS232 are "U8" and "M16". How can I use this information?


My verilog codes contain "initial" blocks. Since they are not synthesizable, I need to use some other method to initialize the modules. I thought of using an "init" port as an input in every module and initialization code is written in "always @(posedge init)" block. What I need to do is, drive the "init" port logic high at FPGA power up. Can I achive this? If yes what pin should I assign to the "init" input port?

 

Please help... Urgent

Expert Contributor
eteam00
Posts: 7,505
Registered: ‎07-21-2009
0

Re: PIN assigning in Spartan3

The pin assignments for your S-3E Starter Kit board are declared in the .UCF file.  A reference .UCF file is included with the rest of the S-3E reference design files and guide documents which are readily available for download.

 

You should view this (downloadable) Xilinx training video which describes some basic FPGA design facilities and tools, including pin assignments.

 

Eventually you will want to learn more.  The reference document is UG625, the Constraints Guide.  Chapter 2 covers different methods of entering (or capturing) design constraints, including pin assignments and IO signaling standards and drive levels.

 

My verilog codes contain "initial" blocks. Since they are not synthesizable, I need to use some other method to initialize the modules.

 

This contradicts my understanding!  Suggest you spend a few minutes with the Synthesis and Simulation Design Guide UG626.  In version 13.4, discussion of 'Initial State' begins on page 62.

 

Finally, have you read the New Users Forum README thread?  Item #1 in this thread describes Document Navigator and how to download and install it.  Its use for Spartan-3 designs is a bit limited, but all the ISE design tools reference documents are included in the Doc Nav tool.  DocNav is a big help for locating and accessing the billions and billions of Xilinx documentation files.

 

-- Bob Elkind

SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide. Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts. If I write a good post, then I have been good for nothing.
Visitor
bhathi123
Posts: 5
Registered: ‎05-24-2012
0

Re: PIN assigning in Spartan3

Thank you very muach... It was very helpfull.. :)

Visitor
jpgore
Posts: 1
Registered: ‎06-22-2012
0

Re: PIN assigning in Spartan3

Thanks. Big help! Got me sorted.