TF530 firmware used on Atari.

Other boosters or variants.
Post Reply
User avatar
PaulJ
Posts: 1568
Joined: Sun Apr 08, 2018 1:14 am
Location: USA

TF530 firmware used on Atari.

Post by PaulJ »

Atari folks.. has anyone built and got working a TF530 for a Atari machine. I have a couple 530's I started when they were the latest thing. I lost interest when it was suggest I move to 534's and could not obtain the 534 boards. Now I am looking for something to kill some time prior to the H4's arrival so I thought I'd finish the 530's since I have the parts. Its was suggested that I recompile the 534 firmware for a 530 but that would just throw another unknown into an unknown situation so I am looking for some one with proven firmware for a TF530 to use on an Atari. In summation has anyone built a TF530 for an Atari and have it working. If so would appreciate a link to the firmware or a reference to the version used.If you were successful what clock freq did you use and did you use a math coprocessor? Thanks, any pointers appreciated.
User avatar
PhilC
Moderator
Moderator
Posts: 6016
Joined: Fri Mar 23, 2018 8:22 pm

Re: TF530 firmware used on Atari.

Post by PhilC »

Hi Paul, sorry just the 534 for me but it sounds like the majority of the issues are with the ram and ide being allocated for the Amiga and not the ST.

Have a look at
https://www.exxosforum.co.uk/forum/viewt ... =68&t=2149 for the latest on 534 on ST.
If it ain't broke, test it to Destruction.
User avatar
PaulJ
Posts: 1568
Joined: Sun Apr 08, 2018 1:14 am
Location: USA

Re: TF530 firmware used on Atari.

Post by PaulJ »

Hi Phil, if no one has gotten a 530 working for an Atari I'll just put them in the round file. Gotten a HP digital analyzer coming this afternoon so I'll have a new toy to play with in preparation for the H4. The 16 bit Chinese analyzer that uses Saleae software wasn't reliable when I was working on the Remake board. Had quite a few fantom state changes appear randomly. Also working on a flash program for the clock board. Assume you haven't come across an more features on the clock app. Anyway thanks for the input. :) :) :)
User avatar
PhilC
Moderator
Moderator
Posts: 6016
Joined: Fri Mar 23, 2018 8:22 pm

Re: TF530 firmware used on Atari.

Post by PhilC »

Yeah nobody that I know, so I'd probably park the 530 for another day if it was me.

Not had much time doing Atari stuff, been fixing up some computers to sell as I need to slim down the collection for Christmas.
If it ain't broke, test it to Destruction.
User avatar
agranlund
Posts: 777
Joined: Sun Aug 18, 2019 10:43 pm
Location: Sweden
Contact:

Re: TF530 firmware used on Atari.

Post by agranlund »

The TF534 worked out of the box on my Atari, when using the official firmware.
As in, it booted up DiagROM, EmuTos and Tos2.06 just fine and I could test the ram, and see that integer performance was higher in Gembench (but don't expect any actual real-use performance improvements at this point).
I assume the TF530 will do the same?
If that is the case, then that's the way I would have started just to verify that the board was built ok. Good to keep the number of unknowns to a minimum :)


Then, to actually go fast, you need to be able to run apps from fast ram. And for the best experience, run TOS itself from fast ram. To be honest, most of the effort is software on the Atari side but I did have to make a couple of very minor modifications to the TF firmware:

- IDE addressing for Atari
- Expose IDE interrupt to INT2 pin on TF534 board, to be connected up to ACSI pin 10 as usual with Atari IDE addons (this is not needed for EmuTOS, only Atari TOS wait for this interrupt when accessing IDE)
- FastRAM location for Atari (at 0x01000000, same as on Atari TT)
- FastRAM size set to 4MB. I guess this would have to be 2MB for the TF530. (It has to be set up in the firmware due to the way Atari detects fast-ram - it relies on getting a bus-error to know where the RAM ends)

If you want them, you can get my branch of the firmware sources from here:
https://github.com/agranlund/tf534/tree/atari-target
(I now realise I should update the tf530r3 makefile to pass along the TARGET define so it can be built for Atari)


Additionally, you can find some software that I made in the thread that was linked above. They are for enabling fastram, and running TOS in fastram depending on if you use EmuTOS or TOS2.06.
These work fine for me but I consider them a bit of a proof-of-concept still.
The EmuTOS-in-fastram build assumes 4MB fastram but you could quite easily build it for 2MB as well - it's just compiler defines, no source modifications are needed.


** I don't have a TF530 card so I can't guarantee that any of the things I did for my TF534 will work on it. Although it probably will, or at least could be made to?


Off and on, when time allows, I am working on two separate programs which *should* be all I need to cover my fast-ram related needs:

1) A program that only sets up the fastram for TOS, the fastram DMA buffer + cookie & the PMMU table as on the TT and Falcon.
EmuTOS already does all this when it detects TT-RAM, so this program will be useful for when running Atari TOS.
Atari TOS doesn't do any of this when running on an ST/F/M (and some of the stuff seem exclusive to TOS >= 3).

2) A program that can load any TOS into fastram and execute from there.
Using the PMMU to map the ROM area to where TOS was copied to in fastram.
(Unlike my earlier proof-of-concepts which required patching the TOS2.06 ram-copy, or making a custom build of EmuTOS)
I'm thinking it would load the TOS that is already running from ROM into fastram which should not need to trigger a restart, or optionally and from an image file on disk which would then need to trigger a restart into the new TOS.


Oh, and if you have a blitter installed, I recommend removing it, especially if you intend to use Atari TOS (I believe this is recommended also for the PAK68/3)
At least for now.
There never was an official Atari with both blitter and fastram. EmuTOS recognise the fact that some unofficial setups can have both (eg; Falcon with CT60) and "disables" the blitter in that case. Atari TOS do not.
EmuTOS is a bit more stable in this regard but both of them will crash, or at least produce unintended behaviour, if an application ignores TOS blitter settings and directly access the hardware to blit to/from fast-ram.
User avatar
Darklord
Posts: 900
Joined: Wed Sep 20, 2017 1:41 pm

Re: TF530 firmware used on Atari.

Post by Darklord »

Yep, it's recommended that the blitter be disabled for the Pak board.
Welcome To DarkForce! www.darkforce.org "The Fuji Lives.!"
Atari SW/HW based BBS-Telnet:darkforce-bbs.dyndns.org 1040
User avatar
PaulJ
Posts: 1568
Joined: Sun Apr 08, 2018 1:14 am
Location: USA

Re: TF530 firmware used on Atari.

Post by PaulJ »

agranlund wrote: Fri Oct 18, 2019 10:55 am The TF534 worked out of the box on my Atari, when using the official firmware.
I believe I'm going forgo finishing the 530's, having a virgin board and munging the firmware looks like a recipe for a big waste of time. I do thank you for your extensive post which really helped with the decision. I was looking to put TOS in the extended ram on the 530 but the risk reward decision says walk away not to mention the 530 was a questionable board at the time. Also disabling the glitter goes against my grain since I have it in all my machines an like the bump it gives me.

I just got the hp digital analyzer and the time available can be better spent coming up to speed on some of the analyzers extended capabilities in preparation for the H4's arrival. Once again thanks for your input. :)
terriblefire
Moderator Team
Moderator Team
Posts: 5368
Joined: Mon Aug 28, 2017 10:56 pm
Location: Glasgow, UK

Re: TF530 firmware used on Atari.

Post by terriblefire »

If you have the modified TF534 sources... type make in the boards folder. It will create TF530 firmwares.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
Post Reply

Return to “EVERYTHING ELSE”