Re: current unable to attach USB, Power Mgmt, sound

1999-10-20 Thread Marc van Woerkom

> The following patch from Doug Rabson fixed the USB and sound problem for
> me. It has already bee committed to -current.

My AudioPCI card works again. Thanx!

Regards,
Marc


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-18 Thread Daniel O'Connor


On 18-Oct-99 Chris Dillon wrote:
>  though we're running Win95, not FreeBSD (yet).  The wavetable samples
>  don't appear to exist in any kind of onboard RAM, so I'm not entirely
>  sure just how "hardware" the wavetable is at all.

Probably not at all..
Since Vibra 128's are REALLY cheap, then the 'hardware' wavetable would probably
mean that it DMA's wavetable samples from physical RAM when it needs them.

---
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
  -- Andrew Tanenbaum


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-18 Thread Marc van Woerkom

> The following patch from Doug Rabson fixed the USB and sound problem for
> me. It has already bee committed to -current.

Thanks for that hint.

Regards,
Marc




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-18 Thread Chris Dillon

On Mon, 18 Oct 1999, Marc van Woerkom wrote:

> > > pcm0: unable to map register space
> > > device_probe_and_attach: pcm0 attach returned 6
> > 
> > This is an Abit BP6 board with two Celeron 366, 256 MByte memory, one
> > Soundblaster PCI 128 (pcm0) and one Hoontech (pcm1) sound card. Below is
> > the complete dmesg from today's current, and the kernel config.
> 
> I reported the same problem. PCI 128 uses the same ES1370 chip as the 
> Audio PCI.

The Vibra128 (which is PCI) uses the Ensoniq chip, but I'm not so sure
the PCI128 does.  I just found this out the hard way on 56 new
systems.  I wanted the SB16 ISA, couldn't get that, so I was going to
get an AWE64 ISA, couldn't get that either (curse you, Creative, for
discontinuing those cards).  Got what I THOUGHT was the PCI128, which
turned out to be the Vibra128, which is a very different animal as far
as the Windows drivers are concerned.  It hasn't done too bad so far,
though we're running Win95, not FreeBSD (yet).  The wavetable samples
don't appear to exist in any kind of onboard RAM, so I'm not entirely
sure just how "hardware" the wavetable is at all.


-- Chris Dillon - [EMAIL PROTECTED] - [EMAIL PROTECTED]
   FreeBSD: The fastest and most stable server OS on the planet.
   For Intel x86 and Alpha architectures (SPARC under development).
   ( http://www.freebsd.org )

   "One should admire Windows users.  It takes a great deal of
courage to trust Windows with your data."



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-18 Thread sthaug

> > > pcm0: unable to map register space
> > > device_probe_and_attach: pcm0 attach returned 6
> > 
> > This is an Abit BP6 board with two Celeron 366, 256 MByte memory, one
> > Soundblaster PCI 128 (pcm0) and one Hoontech (pcm1) sound card. Below is
> > the complete dmesg from today's current, and the kernel config.
> 
> I reported the same problem. PCI 128 uses the same ES1370 chip as the 
> Audio PCI.

The following patch from Doug Rabson fixed the USB and sound problem for
me. It has already bee committed to -current. It did not fix the power
management (intpm0) problem.

Steinar Haug, Nethelp consulting, [EMAIL PROTECTED]
--
RCS file: /home/ncvs/src/sys/pci/pci.c,v
retrieving revision 1.122
diff -u -r1.122 pci.c
--- pci.c   1999/10/14 21:38:31 1.122
+++ pci.c   1999/10/16 19:11:27
@@ -1032,7 +1032,7 @@
 #endif
if (type == SYS_RES_IOPORT && !pci_porten(cfg))
continue;
-   if (type == SYS_RES_IOPORT && !pci_memen(cfg))
+   if (type == SYS_RES_MEMORY && !pci_memen(cfg))
continue;
 
resource_list_add(rl, type, reg,


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-18 Thread Marc van Woerkom

> > pcm0: unable to map register space
> > device_probe_and_attach: pcm0 attach returned 6
> 
> This is an Abit BP6 board with two Celeron 366, 256 MByte memory, one
> Soundblaster PCI 128 (pcm0) and one Hoontech (pcm1) sound card. Below is
> the complete dmesg from today's current, and the kernel config.

I reported the same problem. PCI 128 uses the same ES1370 chip as the 
Audio PCI.

Regards,
Marc


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current unable to attach USB, Power Mgmt, sound

1999-10-16 Thread Doug Rabson

On Sat, 16 Oct 1999 [EMAIL PROTECTED] wrote:

> Current as of 8. october attached USB, Power Mgmt, sound just fine.
> Current as of today no longer does. Here are the relevant bits of a
> dmesg diff:

I think I broke something with my last change to pci. Could you send me a
verbose dmesg.

--
Doug Rabson Mail:  [EMAIL PROTECTED]
Nonlinear Systems Ltd.  Phone: +44 181 442 9037




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message