English Amiga Board


Go Back   English Amiga Board > News

 
 
Thread Tools
Old 13 August 2013, 21:07   #61
Kin Hell
0ld0r Git
 
Kin Hell's Avatar
 
Join Date: Mar 2009
Location: Cornwall, UK
Posts: 1,600
Quote:
Originally Posted by Schoenfeld View Post
There is no DMA on my cards, and neither is there any DMA in the usual way on *any* PCI implementation of the Amiga. What they do is a DMA into PCI gfx card memory (which works great), and then polled-IO to transfer the data from GFX mem into Amiga memory. In essence, the DMA part on the PCI boards is a detour, because most PCI chipsets don't allow direct PIO.

X-Surf (both the 10MBit and 100MBit versions) are pure PIO designs, so in comparison to PCI cards, you skip one step in data transfer, which makes things faster. Remember the prime directive of optimization: The fastest operation is one that you don't execute. Network data doesn't belong in GFX memory.

There is only very few real DMA cards for the Amiga: GVP SCSI controllers, Fastlane (=4091) and Deneb.

I'm aiming at the "Subway" ballpark with the USB module price. You get two High-speed USB ports and a Poseidon license.

Jens
WOW! I wasn't aware there were so few DMA compliant cards for the Amiga & yes, Elbox PCI solutions do work quite well despite their DMA fudge/patch, which is where I kinda was with thinking most ZORRO cards were DMA compliant. Digressing, I guess the DMA compliant G-REX4000 ZORRO board blows the Elbox solution because of it's 64Bit memory addressing straight onto the CPU card rather than through the ZORRO III mobo wait-states.
However, with your pricing for the USB module, the Subway gives you 4 ports & an included Poseidon License so shouldn't your price reflect this having only 2 ports & Poseidon now being free? <--- Maybe I read wrong about Poseidon now being free.

Quote:
Originally Posted by fitzsteve View Post
@Jens, internal USB header would be great if possible on the UBS card for using internal Disk readers, etc
Again Jens, fitz does have a valid point here, especially based on your 2 port only pricing suggestion. - An internal one would offer a far better solution to house some USB device or other within the Amiga case & across many several Big Box Amiga's

Quote:
Originally Posted by hooverphonique View Post
so this polled-IO is some form of short DMA transfer (64bits?) of data from gfx memory to the pci busboard and then to the cpu via the zorro bus?
ZORRO III is only 32Bit, an upgrade from ZORROII which was 16Bit. Afaik, the only 64Bit operations in an Amiga is via either the CSMKIII or the CSPPC card, where the memory is in essence addressed via two 32Bit channels @ the same time, much like Dual Channel ram is in modern day PeeCees.
Some Graphics cards may also have 64Bit addressing via their RAM but please, please don't shoot me down on this. I am merely thinking this way with the way VRAM works & that is a can of worms I don't even want to try & understand. VRAM blows SDRAM....
Kin Hell is offline  
Old 14 August 2013, 10:43   #62
hooverphonique
ex. demoscener "Bigmama"
 
Join Date: Jun 2012
Location: Fyn / Denmark
Posts: 1,630
Quote:
Originally Posted by Kin Hell View Post
ZORRO III is only 32Bit, an upgrade from ZORROII which was 16Bit.
I know.. still, dma bursts wider than 32 bits would be possible from a pci card to the zorro-pci bridge on the busboard, which is what I was referring to
hooverphonique is offline  
Old 14 August 2013, 11:54   #63
Schoenfeld
electricky.
 
Join Date: Jun 2010
Location: out in the wild
Posts: 1,256
Quote:
Originally Posted by hooverphonique View Post
I know.. still, dma bursts wider than 32 bits would be possible from a pci card to the zorro-pci bridge on the busboard, which is what I was referring to
Not correct. A burst can only be as wide as the bus (32 bits), and as deep as the cache line (note that Motorola CPUs can only burst into/out of cache). Since networking is an IO thing that MUST NOT be cached, there are no bursts either.

That brings you back to square one: Pedal to the metal on PIO, otherwise you lose time. That's what the X-Surf-100 is doing.

Jens
Schoenfeld is offline  
Old 14 August 2013, 13:53   #64
DrBong
HOL / AMR Team Member
 
DrBong's Avatar
 
Join Date: Dec 2001
Location: Australia
Posts: 2,632
Quote:
Originally Posted by amigakit.com View Post
Thanks everyone!

We are working through the details for this new product- please watch this space.
Quote:
Originally Posted by lost_loven View Post
Just ordered from Amigakit!!!! WOOT! thx!
Same here. Thanks for the quick response to requests to stock the new X-Surf! Just need to figure out now what other items I need to add to my order......decisions, decisions!

Thanks also to you Jens for plugging a gaping hole in the Amiga enthusiast market yet again!!
DrBong is offline  
Old 14 August 2013, 17:48   #65
hooverphonique
ex. demoscener "Bigmama"
 
Join Date: Jun 2012
Location: Fyn / Denmark
Posts: 1,630
Quote:
Originally Posted by Schoenfeld View Post
Not correct. A burst can only be as wide as the bus (32 bits), and as deep as the cache line (note that Motorola CPUs can only burst into/out of cache). Since networking is an IO thing that MUST NOT be cached, there are no bursts either.
people are obviously not getting what I'm talking about

It's not about motorola caches or motorola cpu bursts.. If the pci chipset only supports dma, the only way to get data out of the ram of a pci gfxcard is to dma it into some local storage/register on the busboard from where the amiga can access it - these dma transfers may be of any size the manufacturer of the busboard decides, and has nothing to do with zorro bus width or anything else amiga-related..
hooverphonique is offline  
Old 14 August 2013, 19:15   #66
Schoenfeld
electricky.
 
Join Date: Jun 2010
Location: out in the wild
Posts: 1,256
Quote:
Originally Posted by hooverphonique View Post
these dma transfers may be of any size the manufacturer of the busboard decides, and has nothing to do with zorro bus width or anything else amiga-related..
True. However, no bus board has any memory, which is why the GFX card's memory serves as a temporary buffer for the networking card. The CPU then needs to poll the data from that memory (or vice versa; CPU places data into GFX memory and tells NIC to DMA things from that mem). That's the detour I wrote about earlier.

That polling may be as fast as the PIO transfer from/to the X-Surf-100, but since you have to wait for the DMA to be completed, you always have some additional time to wait. As a result, I am claiming to have built the fastest networking solution for the Amiga that has ever been made.

Jens
Schoenfeld is offline  
Old 14 August 2013, 19:39   #67
Kin Hell
0ld0r Git
 
Kin Hell's Avatar
 
Join Date: Mar 2009
Location: Cornwall, UK
Posts: 1,600
Quote:
Originally Posted by Schoenfeld View Post
....<snip>...

That polling may be as fast as the PIO transfer from/to the X-Surf-100, but since you have to wait for the DMA to be completed, you always have some additional time to wait. As a result, I am claiming to have built the fastest networking solution for the Amiga that has ever been made.

Jens
With the wait-states you refer to here, this would be why the G-Rex4000 would DMA into the Ram of the CSPPC or CSMKIII on it's backplane to CPU card connector & of course, give it a serious blistering speed.
From this & your explanation of the PIO transfer through the X-Surf100, how does it compare for speed/throughput with a G-Rex4000 setup using a Realtek based PCI NIC?
Kin Hell is offline  
Old 14 August 2013, 20:07   #68
hooverphonique
ex. demoscener "Bigmama"
 
Join Date: Jun 2012
Location: Fyn / Denmark
Posts: 1,630
Quote:
Originally Posted by Schoenfeld View Post
True. However, no bus board has any memory, which is why the GFX card's memory serves as a temporary buffer for the networking card. The CPU then needs to poll the data from that memory (or vice versa; CPU places data into GFX memory and tells NIC to DMA things from that mem). That's the detour I wrote about earlier.
Ahh.. ok.. well, obviously the gfxram is accessible through PIO then, and is an exception to the rule you stated that generally, pci chipsets only support dma.. all settled then and I shall stop polluting this thread any further with my technical ranting ;-)

thanks for clearing that..
hooverphonique is offline  
Old 15 August 2013, 03:30   #69
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
@Amigakit : is the pre ordering quota up? Just wondering how many were available for sale?
Just noticed on your web site just has stock expected date and no pre-order clicky button

lost
lost_loven is offline  
Old 15 August 2013, 09:07   #70
amigakit.com
Registered User
 
amigakit.com's Avatar
 
Join Date: Aug 2004
Location: www.amigakit.com
Posts: 2,029
Still can be preordered from us with a free EasyNet here:

http://amigakit.leamancomputing.com/...oducts_id=1156

Thank you
amigakit.com is offline  
Old 15 August 2013, 12:46   #71
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
awh. it changed again. Kool. For a second i thought wow that went fast

lost
lost_loven is offline  
Old 15 August 2013, 13:54   #72
wmsteele
Registered User
 
Join Date: Jul 2012
Location: Glasgow
Posts: 128
Just placed a perorder, noticed you've now got a picture of the card.
wmsteele is offline  
Old 15 August 2013, 13:55   #73
wmsteele
Registered User
 
Join Date: Jul 2012
Location: Glasgow
Posts: 128
Looks like the perorder quota is up again, the prorder button has gone, just got my order in time then
wmsteele is offline  
Old 15 August 2013, 21:53   #74
Kin Hell
0ld0r Git
 
Kin Hell's Avatar
 
Join Date: Mar 2009
Location: Cornwall, UK
Posts: 1,600
Quote:
Originally Posted by Schoenfeld View Post
....<snip>...

That polling may be as fast as the PIO transfer from/to the X-Surf-100, but since you have to wait for the DMA to be completed, you always have some additional time to wait. As a result, I am claiming to have built the fastest networking solution for the Amiga that has ever been made.

Jens
Quote:
Originally Posted by Kin Hell View Post
With the wait-states you refer to here, this would be why the G-Rex4000 would DMA into the Ram of the CSPPC or CSMKIII on it's backplane to CPU card connector & of course, give it a serious blistering speed.
From this & your explanation of the PIO transfer through the X-Surf100, how does it compare for speed/throughput with a G-Rex4000 setup using a Realtek based PCI NIC?
....cough....

Er, not really wanting to quote myself, but....?

And also, what of the internal USB facility considering Internal functionality as valued by fitzsteve & myself (possibly others), with the the value (bang per buck) & Poseidon now being free?
Kin Hell is offline  
Old 15 August 2013, 23:02   #75
amigakit.com
Registered User
 
amigakit.com's Avatar
 
Join Date: Aug 2004
Location: www.amigakit.com
Posts: 2,029
@wmsteele @lost_loven @DrBong

Thanks for the orders!

Still can be preordered from us with a free EasyNet here:

http://amigakit.leamancomputing.com/...oducts_id=1156

Thank you
amigakit.com is offline  
Old 15 August 2013, 23:59   #76
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
Looked at subway and 133 cdn gets you integrated 4x port hub ,highspeed clockport for fast data transfers, 2 x holding plates with two USB connectors each and disk with drivers on it for keyboards mouse and what ever else.. I would hope if the module for the x-surf 100 is just to enable the back ports and comes with Poseidon/drivers then it should be half the price one would hope. Either which way one would still have to get it for enabling the usb and thats what one has to do.

a look at subway : http://amigakit.leamancomputing.com/...roducts_id=137

When this is all said and done my wife is gonna kill me for the money i am spending lol
oh and Amigakit you are welcome.. I will toss some more money your way soon!!!!!

lost
lost_loven is offline  
Old 16 August 2013, 09:47   #77
Schoenfeld
electricky.
 
Join Date: Jun 2010
Location: out in the wild
Posts: 1,256
Quote:
Originally Posted by lost_loven View Post
Looked at subway and 133 cdn gets you integrated 4x port hub ,highspeed clockport for fast data transfers, 2 x holding plates with two USB connectors each and disk with drivers on it for keyboards mouse and what ever else..
On Subway, literally nothing is high-speed. The clockport is the slowest port that has ever existed for the Amiga (about the speed of the C64 bus), and the USB ports are full-speed, meaning 12MBit.

The USB module I'm working on is a high-speed USB module, meaning 480MBit per port, which you won't be able to saturate even with the highest-speed CPU accelerators. If you care about the number of USB ports, get a 10-dollar-USB hub from the PC store round the corner.

Also, Poseidon isn't exactly free. Commercial products require a license, and I have purchased that. In turn, it must be paid with the commercial product that is Poseidon-powered.

Quote:
Originally Posted by lost_loven View Post
I would hope if the module for the x-surf 100 is just to enable the back ports and comes with Poseidon/drivers then it should be half the price one would hope.
If your hopes had a foundation, I'd buy a couple of hundred units and shelve my developoment.

Jens
Schoenfeld is offline  
Old 22 August 2013, 02:15   #78
Retrofan
Ruler of the Universe
 
Retrofan's Avatar
 
Join Date: Mar 2010
Location: Lanzarote/Spain
Posts: 6,195
Sorry but I've got an offtopic simple question, and I don't know where to post it:

Can be improved the internet speed rate on a desktop A1200 making some new hardware?
Retrofan is offline  
Old 22 August 2013, 08:07   #79
NovaCoder
Registered User
 
NovaCoder's Avatar
 
Join Date: Sep 2007
Location: Melbourne/Australia
Posts: 4,405
Quote:
Originally Posted by Retrofan View Post
Sorry but I've got an offtopic simple question, and I don't know where to post it:

Can be improved the internet speed rate on a desktop A1200 making some new hardware?
I think the best you could hope for is some kind of enhanced clock-port added to a new processor board.
NovaCoder is offline  
Old 30 August 2013, 21:27   #80
Schoenfeld
electricky.
 
Join Date: Jun 2010
Location: out in the wild
Posts: 1,256
All X-Surf-100 pre-orders have been shipped to resellers today. I will add the list of resellers to the Wiki article sometime during the weekend. Note that some resellers did not take part in financing the X-Surf-100 production, so not all resellers will carry this card.

Jens
Schoenfeld 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
For Sale: X-Surf, Z-IV Board, Spectrum GFX Card & more -Acid- MarketPlace 1 09 February 2013 22:54
Genesis on OS 3.9 and a X-Surf 3cc network card on the A3000 ceaser support.Hardware 5 15 March 2011 18:50
Opinion of the X-Surf 3 card? rjm support.Hardware 17 24 July 2009 14:07
Retail News / Sales : Wireless PCMCIA Networking Card from AmigaKit.com Paul News 7 17 December 2007 05:51
X-Surf 3cc Zorro Network Card amigakit.com MarketPlace 2 28 October 2007 11:16

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 06:09.

Top

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