* writing driver for MOTU PCI 324, 2408 MK-II
@ 2005-05-08 16:14 Forest Bond
2005-05-09 9:39 ` Clemens Ladisch
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Forest Bond @ 2005-05-08 16:14 UTC (permalink / raw)
To: alsa-devel
Hello all,
I'm new to the list. Joined up because I've decided I want to write a
driver for the Mark of the Unicorn PCI-324 PCI card. This card allows a
variety of MOTU external interfaces to be used. I own a MOTU 2408 MK
II, an 8 channel interface. This (and similar interfaces from MOTU) are
common in the pro audio world.
I have emailed MOTU tech support, but have not gotten a response. I
have a feeling this will be the case in the future, as well. MOTU has
strong ties with Apple.
I've searched the list archive, and, from what I can see, noone has
begun work on a driver for these interfaces. It may not be feasible,
given the lack of technical information available (yeah, yeah, I know,
welcome to the wonderful world of linux driver development). If,
however, anyone is aware of an attempt to write a driver, please let me
know. Also, if anyone is interested in pitching in, send me an email.
I have limited experience writing drivers (well, next to none,
actually), but I'm gonna give it a shot anyway.
Couple of questions:
Can released ASIO drivers be used to gather technical information on the
hardware?
Are there any good techniques for probing the hardware and discovering
necessary technical info?
Any help would be appreciated.
Thanks!
Forest
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2005-05-08 16:14 writing driver for MOTU PCI 324, 2408 MK-II Forest Bond
@ 2005-05-09 9:39 ` Clemens Ladisch
2005-05-09 9:49 ` Eckhard Jokisch
2005-05-09 10:53 ` Martin Langer
2016-03-25 15:12 ` Jef
2 siblings, 1 reply; 7+ messages in thread
From: Clemens Ladisch @ 2005-05-09 9:39 UTC (permalink / raw)
To: Forest Bond; +Cc: alsa-devel
Forest Bond wrote:
> I've decided I want to write a driver for the Mark of the Unicorn
> PCI-324 PCI card.
>
> I have emailed MOTU tech support, but have not gotten a response. I
> have a feeling this will be the case in the future, as well.
IIRC somebody reported that at a NAMM, a MOTU representative said that
MOTU wouldn't support Linux, wouldn't give out technical information,
and doesn't want any third party to write Linux drivers.
> Can released ASIO drivers be used to gather technical information on the
> hardware?
Yes. Reverse engineering is perfectly legal in this case.
> Are there any good techniques for probing the hardware and discovering
> necessary technical info?
The only good technique is reading the technical documentation,
preferrably with the source code of the driver to see where the doc is
wrong.
If that isn't possible, you can run a disassembler on the driver and
then try to find out what it does. Good luck.
HTH
Clemens
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2005-05-09 9:39 ` Clemens Ladisch
@ 2005-05-09 9:49 ` Eckhard Jokisch
2005-05-09 11:40 ` Clemens Ladisch
0 siblings, 1 reply; 7+ messages in thread
From: Eckhard Jokisch @ 2005-05-09 9:49 UTC (permalink / raw)
To: clemens; +Cc: f_a_b, alsa-devel
> Forest Bond wrote:
>
>> Can released ASIO drivers be used to gather technical information on
>> the hardware?
>
> Yes. Reverse engineering is perfectly legal in this case.
AFAIK - (having an 986HD) they encrypt the datastream somehow. But that
should also be possible to "guess" if using same digitized signals several
times.What about a wrapper around the original drivers like they do with
ndiswrapper. Would that be an option?
Cheers
Eckhard
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2005-05-08 16:14 writing driver for MOTU PCI 324, 2408 MK-II Forest Bond
2005-05-09 9:39 ` Clemens Ladisch
@ 2005-05-09 10:53 ` Martin Langer
2016-03-25 15:12 ` Jef
2 siblings, 0 replies; 7+ messages in thread
From: Martin Langer @ 2005-05-09 10:53 UTC (permalink / raw)
To: Forest Bond; +Cc: alsa-devel
On Sun, May 08, 2005 at 12:14:25PM -0400, Forest Bond wrote:
>
> Are there any good techniques for probing the hardware and discovering
> necessary technical info?
Qemu with the PCI-Proxy patch from Gianni Tedesco seems to be really
intersting for reverse engineering, but I've never used it until now...
http://www.scaramanga.co.uk/stuff/qemu-pciproxy/
martin
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2005-05-09 9:49 ` Eckhard Jokisch
@ 2005-05-09 11:40 ` Clemens Ladisch
0 siblings, 0 replies; 7+ messages in thread
From: Clemens Ladisch @ 2005-05-09 11:40 UTC (permalink / raw)
To: Eckhard Jokisch; +Cc: f_a_b, alsa-devel
Eckhard Jokisch wrote:
> > Forest Bond wrote:
> >> Can released ASIO drivers be used to gather technical information on
> >> the hardware?
> >
> > Yes. Reverse engineering is perfectly legal in this case.
>
> AFAIK - (having an 986HD) they encrypt the datastream somehow.
> But that should also be possible to "guess" if using same
> digitized signals several times.
Or just reverse engineer the algorithm based on the driver; this is
still legal.
> What about a wrapper around the original drivers like they do with
> ndiswrapper. Would that be an option?
It would be possible in theory. Thank you for volunteering to
implement it. ;-)
Regards,
Clemens
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2005-05-08 16:14 writing driver for MOTU PCI 324, 2408 MK-II Forest Bond
2005-05-09 9:39 ` Clemens Ladisch
2005-05-09 10:53 ` Martin Langer
@ 2016-03-25 15:12 ` Jef
2016-03-28 19:39 ` Jef
2 siblings, 1 reply; 7+ messages in thread
From: Jef @ 2016-03-25 15:12 UTC (permalink / raw)
To: alsa-devel
Forest Bond <f_a_b <at> softhome.net> writes:
>
> Hello all,
>
> I'm new to the list. Joined up because I've decided I want to write a
> driver for the Mark of the Unicorn PCI-324 PCI card. This card allows a
> variety of MOTU external interfaces to be used. I own a MOTU 2408 MK
> II, an 8 channel interface. This (and similar interfaces from MOTU) are
> common in the pro audio world.
>
> I have emailed MOTU tech support, but have not gotten a response. I
> have a feeling this will be the case in the future, as well. MOTU has
> strong ties with Apple.
>
> I've searched the list archive, and, from what I can see, noone has
> begun work on a driver for these interfaces. It may not be feasible,
> given the lack of technical information available (yeah, yeah, I know,
> welcome to the wonderful world of linux driver development). If,
> however, anyone is aware of an attempt to write a driver, please let me
> know. Also, if anyone is interested in pitching in, send me an email.
>
> I have limited experience writing drivers (well, next to none,
> actually), but I'm gonna give it a shot anyway.
>
> Couple of questions:
>
> Can released ASIO drivers be used to gather technical information on the
> hardware?
>
> Are there any good techniques for probing the hardware and discovering
> necessary technical info?
>
> Any help would be appreciated.
>
> Thanks!
> Forest
>
Hello!
I know this is an old post, but I was hoping that the sentiment was still
alive and strong. I have recently made the transition to Linux as my primary
OS, and I, too, am looking to move my audio gear along as well. Has there
been any progress on the PCI-324 linux driver development front? Is there an
active project in the works, or has this idea been abandoned?
Cheers! And thank you.
Jef
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: writing driver for MOTU PCI 324, 2408 MK-II
2016-03-25 15:12 ` Jef
@ 2016-03-28 19:39 ` Jef
0 siblings, 0 replies; 7+ messages in thread
From: Jef @ 2016-03-28 19:39 UTC (permalink / raw)
To: alsa-devel
Forest Bond <f_a_b <at> softhome.net> writes:
> I Joined up because I've decided I want to write a
> driver for the Mark of the Unicorn PCI-324 PCI card.
Hello!
I know this is an old thread, but I was hoping that the sentiment was still
alive and strong. I have recently made the transition to Linux as my primary
OS, and I, too, am looking to move my MOTU PCI audio gear along as well. Has
there been any progress on the PCI-324 linux driver development front? Is
there an active project in the works, or has this idea been abandoned?
While I'd hate to have to replace all of my digital gear, I know
historically MOTU has been blatantly hostile towards any support of Linux.
So, as sad as it might be, I would understand if this project got dropped.
But I thought it worth a try if for no other reason than to demonstrate a
sustained interest.
Incidentally, I apologize for posting this again, but my previous post
looked to be quite a mess, so I thought I'd clean it up a bit. Cheers! And
thank you.
Jef
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-03-28 19:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-08 16:14 writing driver for MOTU PCI 324, 2408 MK-II Forest Bond
2005-05-09 9:39 ` Clemens Ladisch
2005-05-09 9:49 ` Eckhard Jokisch
2005-05-09 11:40 ` Clemens Ladisch
2005-05-09 10:53 ` Martin Langer
2016-03-25 15:12 ` Jef
2016-03-28 19:39 ` Jef
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.