Project

General

Profile

Actions

Feature #2

closed

PBI support

Added by foft about 7 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
High
Assignee:
Start date:
04/04/2017
Due date:
% Done:

0%

Estimated time:

Description

Implement PBI support:

Done:
PBI_A
PBI_D
PBI_CLK
PBI_RW_N
PBI_IRQ_N
PBI_RST_N

High priority:
PBI_EXTSEL_N
PBI_MPD_N
PBI_REF_N (including turbo freezer hack)
These are tricky because they are sampled at different points in the cycle. Currently the core runs on cycle 1/32 (+ memory latency) and only waits for later cycles in the cartridge region. RD4/RD5 are assumed to be static. We can't really do that for PBI.
Investigating this with a much simpler core that runs on cycle 32/32 to fully understand it. Then can decide how to integrate with the main core when its working like that.

low priority (only for memory upgrade/on v2 board)
CAS_N
RAS_N


Related issues 7 (1 open6 closed)

Related to Bug #4: Galaxian flickers on scrolling - when using real cartridgeClosed04/04/2017

Actions
Related to Bug #5: SIDE2 does not workClosed04/04/2017

Actions
Related to Bug #25: F10 Hard Reset Ignore inserted cartridge (Core v7)New05/31/2017

Actions
Related to Bug #34: Problem booting with Core 9Closedfoft06/03/2017

Actions
Related to Bug #43: Core 10 - IDE2+ Menu does not show when powering the computer with START key pressedClosedfoft06/08/2017

Actions
Related to Bug #45: CORE10 - IDE2+ SDX not workingClosed06/09/2017

Actions
Related to Bug #60: Prozac dreams large logo flickersClosed12/12/2017

Actions
Actions #1

Updated by foft about 7 years ago

  • Status changed from New to In Progress
Actions #2

Updated by foft almost 7 years ago

Started on a PBI component that will correctly communicate with the bus. Then this can be checked/simulated - and as a later stage I can do the core connection.

Actions #3

Updated by foft almost 7 years ago

PBI looking good on simulation (bit itself). Based timings on the Freddie data sheet.
Made a start on wiring it up to the core. Need to remind myself how the enable strategy works and what they are all used for.

Initial idea is to just work on 1x mode, and delay the cpu until the 2nd half of the cycle, to find out if PBI takes over the bus or not. All writes will hit pbi, but reads will not (for now).

Actions #4

Updated by foft almost 7 years ago

Integrated into the description and synthesising:-)

For now I took the strategy of delaying the cycle until we know if PBI wants to take over. Its enabled only in 1x speed for now.

Actions #5

Updated by foft almost 7 years ago

Looking good on simulation now but does not run on the board. I think the issue is when pbi takes over the bus when a transaction is already in process.

This is all so complicated because I'm running the clock at 32x the original one, so have to carefully choreograph the timings on on pbi based on that.

Actions #6

Updated by foft almost 7 years ago

Made several more fixes and the core no longer crashes with PBI enabled. However it all crashes when I plug in a cartridge! These worked without PBI support, but I replaced the cartridge logic too when I implemented this. Interestingly sometimes I receive the game screen - e.g. frogger logs or pole position road.

So one more day looking for bugs on the sim after which I hope it really will work. If not I'll have to fire up signaltap to see what is actually going on this weekend...

Actions #7

Updated by sadosp almost 7 years ago

foft wrote:

Made several more fixes and the core no longer crashes with PBI enabled. However it all crashes when I plug in a cartridge! These worked without PBI support, but I replaced the cartridge logic too when I implemented this. Interestingly sometimes I receive the game screen - e.g. frogger logs or pole position road.

So one more day looking for bugs on the sim after which I hope it really will work. If not I'll have to fire up signaltap to see what is actually going on this weekend...

Congratulations! This is real good news.

Actions #8

Updated by foft almost 7 years ago

The core blows up with signaltap2 enabled! Looks great on sim, but I can't see what is going wrong on the actual hardware:-(

Actions #9

Updated by foft almost 7 years ago

I started to bisect to find the problem - and found the core stops working when connecting RAS and CAS! Which are largely just for show, I doubt anyone will really use a 1064... Anyway I checked the pin assignments and found a bunch of duplicates which may be the cause of the woes.

Actions #10

Updated by foft almost 7 years ago

Still no luck with signaltap, so got the real logic analyzer on the GPIOs to debug. Squashed one sync bug but still no dice. But now confident I can get the values I need out where I can see them at least.

Actions #11

Updated by foft almost 7 years ago

PBI lives!!

Still some debugging to do but so far...
Cartridges are working again, which is a good sign (these are now via the PBI component)
Turbo freezer works - sort of! Sometimes is seems inactive and the memory expansion doesn't seem to work. But I have plugged in the uno cart and turbo freezer and it seems to work.

pbi21.sof for anyone brave (new board only for now, but will port soon)

Actions #12

Updated by foft almost 7 years ago

Interesting the acid test now fails with this core, which explains the blips I got when running real cartridges before. So probably some antic timings are wrong when the active cycle is in the 2nd colour clock of the cycle.

Actions #13

Updated by sadosp almost 7 years ago

foft wrote:

Interesting the acid test now fails with this core, which explains the blips I got when running real cartridges before. So probably some antic timings are wrong when the active cycle is in the 2nd colour clock of the cycle.

Great news!!!

Actions #14

Updated by foft almost 7 years ago

  • Priority changed from Normal to High
Actions #15

Updated by foft almost 7 years ago

Some progress in antic timings which are broken by this. I found I am using a delay shift register to wait 32 cycles (48 in one case!) on a write to a bunch of registers. This isn't really ideal since depending on memory timings the next cpu cycle could be 28 or 34 cycles later etc! So I'll change these to be based on 'original machine cycles' instead which will mean that the pbi delay does not break the timings. I've started on this but need to simulate to verify because so far it makes the acid test work.

Actions #16

Updated by foft almost 7 years ago

Some info from Hias on the turbo freezer:
"Reset on the freezer runs through a synchronizer, clocked by phi2. IIRC 2 clock cycles after rst_n=0 freezer is in reset state. It then snoops the bus, when the freezer button is pressed it looks for 2 consecutive accesses to fff8-ffff and will intercept the second one (high byte of interrupt/reset vector). It doesn't assert irq, only passively listens and waits for an interrupt to occur and the rom vector access."

Still not got signaltap going, so I will modify the core to output address/data over the GPIO. Perhaps 4 bits at a time (1 nibble) so I can see/read easily address/data on the trace. I can't capture the lot easily since my logic analyzer has only 16 lines.

Actions #17

Updated by foft almost 7 years ago

  • Related to Bug #4: Galaxian flickers on scrolling - when using real cartridge added
Actions #18

Updated by foft almost 7 years ago

  • Related to Bug #5: SIDE2 does not work added
Actions #19

Updated by foft almost 7 years ago

  • Related to Bug #25: F10 Hard Reset Ignore inserted cartridge (Core v7) added
Actions #20

Updated by foft almost 7 years ago

Fixed some clear cycle delay bugs in antic and simulated. This fixed NMIEN and WSYNC tests in acid, however there are still 4 failing. Work out why...

I could do with converting the acid test suite into testbenches really!

Actions #21

Updated by foft almost 7 years ago

I've been squashing test failures related to moving the cpu clock later in the '6502 cycle' due to PBI. None of these should have changed anything, they are all silly bugs. Mostly fixed, though the last one highlighted some issues with my DMA clock setup. I started the normal dma clock at cycle 0x21. However if the mode is changed to narrow then the deadline to start this clock is cycle 0x22! Moving the CPU back 16 cycles puts me into cycle 0x22. I hacked the DMA clock for now but this is clearly the wrong solution. Its meant to be combinatorial logic, then 2 cycle delay on start. I now have a 1 cycle delay for start... This will be tricky to unravel.

Actions #22

Updated by foft almost 7 years ago

Well that horrible dma clock patch led to a complete acid pass except for a gtia failure. I see in gtia I have colour clock delays on register writes will lead to exactly this kind of problem. So I need to adjust all of those delays to be in terms of phi2 instead of colour clocks.

Actions #23

Updated by foft almost 7 years ago

Synced gtia delays to end of original 6502 cycle time and now acid is passing again.

Actions #24

Updated by foft almost 7 years ago

I took a look at the turbo freezer on signaltap, I can't see it even trying to pull refresh after a reset. So I guess I need to check I'm still feeding it valid inputs... Oddly oldos mode DOES work! So ... weird...

Actions #25

Updated by foft almost 7 years ago

First cut released as v9. Sure there are some bugs, try at your own risk!

Actions #26

Updated by foft almost 7 years ago

  • Related to Bug #34: Problem booting with Core 9 added
Actions #27

Updated by foft almost 7 years ago

I added output of internal reads to the bus. I also fixed some cases around writes.

Now the external turbo freezer works well enough to save and load state to disk. However the internal freezer still crashes. The reset problem remains though, I tried resetting the pbi layer at the same time as the atari core with no impact.

(pbi31.sof for anyone wanting to try)

Actions #28

Updated by foft almost 7 years ago

Woohoo, freezer is working after reset - and ramdisk is working from freezer!

Actions #29

Updated by foft almost 7 years ago

Please now test some other devices - and let me know how you get on:-) I can't guarantee its safe but the fact the freezer seems to work is a good sign...

Actions #30

Updated by foft almost 7 years ago

  • Related to Bug #43: Core 10 - IDE2+ Menu does not show when powering the computer with START key pressed added
Actions #31

Updated by foft almost 7 years ago

  • Related to Bug #45: CORE10 - IDE2+ SDX not working added
Actions #32

Updated by foft almost 7 years ago

Turn on data write to bus earlier, for things that snap it early (like IDE2+).
Register MPD_N before feeding to the address decoder and disable it when disabled.

Actions #33

Updated by foft almost 7 years ago

Hias tried out PBI on the v1.

Surprise: Turbo freezer didn't work! Mine works perfectly on v2...

He investigated and found three things:
i) REF_N pullup is a little low, so with any increased capacitance it takes too long to rise. We should change this resistor from 4k7 to 1k8-2k2. Owners of the v1 board may wish to make this mod.
ii) PHI2 duty cycle approximation causes some of the monocycle timed devices to fail. I adjusted this from 43.8% to 46.9% and this fixes his issues. On a real 6502 its 47.25%, but since I'm approximating intra cycle timing with a 32x clock rate I can't get closer easily.
iii) Antic refresh is not yet supported, I should probably output this in case people connect legacy memory upgrades. Does 1064 use it?

Actions #34

Updated by sadosp almost 7 years ago

Excellent!

Actions #35

Updated by foft almost 7 years ago

Added antic refresh cycles

Actions #36

Updated by foft over 6 years ago

  • Related to Bug #60: Prozac dreams large logo flickers added
Actions #37

Updated by foft over 6 years ago

  • Status changed from In Progress to Closed

Closing, seems to be working well. At least on all the devices I have!

Actions

Also available in: Atom PDF