View unanswered posts | View active topics It is currently Thu Mar 28, 2024 5:10 pm



Reply to topic  [ 5 posts ] 
 How do I determine when SRAM is ready from a CPLD? 
Author Message
User avatar

Joined: Tue Jul 23, 2019 5:55 pm
Posts: 6
Location: Hixson, TN USA
I'm working on designing a 68K computer. While reading the 16-bit READ cycle, it goes something like this:

Code:
Bus Master:
1) Set R/W to READ
2) Place function code on FC2-FC0
3) Place address on A23-A1
4) Assert address strobe (/AS)
5) Assert upper data strobe (/UDS) and lower data strobe (/LDS)

Slave (RAM/MMU):
1) Decode address
2) Place data on D15-D0
3) Assert data transfer acknowledge (/DTACK)

....



There's more to it but you get the idea.

So, if designing an MMU with a CPLD (such as the ATF1508), I was wondering how to assert the /DTACK pin. The SRAM will take X number of ns between steps 1 and 2 of the RAM section. Once it's done (let's assume 15ns later), the CPLD needs to assert /DTACK.

But if my CPLD runs at 7.5ns, then I need a way of delaying for a bit.
If I were writing this in code, I might use something like:

Code:
while ram_not_ready do
loop

assert_dtack


My gut feeling is that since the 68K takes 8 states (cycles), that I simply wait one or two of them and assume the SRAM was ready. It would be really awesome if SRAM could work async-like and let master devices know when they are done. :-)

Thanks for any input.


Tue Jul 23, 2019 8:32 pm
Profile

Joined: Wed Jan 09, 2013 6:54 pm
Posts: 1780
Indeed, the nature of SRAM is that you have to wait, and you get no signal or indication. So, typically, you'd use some clock and wait some number of cycles, in order to meet the datasheet timing (taking into account the delays in your glue logic of course, and maybe a little safety margin.)

The faster the clock you have to hand, the more fine-grained your counting will be. But as you note, the CPU works in discrete wait-state cycles, so it makes sense to use those to do the counting.

So, in a CPLD, you'll need one, two or three bits for a counter. I'm afraid I'm likely to get an out-by-one error, but two cycles at 7.5ns certainly does give you the 15ns which you say your SRAM will take. (I think that's pretty fast SRAM.)


Wed Jul 24, 2019 6:44 am
Profile

Joined: Tue Aug 08, 2017 1:33 pm
Posts: 9
If it's a 68K running at a hobbyist-friendly speed, I think you're highly unlikely to need to do much more than simply grounding /DTACK. For a read cycle, it looks like the RAM (or ROM, or I/O) has about 4 clock cycles to do what it needs to do; at 8MHz, that is 500nS.

See e.g. http://users.cecs.anu.edu.au/~Matthew.James/engn3213-2002/notes/busnode7.html


Wed Jul 24, 2019 10:10 am
Profile
User avatar

Joined: Tue Jul 23, 2019 5:55 pm
Posts: 6
Location: Hixson, TN USA
Thanks for the information.

Yeah, I was thinking of a couple of timers and just checking for the second bit or so. I haven't done the math yet, but that's the idea.

As far as speed, I plan on running between 8-10 MHz in production. For prototyping, I'm using plain-jane 55ns SRAM (2x 512KiB). But for my production run, I plan on using 16-bit SRAM running at 10ns. Mainly because I plan on driving VGA from it as well and the RAM was surprisingly cheap.

I plan on using two of these in the production run.

https://www.mouser.com/ProductDetail/87 ... 616EDBLL10


Wed Jul 24, 2019 12:33 pm
Profile

Joined: Tue Dec 31, 2013 2:01 am
Posts: 116
Location: Sacramento, CA, United States
https://en.wikipedia.org/wiki/DTACK_Gro ... _the_title

Mike B.


Sun Aug 04, 2019 5:05 am
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 5 posts ] 

Who is online

Users browsing this forum: No registered users and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software