6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Mon Jun 03, 2024 10:30 pm

All times are UTC




Post new topic Reply to topic  [ 13 posts ] 
Author Message
 Post subject: finicky r/w on 6522
PostPosted: Mon May 25, 2020 4:36 am 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
Ok, I have my SBC running well on a 4 layer board, with dedicated ground and power planes. 1 MHz clock speed.

I am now attempting to interface with a 65c22 VIA, off-board on a breadboard.

I can write to the via outputs successfully ONLY if I hardwire the VIA's r/w pin low.

My build uses a "ph2 qualified" r/w (credit to chromatix for the idea), such that chips only see the R/W go low on the second half of a cycle, when the data is guaranteed stable.

I have tried both this qualified R/W, and the signal direct from the 6502. Doesn't work. Only r/w hardwired low lets me write to the VIA.

My signals all look good.

On the logic analyzer, I show r/w low, both selects correct. Data bus only has 0's on it during the write (should be all 1's during the test). On the previous cycle, the correct data is on the bus as I load it into the accumulator. It just seems to vanish before the write. (at least according to my state measurement with the analyzer).

I haven't done much timing analysis with this analyzer (HP 1670E), so I'll be read up on how to do that tonight, as I suspect its relevant here.

Any ideas?


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 5:03 am 
Offline
User avatar

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3363
Location: Ontario, Canada
Dan Moos wrote:
such that chips only see the R/W go low on the second half of a cycle

Some chips need to be that way, but I don't think 6522 is on the list.

Check the datasheet. I'm sure the 6522 wants its CS inputs stable BEFORE Phi2 rises, and I suspect that's also true for the R/W input. But I don't trust my memory ATM.

Too sleepy to look it up for you -- sorry! Off to bed now! :)

J.

_________________
In 1988 my 65C02 got six new registers and 44 new full-speed instructions!
https://laughtonelectronics.com/Arcana/ ... mmary.html


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 5:41 am 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
Ok, solved.

I had to feed the VIA's PH2 with the actual system clock, not the PH2 from the processor.

Also, I had to use the R/W from the processor (the full cycle one)

I'm not clear exactly why this worked. I know the selects need to be valid before the rising clock edge, but to me using the actual system clock would be opposite of this, as it leads the PH2 out. The clock rises a little sooner.


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 5:43 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8453
Location: Southern California
As Jeff says, the R/W line must be valid a setup time before the rise of phase 2. So do the CS and RS lines. Do not gate these with phase 2 to the '22.

It looks like I did not get that information into the 6502 primer. I'll try to find a good place for it.

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 7:23 am 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8198
Location: Midwestern USA
Dan Moos wrote:
I'm not clear exactly why this worked. I know the selects need to be valid before the rising clock edge, but to me using the actual system clock would be opposite of this, as it leads the PH2 out. The clock rises a little sooner.

The likely explanation is the MPU's clock outputs lag Ø2 in by an unspecified amount.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 10:00 am 
Offline

Joined: Mon May 21, 2018 8:09 pm
Posts: 1462
Yes, the 65xx series peripheral devices are designed to be connected directly to the 6502 bus, ie. using the same Phi2 and R/W signals as the CPU. It's known as a synchronous bus interface. Only the chip-select signals need to be generated by glue logic.

This is in direct contrast to many other devices which adopt an asynchronous bus interface, with no explicit clock input and distinct /OE and /WE signals. It is these which must be Phi2-qualified.


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 7:03 pm 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
I understand why the R/W being changed worked. Its the clock that confuses me.

Doesn't PH2O on the 6502 slightly LAG the PH2 in? Thus, by using the system clock for the VIA rather than PH2O, I'm giving the VIA slightly LESS time to react?


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 7:54 pm 
Offline

Joined: Mon May 21, 2018 8:09 pm
Posts: 1462
You said you changed two things to get it to work. One of them was not gating the R/W line. Does it really stop working if you go back to the old clocking arrangement?

But if it does, then you may be getting a different kind of timing violation than you expect, specifically for writes. The 6502 only keeps write data valid on the bus for a very short time after the end of Phi2 - this is known as the "hold time". The device receiving that data has to stop listening to the bus within that hold time, otherwise it might start seeing whatever goes on the bus next. Delaying the clock signal to a 65xx peripheral gives it less margin on that hold-time requirement.


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 8:31 pm 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
Both the R/W and Clock changes are needed for it to work.

I get the data hold time thing now. Thanks!


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 8:51 pm 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
BTW, on my 100MHz scope, I show the PH2o signal rising edge lagging the system clock by 9 ns. The falling edge only lags by about 4 ns.

That's a tight window between working and failing!


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 9:47 pm 
Offline
User avatar

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3363
Location: Ontario, Canada
Dan Moos wrote:
That's a tight window between working and failing!
In some respects things are not as bad as they seem, at least for for 6502 and 'C02.

It's true those processors only drive write data onto the bus for a short time after the end of Phi2. The same is usually true for read data driven onto the bus by the system. But in practice the bus remains unchanged well after Phi2 falls simply because of its own capacitance. Of course that extra timing margin would easily be erased if another device were to immediately begin driving, but for 6502 and 'C02 it's usually true that nothing drives the data bus while Phi2 is low.

-- Jeff

_________________
In 1988 my 65C02 got six new registers and 44 new full-speed instructions!
https://laughtonelectronics.com/Arcana/ ... mmary.html


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 10:35 pm 
Offline

Joined: Sat Mar 11, 2017 1:56 am
Posts: 276
Location: Lynden, WA
This has turned out to be more educational than planned!

First, I actually spent time looking at the timing diagrams for the '22 and the '02.

Next, I for the first time tried doing timing analysis with my HP 1670e analyzer. Wow, I have been ignoring a great feature! My scope may give more info for specific signals, but being able to measure anything in the bus to any other thing in one screen is amazing!

Through use of that timing analysis, I see that by using the PH2O to clock the '22, I was 2 ns under the required hold time. By using the actual system clock, I am 6 ns over the required hold time. Still seems tight to me, and to be honest, I haven't really looked at what the trigger levels are for the analyser, but I imagine if I ignore the numbers I'm getting, graphically I can see the difference.

I'm curious what voltage thresholds I should be using here. All CMOS parts. Currently the analyzer is set for TTL.


Top
 Profile  
Reply with quote  
 Post subject: Re: finicky r/w on 6522
PostPosted: Mon May 25, 2020 10:43 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8453
Location: Southern California
Dan Moos wrote:
I'm curious what voltage thresholds I should be using here. All CMOS parts..

CMOS parts, with the 'T' (like 74ACxx versus 74ACTxx) typically specifies 30% and 70% of VDD as the solid 0 and 1. For things like memory, you'll have to see the data sheets. For WDC, as much as we may love them, it's almost up to testing it yourself, since the data sheets have had so many problems over the years.

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 13 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 33 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: