English Amiga Board


Go Back   English Amiga Board > Support > support.Hardware > Hardware mods

 
 
Thread Tools
Old 05 May 2022, 07:14   #181
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by TymoDEV View Post
Great job. Looks very nice on the new accelerator card. I am considering to buy it. I already knew the simple turbo x2 system before.
Is it possible to work with 68HC000FN20 at turbo x4 [28 MHZ]?
I am dreamming about turbo x4 version. If it would be possible?
There is this one: http://irixlabs.com/hc508
and this one: https://amigastore.eu/597-wicher-508i-accelerator.html
and this one for A500 available as open source https://github.com/PR77/A500_ACCEL_RAM_IDE-Rev-2

Plenty of options available and all much better than my design. The only real attraction of my design is that it uses no programmable logic or any other exotic components making it a nice DIY project. It also uses sort of "period correct" components making it look like this could have been designed in the late 80's.
Mathesar is offline  
Old 06 May 2022, 18:50   #182
TymoDEV
Registered User
 
TymoDEV's Avatar
 
Join Date: Feb 2021
Location: Katowice
Posts: 26
Can you make a correction to x4 in your design by changing the turbo PLL 4046 system to another one?

Quote:
The only real attraction of my design is that it uses no programmable logic or any other exotic components making it a nice DIY project. It also uses sort of "period correct" components making it look like this could have been designed in the late 80's
That's why I prefer this design to modern-looking

Last edited by TymoDEV; 11 May 2022 at 12:44.
TymoDEV is offline  
Old 26 May 2022, 10:00   #183
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
The SE edition

I have designed a new version of the 14MHz accelerator, the "SE" edition.
SE stands for "sidecar edition", "special edition", "snail edition" or whatever you like to call it.

The big new feature is that it should now support DMA so that SCSI sidecars like the A590 are supported. It also gets rid of the fast RAM to reduce cost and because it proved to be a bit useless anyway if one has additional fast RAM installed like in an A590. And finally the new design uses a DIP64 68000 CPU so one can try to overclock the original CPU to reduce costs even further. The whole design uses only 5 standard "old school" logic chips and should accelerate an A500 by about 60% if there is fast RAM installed. I will release it as open source once I have built and tested it.

Anyway, since I just finished routing this board I wanted to share this little preview:
Click image for larger version

Name:	14MHz_SE_preview.png
Views:	179
Size:	33.3 KB
ID:	75666
Mathesar is offline  
Old 26 May 2022, 15:48   #184
breech
Registered User
 
breech's Avatar
 
Join Date: Sep 2009
Location: Syd
Posts: 184
Quote:
Originally Posted by Mathesar View Post
I have designed a new version of the 14MHz accelerator, the "SE" edition.
Great stuff, this will be perfect for my a590. It will probably work with the a2091 too.
breech is offline  
Old 26 May 2022, 16:57   #185
nikosidis
Registered User
 
Join Date: Jan 2020
Location: oslo/norway
Posts: 1,607
Cool Thanks.
nikosidis is offline  
Old 08 August 2022, 06:44   #186
erikarn
Registered User
 
Join Date: Aug 2022
Location: Oakland, California, USA
Posts: 17
Quote:
Originally Posted by Mathesar View Post
I have designed a new version of the 14MHz accelerator, the "SE" edition.
SE stands for "sidecar edition", "special edition", "snail edition" or whatever you like to call it.

The big new feature is that it should now support DMA so that SCSI sidecars like the A590 are supported. It also gets rid of the fast RAM to reduce cost and because it proved to be a bit useless anyway if one has additional fast RAM installed like in an A590.

Aww! I was just about to ask how you fixed DMA. :-)

I'd like to try and bring up the 14MHz accelerator but with local RAM and fixed DMA hacks, which if I read the schematic right, is running at 14MHz and not locked at 7MHz.

Last edited by erikarn; 08 August 2022 at 19:51. Reason: I woke up and re-checked things. :-)
erikarn is offline  
Old 09 August 2022, 20:02   #187
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by erikarn View Post
Aww! I was just about to ask how you fixed DMA. :-)

I'd like to try and bring up the 14MHz accelerator but with local RAM and fixed DMA hacks, which if I read the schematic right, is running at 14MHz and not locked at 7MHz.
Yes, I fixed the DMA (I think... as it is untested). What i basically did is add tristate support to the _AS signal using a 4066. However, there is no local RAM support anymore. I am currently on vacation but I can give you all the schematics when I get home. You are right that the local ram runs at 14Mhz instead of 7Mhz. However, it could still be made DMA-able. Firstly you need to feed the 7MHz _AS into the RAM controller. If you read back in this thread you'll see what I mean. Secondly the RAM needs to be moved to another address somewhere in ZII space to avoid interference with gary decoding the C00000 address. This could be done using just some rewiring of the address decoder, no extra components needed. The RAM then needs to be added via addmem during bootup. However, this means that some early stuff will end up in the slower fast mem on the A590. You'd still see a speed improvement though.

But, this is all untested. I am currently spendig my hobby time on a bitbanging SPI interface for the A500 to support SD cards and a network device. The prototype is working (see here http://eab.abime.net/showpost.php?p=...3&postcount=13 ). You can try however
Mathesar is offline  
Old 10 August 2022, 02:06   #188
erikarn
Registered User
 
Join Date: Aug 2022
Location: Oakland, California, USA
Posts: 17
Quote:
Originally Posted by Mathesar View Post
Yes, I fixed the DMA (I think... as it is untested). What i basically did is add tristate support to the _AS signal using a 4066. However, there is no local RAM support anymore. I am currently on vacation but I can give you all the schematics when I get home. You are right that the local ram runs at 14Mhz instead of 7Mhz. However, it could still be made DMA-able. Firstly you need to feed the 7MHz _AS into the RAM controller. If you read back in this thread you'll see what I mean. Secondly the RAM needs to be moved to another address somewhere in ZII space to avoid interference with gary decoding the C00000 address. This could be done using just some rewiring of the address decoder, no extra components needed. The RAM then needs to be added via addmem during bootup. However, this means that some early stuff will end up in the slower fast mem on the A590. You'd still see a speed improvement though.
Yeah, that's kinda what I thought. I've bought the bits to populate the accelerator i have here with RAM and I'll get that going, and then I'll try to hack in the DMA support and test it.

Thanks! Lmk when you're back and have schematics to share!
erikarn is offline  
Old 10 August 2022, 12:19   #189
Cego
Registered User
 
Cego's Avatar
 
Join Date: Dec 2015
Location: Germany
Posts: 163
@Mathesar

i am planning on using this accelerator in an A1000. Currently I have installed a Ram/IDE68k, which gives me an IDE interface + 8MB of FastRAM (beginning at 00200000)
Can you tell me if its possible to put your accelerator on top of my existing expansion?

Thanks!
Cego is offline  
Old 10 August 2022, 18:06   #190
nikosidis
Registered User
 
Join Date: Jan 2020
Location: oslo/norway
Posts: 1,607
What is nice with the old design is that you can use the expansion memory as chip memory with a quite easy mod.
I understand that the new design will be very cheap but also a bit slower.
With the old design it is also possible to disable fast RAM and run stock speed.
Anyway, good to have alternatives as this design will give other possibilities regarding HDD etc.
nikosidis is offline  
Old 10 August 2022, 20:19   #191
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by Cego View Post
@Mathesar

i am planning on using this accelerator in an A1000. Currently I have installed a Ram/IDE68k, which gives me an IDE interface + 8MB of FastRAM (beginning at 00200000)
Can you tell me if its possible to put your accelerator on top of my existing expansion?

Thanks!
As long as you have no DMA enabled devices in your system (SCSI cards) I see no reason it would not work.

However it has never been tested with that card and I have heard some reports it doesn't work with some similar IDE controllers. Why I don't know, probably some timing issue. On my system it works with the new SPI controller I'm working on and Mika's diy IDE controller.
Mathesar is offline  
Old 10 August 2022, 22:15   #192
Cego
Registered User
 
Cego's Avatar
 
Join Date: Dec 2015
Location: Germany
Posts: 163
Thanks for the answer. Is there an estimated release date?
Cego is offline  
Old 11 August 2022, 20:31   #193
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by Cego View Post
Thanks for the answer. Is there an estimated release date?
You could use the current version with or without the 1MB "ranger" RAM populated. That is a tested design. The new design would add nothing in your setup apart as you do not seem to have any DMA devices on the bus. As I have too many projects on my plate I won't have time in the near future to test the SE version but I will try to make some time after my vacation to upload it to github.
Mathesar is offline  
Old 17 August 2022, 20:27   #194
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by Cego View Post
Thanks for the answer. Is there an estimated release date?
https://github.com/Mathesar/14mhz-accelerator-SE

Note: All untested at this point!
Mathesar is offline  
Old 22 August 2022, 07:03   #195
erikarn
Registered User
 
Join Date: Aug 2022
Location: Oakland, California, USA
Posts: 17
ok, so now that I have a mostly working amiga 2000 here with a GVP SCSI card, guess I can test out DMA. :-)

So, once I get the CPU extender riser I'll do this:

> You're right. the problem is that ~AS7 is not tristated as it is driven from the HCT74.
> If you are feeling experimental, this is what you could do:
> implement a pseudo-tristate by making ~AS7 an open-collecter output. Lift pin 6 of U5 and then solder a schottky diode (BAT85 or something similar) from pin 6 to ~AS on the host
> connector. The diode arrow must point to pin 6 (kathode on pin6, anode to ~as to host connector). It is not pretty but this way the GVP should be able to drive ~AS as well.
> With above mode, DMA should work with the fast $C00000 RAM disabled. To also make the $C00000 ram work do the next mod as well:
> lift pin 10 of U8 and solder a jumper wire from pin 10 to ~as on the host connector. This will make the onboard reachable from the GVP.

* Try your 4066/02 logic to tri-state /AS_7, I'll go build that on a little breadboard. Should U5A pin 6 (/Q) still feed U4A pin 3, on its way to control /DTACK_14 ? It looks like I should leave that all hooked up. (I'll likely just go cut the /AS_7 track to the plug header and run a wire...)
* lift pin 10 of U8 (That's going to VCC) and wire it to /AS_7 ? That'll either be driven by the 14MHz 68000, or if a bus dma grant is requested, when the bus master asserts /AS ?

Thanks!


-a
erikarn is offline  
Old 27 August 2022, 20:23   #196
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by erikarn View Post
* Try your 4066/02 logic to tri-state /AS_7, I'll go build that on a little breadboard. Should U5A pin 6 (/Q) still feed U4A pin 3, on its way to control /DTACK_14 ? It looks like I should leave that all hooked up. (I'll likely just go cut the /AS_7 track to the plug header and run a wire...)
Yes, U5A pin 6 should still go to U5B pin 13. So it is indeed best to cut /AS7 at the plug header.

Quote:
* lift pin 10 of U8 (That's going to VCC) and wire it to /AS_7 ? That'll either be driven by the 14MHz 68000, or if a bus dma grant is requested, when the bus master asserts /AS ?
Yes indeed! That's the plan!
Mathesar is offline  
Old 04 September 2022, 04:45   #197
erikarn
Registered User
 
Join Date: Aug 2022
Location: Oakland, California, USA
Posts: 17
Quote:
Originally Posted by Mathesar View Post
Yes, U5A pin 6 should still go to U5B pin 13. So it is indeed best to cut /AS7 at the plug header.

Yes indeed! That's the plan!
ok, so:

* amiga 500 - everything is a-ok
* amiga 2000 w/ 2.04 roms - yellow w/ the RAM jumpers on the board, and magenta without them.

it's installed in the CPU accelerator slot with the boss jumper set on this adapter board.

Any suggestions on what info I should go gather? I do have a logic analyser here somewhere..
erikarn is offline  
Old 09 September 2022, 20:16   #198
nikosidis
Registered User
 
Join Date: Jan 2020
Location: oslo/norway
Posts: 1,607
Mathesar: Here is your accelerator

[ Show youtube player ]
nikosidis is offline  
Old 10 September 2022, 08:41   #199
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by nikosidis View Post
Mathesar: Here is your accelerator

[ Show youtube player ]
I brought my A500 to a local retro computerclub some time ago with the accelerator installed. It was running the free demo of Dread. While I was chatting with someone two guys started playing Dread and commented to each other how smooth it runs a bog standard A500. I didn't ruin it for them...
Mathesar is offline  
Old 10 September 2022, 08:50   #200
Mathesar
Registered User
 
Mathesar's Avatar
 
Join Date: Aug 2014
Location: Netherlands
Posts: 695
Quote:
Originally Posted by erikarn View Post
ok, so:

* amiga 500 - everything is a-ok
* amiga 2000 w/ 2.04 roms - yellow w/ the RAM jumpers on the board, and magenta without them.

it's installed in the CPU accelerator slot with the boss jumper set on this adapter board.

Any suggestions on what info I should go gather? I do have a logic analyser here somewhere..
I never tested in an A2000 and I don't know the adapter board. What I can remember though when making it work on the A500 is that the CIA timing was the most critical. So maybe that is something to check first. Also, I would suggest booting from Chucky's Diagrom. The fact that you get a yellow or magenta screen means that at least the CPU is doing something!
Mathesar is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
68000 Alien Vs Predator Jaguar Source code redblade Coders. Asm / Hardware 31 14 July 2022 20:18
14Mhz Accelerator Kai Hardware mods 145 27 July 2021 11:11
Open Source A500 accelerator cooking nicely Pat the Cat News 23 02 January 2017 01:39
AGA on 14mhz 68000 little request.UAE Wishlist 6 03 May 2012 23:09
A2620 Accelerator Card 12mhz instead of 14mhz. Problem? kjmann14 support.Hardware 1 19 May 2011 00:35

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 19:49.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.16283 seconds with 14 queries