* Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
[not found] ` <200505020124.16569.beppe.miletto@tiscali.it>
@ 2005-05-01 23:30 ` Lee Revell
2005-05-02 0:07 ` Lee Revell
2005-05-03 3:31 ` Lee Revell
0 siblings, 2 replies; 7+ messages in thread
From: Lee Revell @ 2005-05-01 23:30 UTC (permalink / raw)
To: Giuseppe Miletto; +Cc: James Courtier-Dutton, alsa-devel
On Mon, 2005-05-02 at 01:24 +0200, Giuseppe Miletto wrote:
> Alle 02:41, domenica 1 maggio 2005, hai scritto:
> > On Sun, 2005-05-01 at 02:31 +0200, Giuseppe Miletto wrote:
> > > I've already bought a EMU-1212 and I've doing very good job with windows
> > > operating system. This has been a forced choice: trying to use EMU-1212
> > > with my suse 9.2 linux system I haven't been able to go over the use of
> > > MIDI port of my EMU-1212.
> > > Since I'm still an entusiastic of linux, I'll be very gratefull if some
> > > linux driver allow me to work with my EMU-1212 under this system: the
> > > only use of windows I'm doing now is for sound and music.And EMU-1212 is
> > > really a great soundcard.
> >
> > Can you provide the "lspci -vn" output? It's possible that some
> > functionality will work if the driver just treats the card like an APS
> > (that is, an emu10k1 with no AC97).
> >
> > Lee
>
> Hereby is what you asked for.
> Thanks in advance
> BYE
>
James, here's the entry for the 1212m:
0000:02:0a.0 Class 0401: 1102:0004 (rev 03)
Subsystem: 1102:4001
Flags: bus master, medium devsel, latency 32, IRQ 5
I/O ports at 9000
Capabilities: [dc] Power Management version 2
Let's add this to the driver & see what happens. I'll try to get a
patch together, feel free to post one if you get a chance before I do.
Lee
-------------------------------------------------------
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: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-01 23:30 ` [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers Lee Revell
@ 2005-05-02 0:07 ` Lee Revell
2005-05-02 1:22 ` James Courtier-Dutton
2005-05-03 3:31 ` Lee Revell
1 sibling, 1 reply; 7+ messages in thread
From: Lee Revell @ 2005-05-02 0:07 UTC (permalink / raw)
To: Giuseppe Miletto; +Cc: James Courtier-Dutton, alsa-devel
On Sun, 2005-05-01 at 19:30 -0400, Lee Revell wrote:
> On Mon, 2005-05-02 at 01:24 +0200, Giuseppe Miletto wrote:
> > Alle 02:41, domenica 1 maggio 2005, hai scritto:
> > > On Sun, 2005-05-01 at 02:31 +0200, Giuseppe Miletto wrote:
> > > > I've already bought a EMU-1212 and I've doing very good job with windows
> > > > operating system. This has been a forced choice: trying to use EMU-1212
> > > > with my suse 9.2 linux system I haven't been able to go over the use of
> > > > MIDI port of my EMU-1212.
> > > > Since I'm still an entusiastic of linux, I'll be very gratefull if some
> > > > linux driver allow me to work with my EMU-1212 under this system: the
> > > > only use of windows I'm doing now is for sound and music.And EMU-1212 is
> > > > really a great soundcard.
> > >
> > > Can you provide the "lspci -vn" output? It's possible that some
> > > functionality will work if the driver just treats the card like an APS
> > > (that is, an emu10k1 with no AC97).
> > >
> > > Lee
> >
> > Hereby is what you asked for.
> > Thanks in advance
> > BYE
> >
>
> James, here's the entry for the 1212m:
>
> 0000:02:0a.0 Class 0401: 1102:0004 (rev 03)
> Subsystem: 1102:4001
> Flags: bus master, medium devsel, latency 32, IRQ 5
> I/O ports at 9000
> Capabilities: [dc] Power Management version 2
>
> Let's add this to the driver & see what happens. I'll try to get a
> patch together, feel free to post one if you get a chance before I do.
>
Please try this patch against ALSA CVS. It should cause the emu10k1
driver to claim this device.
I have no idea what will happen, it could work, or lock up your machine.
Lee
Index: alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c,v
retrieving revision 1.55
diff -u -r1.55 emu10k1_main.c
--- alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 10 Apr 2005 14:43:35 -0000 1.55
+++ alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 2 May 2005 00:06:38 -0000
@@ -700,6 +700,10 @@
.emu10k2_chip = 1,
.ca0102_chip = 1,
.ac97_chip = 1} ,
+ {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
+ .driver = "EMU10K1", .name = "E-mu 1212m [4001]",
+ .id = "1212m",
+ .emu10k1_chip = 1} ,
{.vendor = 0x1102, .device = 0x0004,
.driver = "Audigy", .name = "Audigy 1 [Unknown]",
.id = "Audigy",
-------------------------------------------------------
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: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-02 1:22 ` James Courtier-Dutton
@ 2005-05-02 0:33 ` Lee Revell
2005-05-03 21:34 ` Giuseppe Miletto
1 sibling, 0 replies; 7+ messages in thread
From: Lee Revell @ 2005-05-02 0:33 UTC (permalink / raw)
To: James Courtier-Dutton; +Cc: Giuseppe Miletto, alsa-devel
On Mon, 2005-05-02 at 02:22 +0100, James Courtier-Dutton wrote:
> Yes, well, that's really going to work isn't it!!!
> > + .emu10k1_chip = 1} ,
>
> Me thinks ".emu10k2_chip = 1}, " would be more like it. :-)
>
Thanks. Can you tell I just copied and pasted the APS entry? ;-)
Lee
-------------------------------------------------------
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: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-02 0:07 ` Lee Revell
@ 2005-05-02 1:22 ` James Courtier-Dutton
2005-05-02 0:33 ` Lee Revell
2005-05-03 21:34 ` Giuseppe Miletto
0 siblings, 2 replies; 7+ messages in thread
From: James Courtier-Dutton @ 2005-05-02 1:22 UTC (permalink / raw)
To: Lee Revell; +Cc: Giuseppe Miletto, alsa-devel
Lee Revell wrote:
> On Sun, 2005-05-01 at 19:30 -0400, Lee Revell wrote:
>
>>On Mon, 2005-05-02 at 01:24 +0200, Giuseppe Miletto wrote:
>>
>>>Alle 02:41, domenica 1 maggio 2005, hai scritto:
>>>
>>>>On Sun, 2005-05-01 at 02:31 +0200, Giuseppe Miletto wrote:
>>>>
>>>>>I've already bought a EMU-1212 and I've doing very good job with windows
>>>>>operating system. This has been a forced choice: trying to use EMU-1212
>>>>>with my suse 9.2 linux system I haven't been able to go over the use of
>>>>>MIDI port of my EMU-1212.
>>>>>Since I'm still an entusiastic of linux, I'll be very gratefull if some
>>>>>linux driver allow me to work with my EMU-1212 under this system: the
>>>>>only use of windows I'm doing now is for sound and music.And EMU-1212 is
>>>>>really a great soundcard.
>>>>
>>>>Can you provide the "lspci -vn" output? It's possible that some
>>>>functionality will work if the driver just treats the card like an APS
>>>>(that is, an emu10k1 with no AC97).
>>>>
>>>>Lee
>>>
>>>Hereby is what you asked for.
>>>Thanks in advance
>>>BYE
>>>
>>
>>James, here's the entry for the 1212m:
>>
>>0000:02:0a.0 Class 0401: 1102:0004 (rev 03)
>> Subsystem: 1102:4001
>> Flags: bus master, medium devsel, latency 32, IRQ 5
>> I/O ports at 9000
>> Capabilities: [dc] Power Management version 2
>>
>>Let's add this to the driver & see what happens. I'll try to get a
>>patch together, feel free to post one if you get a chance before I do.
>>
>
>
> Please try this patch against ALSA CVS. It should cause the emu10k1
> driver to claim this device.
>
> I have no idea what will happen, it could work, or lock up your machine.
>
> Lee
>
> Index: alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c
> ===================================================================
> RCS file: /cvsroot/alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c,v
> retrieving revision 1.55
> diff -u -r1.55 emu10k1_main.c
> --- alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 10 Apr 2005 14:43:35 -0000 1.55
> +++ alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 2 May 2005 00:06:38 -0000
> @@ -700,6 +700,10 @@
> .emu10k2_chip = 1,
> .ca0102_chip = 1,
> .ac97_chip = 1} ,
> + {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
> + .driver = "EMU10K1", .name = "E-mu 1212m [4001]",
> + .id = "1212m",
> + .emu10k1_chip = 1} ,
> {.vendor = 0x1102, .device = 0x0004,
> .driver = "Audigy", .name = "Audigy 1 [Unknown]",
> .id = "Audigy",
>
>
>
>
Yes, well, that's really going to work isn't it!!!
> + .emu10k1_chip = 1} ,
Me thinks ".emu10k2_chip = 1}, " would be more like it. :-)
-------------------------------------------------------
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: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-01 23:30 ` [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers Lee Revell
2005-05-02 0:07 ` Lee Revell
@ 2005-05-03 3:31 ` Lee Revell
1 sibling, 0 replies; 7+ messages in thread
From: Lee Revell @ 2005-05-03 3:31 UTC (permalink / raw)
To: alsa-devel; +Cc: James Courtier-Dutton
On Sun, 2005-05-01 at 19:30 -0400, Lee Revell wrote:
> On Mon, 2005-05-02 at 01:24 +0200, Giuseppe Miletto wrote:
> James, here's the entry for the 1212m:
>
> 0000:02:0a.0 Class 0401: 1102:0004 (rev 03)
> Subsystem: 1102:4001
> Flags: bus master, medium devsel, latency 32, IRQ 5
> I/O ports at 9000
> Capabilities: [dc] Power Management version 2
>
Here's a corrected patch to cause the emu10k1 driver to claim this device.
I have no idea what will happen, it could work, or lock up your machine.
But we have at least one Linux user with access to the hardware, so we
might as well try...
Signed-Off-By: Lee Revell <rlrevell@joe-job.com>
Lee
Index: alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c,v
retrieving revision 1.55
diff -u -r1.55 emu10k1_main.c
--- alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 10 Apr 2005 14:43:35 -0000 1.55
+++ alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 2 May 2005 00:06:38 -0000
@@ -700,6 +700,10 @@
.emu10k2_chip = 1,
.ca0102_chip = 1,
.ac97_chip = 1} ,
+ {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
+ .driver = "Audigy", .name = "E-mu 1212m [4001]",
+ .id = "1212m",
+ .emu10k2_chip = 1} ,
{.vendor = 0x1102, .device = 0x0004,
.driver = "Audigy", .name = "Audigy 1 [Unknown]",
.id = "Audigy",
-------------------------------------------------------
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: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-02 1:22 ` James Courtier-Dutton
2005-05-02 0:33 ` Lee Revell
@ 2005-05-03 21:34 ` Giuseppe Miletto
2005-05-03 21:48 ` Lee Revell
1 sibling, 1 reply; 7+ messages in thread
From: Giuseppe Miletto @ 2005-05-03 21:34 UTC (permalink / raw)
To: James Courtier-Dutton; +Cc: Lee Revell, alsa-devel
Alle 03:22, lunedì 2 maggio 2005, James Courtier-Dutton ha scritto:
> Lee Revell wrote:
> > On Sun, 2005-05-01 at 19:30 -0400, Lee Revell wrote:
> >>On Mon, 2005-05-02 at 01:24 +0200, Giuseppe Miletto wrote:
> >>>Alle 02:41, domenica 1 maggio 2005, hai scritto:
> >>>>On Sun, 2005-05-01 at 02:31 +0200, Giuseppe Miletto wrote:
> >>>>>I've already bought a EMU-1212 and I've doing very good job with
> >>>>> windows operating system. This has been a forced choice: trying to
> >>>>> use EMU-1212 with my suse 9.2 linux system I haven't been able to go
> >>>>> over the use of MIDI port of my EMU-1212.
> >>>>>Since I'm still an entusiastic of linux, I'll be very gratefull if
> >>>>> some linux driver allow me to work with my EMU-1212 under this
> >>>>> system: the only use of windows I'm doing now is for sound and
> >>>>> music.And EMU-1212 is really a great soundcard.
> >>>>
> >>>>Can you provide the "lspci -vn" output? It's possible that some
> >>>>functionality will work if the driver just treats the card like an APS
> >>>>(that is, an emu10k1 with no AC97).
> >>>>
> >>>>Lee
> >>>
> >>>Hereby is what you asked for.
> >>>Thanks in advance
> >>>BYE
> >>
> >>James, here's the entry for the 1212m:
> >>
> >>0000:02:0a.0 Class 0401: 1102:0004 (rev 03)
> >> Subsystem: 1102:4001
> >> Flags: bus master, medium devsel, latency 32, IRQ 5
> >> I/O ports at 9000
> >> Capabilities: [dc] Power Management version 2
> >>
> >>Let's add this to the driver & see what happens. I'll try to get a
> >>patch together, feel free to post one if you get a chance before I do.
> >
> > Please try this patch against ALSA CVS. It should cause the emu10k1
> > driver to claim this device.
> >
> > I have no idea what will happen, it could work, or lock up your machine.
> >
> > Lee
> >
> > Index: alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c
> > ===================================================================
> > RCS file: /cvsroot/alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c,v
> > retrieving revision 1.55
> > diff -u -r1.55 emu10k1_main.c
> > --- alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 10 Apr 2005 14:43:35
> > -0000 1.55 +++ alsa/alsa-kernel/pci/emu10k1/emu10k1_main.c 2 May 2005
> > 00:06:38 -0000 @@ -700,6 +700,10 @@
> > .emu10k2_chip = 1,
> > .ca0102_chip = 1,
> > .ac97_chip = 1} ,
> > + {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
> > + .driver = "EMU10K1", .name = "E-mu 1212m [4001]",
> > + .id = "1212m",
> > + .emu10k1_chip = 1} ,
> > {.vendor = 0x1102, .device = 0x0004,
> > .driver = "Audigy", .name = "Audigy 1 [Unknown]",
> > .id = "Audigy",
>
> Yes, well, that's really going to work isn't it!!!
>
> > + .emu10k1_chip = 1} ,
>
> Me thinks ".emu10k2_chip = 1}, " would be more like it. :-)
Thanks to you,
I think you both gave me a solution but really I don't know how to manage the
listed instruction.
I've a SUSE 9.2 linux version and I use usually YAST2 to confgiure the system.
Moreover when all my sound system is halted (for example when I want to use
Audacity ans it's not able to find the sound card - the Intel one built in in
the motherboard) I run alsaconf as su.
I've not able to do more than this.
Do you think you can help me more than already done?
Grateful in advance.
Beppe Miletto
--
Giuseppe Miletto
Via Campi Rotondi, 35
10020 Cambiano (TO)
tel. +390119442144
cell. +393487659488
mailto: beppe.miletto@tiscali.it
sito web: http://www.elletici.com
-------------------------------------------------------
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
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Re: [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers
2005-05-03 21:34 ` Giuseppe Miletto
@ 2005-05-03 21:48 ` Lee Revell
0 siblings, 0 replies; 7+ messages in thread
From: Lee Revell @ 2005-05-03 21:48 UTC (permalink / raw)
To: Giuseppe Miletto; +Cc: James Courtier-Dutton, alsa-devel
On Tue, 2005-05-03 at 23:34 +0200, Giuseppe Miletto wrote:
> Thanks to you,
> I think you both gave me a solution but really I don't know how to manage the
> listed instruction.
> I've a SUSE 9.2 linux version and I use usually YAST2 to confgiure the system.
> Moreover when all my sound system is halted (for example when I want to use
> Audacity ans it's not able to find the sound card - the Intel one built in in
> the motherboard) I run alsaconf as su.
> I've not able to do more than this.
> Do you think you can help me more than already done?
> Grateful in advance.
Can some SuSE user out there provide step by step instructions to apply
the patch and recompile ALSA?
Currently Giuseppe is the only Linux user we know of with access to this
hardware, so this feedback would be quite valuable.
Another option would be to provide me with temporary SSH access to the
machine. It would probably only take half an hour. Please mail me
privately if you are interested in this approach.
Lee
-------------------------------------------------------
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
end of thread, other threads:[~2005-05-03 21:48 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200505010231.19540.beppe.miletto@tiscali.it>
[not found] ` <1114908114.5626.3.camel@mindpipe>
[not found] ` <200505020124.16569.beppe.miletto@tiscali.it>
2005-05-01 23:30 ` [Alsa-user] Re: [linux-audio-dev] E-MU 1212m Linux drivers Lee Revell
2005-05-02 0:07 ` Lee Revell
2005-05-02 1:22 ` James Courtier-Dutton
2005-05-02 0:33 ` Lee Revell
2005-05-03 21:34 ` Giuseppe Miletto
2005-05-03 21:48 ` Lee Revell
2005-05-03 3:31 ` Lee Revell
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.