Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Modelling local bus IO-system
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Harald Skoglund  
View profile  
 More options Apr 4 2003, 1:58 pm
Newsgroups: comp.lang.verilog
Followup-To: comp.lang.verilog
From: Harald Skoglund <har...@NOheSPktaAM.org>
Date: Fri, 4 Apr 2003 18:57:55 +0000 (UTC)
Local: Fri, Apr 4 2003 1:57 pm
Subject: Modelling local bus IO-system
I'm working on a project trying to hook a xilinx virtex-ii up to the
local bus (not pci bus) on a PLX-9656 RDK kit (PCI development board).

I'm having problems finding a way to sensibly model the bus interface,
it's a bidirectional bus with address/data multiplexed.

I have ended up with:

** Loads of stuff omitted here **

input                   CS,     // Chip Select
inout           [31:0]  LAD     // Address/Data
..
wire            [31:0]  LAD_OE;
wire            [31:0]  LAD_OUT;
wire            [31:0]  LAD_IN = LAD[31:0];
...
bufif1  IO_buf00 (LAD[00],LAD_OUT[00], LAD_OE[00]);
...
bufif1  IO_buf31 (LAD[31],LAD_OUT[31], LAD_OE[31]);

just to give a snippet of the important stuff, and that's well and good
for modelling outgoing data, but i guess i should have a way to hold the
LAD at Hi-Z whenever CS is not asserted, and i'm not sure how to
do that in a sane way.

Any help would be greatly appreciated.

--
Harald


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Petter Gustad  
View profile  
 More options Apr 4 2003, 4:00 pm
Newsgroups: comp.lang.verilog
From: Petter Gustad <newsmailco...@gustad.com>
Date: 04 Apr 2003 22:20:43 +0200
Local: Fri, Apr 4 2003 3:20 pm
Subject: Re: Modelling local bus IO-system

wire            [31:0]  LAD_OE = {32{CS}};

assuming CS is active high.

Petter
--
________________________________________________________________________
Petter Gustad         8'h2B | ~8'h2B        http://www.gustad.com/petter


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »