* [parisc-linux] any info on 710/Bushmaster Audio available?
@ 2002-01-08 8:37 Enrik Berkhan
0 siblings, 0 replies; 6+ messages in thread
From: Enrik Berkhan @ 2002-01-08 8:37 UTC (permalink / raw)
To: parisc-linux
Hi,
I'd like to make the audio part of my 710 usable, even if it's only
'voice quality' according to the LASI docs.
Actually, I can't find much documentation for this part. It's
mentioned in the LASI docs, but no details of course. I understand
that it should be in the "Cobra/Coral I/O ESR", that is not available
yet(?). I found some mails in the list archive promising to make it
available in 1999 ;-) Is there a status? Maybe something like the
"Vivace ESR" would be helpful, too.
Thanks,
Enrik
--
Enrik Berkhan plan b. GmbH
Rüppurrer Straße 4
+49-721-388582 (voice) 76137 Karlsruhe
+49-721-388581 (fax) Germany
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [parisc-linux] any info on 710/Bushmaster Audio available?
@ 2002-01-08 12:30 John Marvin
2002-01-08 13:44 ` Thomas Bogendoerfer
2002-01-08 14:33 ` Enrik Berkhan
0 siblings, 2 replies; 6+ messages in thread
From: John Marvin @ 2002-01-08 12:30 UTC (permalink / raw)
To: parisc-linux
> I'd like to make the audio part of my 710 usable, even if it's only
> 'voice quality' according to the LASI docs.
>
> Actually, I can't find much documentation for this part. It's
> mentioned in the LASI docs, but no details of course. I understand
> that it should be in the "Cobra/Coral I/O ESR", that is not available
> yet(?). I found some mails in the list archive promising to make it
> available in 1999 ;-) Is there a status? Maybe something like the
> "Vivace ESR" would be helpful, too.
The hardball ERS that is available is almost an exact duplicate of the
Cobra/Coral ERS, i.e. not that much changed. Neither document provides
any info on the 705/710 audio interface. The Vivace ERS is the document
that describes the first implementation of CD quality audio. That
functionality was incorporated into LASI in later machines, and the
interface is essentially the same. That document would not be helpful
for the 705/710 either.
The audio codec on the 705/710 is a Siemens PSB 2160. I tried looking
on their website for information, and the only info I found was that
it was replaced by the PSB 2161. I don't know if you can still find
documentation on that old chip, or if the PSB 2161 is programmatically
similar. I cannot currently locate my printed documentation on the
chip.
The interface to the PSB 2160 is the same as what was developed for
"Woody", otherwise known as a 425e, which was a 68040 based HP
workstation. I've enclosed what little documentation exists for
the 68040 interface. If you can find documentation on the PSB 2160
then you should be able to use the following information to write
a driver.
Note that what is meant by "voice" quality is that the codec only
supports a fixed sampling rate if 8 Khz. Note that this interface
does not support dma, it is a PIO device only.
John Marvin
jsm@fc.hp.com
-----
Woody Audio Interface
---------------------
Below find the preliminary software model for the Woody audio interface.
This interface incorporates an inbound FIFO, an outbound FIFO, and a
control FIFO that interfaces to a CODEC (coder/decoder). The CODEC is a
SIEMENS PSB2160 that contains an 8kHz sampling rate D/A, A/D, programable
input/ouput gain and filter coefficients. The converters will
generate/accept uLaw ("MULAW") or Alaw 8 bit data or 16 bit linear data (I
beleive that the converters only have about 13 significant bits) The CODEC
also has a DTMF (dual tone multiple frequency) generator, a tone
generator, and a ringing generator and software selectable internal
speaker or headphones.
Basically there are three communications channels which can be fully
overlapped. They are the inbound and outbound data and the control
channels. The inbound data channel is digitized microphone input and has
a 128 byte FIFO although software should not depend on this size. The
outbound data channel drives either the internal speaker or the headphones
jack, this channel also has a 128 byte FIFO. The control channel is
outbound only and controls the operation of the CODEC. Control commands
are 1 to 9 bytes in length and must be sent to the CODEC in successive
125us Frames. The control channel has a 16 byte FIFO, and software should
guarantee that an entire command is written to the FIFO before the FIFO
drains -- this shouldn't be too hard since it drains at an 8k byte/s rate.
The controller will automatically send a NOP (FF) command to the CODEC if
there is nothing in the control FIFO, and will send a zero (00) data byte
to the CODEC if there is nothing in the outbound FIFO.
Register 1 (offset 1 from base address): byte
read: ID: 0x13 (19) This is the card ID
write: reset. This will reset the FIFOs and machine.
Register 3 (offset 3): byte
read: Status: bit 7 (MSB) IE (r/w) interrupt enable
bit 6 IR (r)interrupt request.
bit 5,4 IL1,IL0; interrupt level (1,1;level 6)
bit 3 16 bit mode if set (1), 8 bit otherwise
bit 2 Control channel enable if set (1)
bit 1 0
bit 0 Inbound channel enable if set (1)
Clears inbound FIFO if clear (0)
Power-up/reset value is 0x30.
write: Status: bit 7 (MSB) IE (r/w) interrupt enable
bit 6 readonly
bit 5,4 readonly
bit 3 16 bit mode
bit 2 control channel enable
bit 1 readonly
bit 0 inbound channel enable
Register 5 (offset 5): byte
read: intr : bit 7 (MSB) Outbound FIFO empty interrupt enable.
bit 6 Control FIFO empty interrupt enable.
bit 5 Outbound FIFO less than half full
interrupt enable.
bit 4 Inbound FIFO more than half full
interrupt enable.
bit 3 Outbound FIFO empty interrupt request.
bit 2 Control FIFO empty interrupt request.
bit 1 Outbound FIFO less than half full
interrupt request.
bit 0 Inbound FIFO more than half full
interrupt request.
write: intr : bit 7 (MSB) Outbound FIFO empty interrupt enable.
bit 6 Control FIFO empty interrupt enable.
bit 5 Outbound FIFO less than half full
interrupt enable.
bit 4 Inbound FIFO more than half full
interrupt enable.
bit 3 readonly
bit 2 readonly
bit 1 readonly
bit 0 readonly
Register 7 (offset 7): byte, readonly
read: intr : bit 7 (MSB) Undefined
bit 6 Undefined
bit 5 Control FIFO full
bit 4 Control FIFO empty
bit 3 Outbound FIFO full
bit 2 Outbound FIFO empty
bit 1 Inbound FIFO full
bit 0 Inbound FIFO empty
Register 9 (offset 9): byte
read: inbound Data: Read data from inbound FIFO
(must be enabled and not EMPTY)
write: outbound Data: Write data to outbound FIFO
(must not be FULL)
Register 11 (offset 11): byte, writeonly
write: control Data: Write data to control FIFO
(must not be FULL)
The interrupts asserted when the FIFO is less than half full on outbound
transfers or greater than half full on inbound transfers have 16 byte
resolution -- 64 bytes +/- 16 bytes is half-full/empty.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [parisc-linux] any info on 710/Bushmaster Audio available?
2002-01-08 12:30 [parisc-linux] any info on 710/Bushmaster Audio available? John Marvin
@ 2002-01-08 13:44 ` Thomas Bogendoerfer
2002-01-08 14:35 ` Enrik Berkhan
2002-01-21 13:45 ` Enrik Berkhan
2002-01-08 14:33 ` Enrik Berkhan
1 sibling, 2 replies; 6+ messages in thread
From: Thomas Bogendoerfer @ 2002-01-08 13:44 UTC (permalink / raw)
To: John Marvin; +Cc: parisc-linux
On Tue, Jan 08, 2002 at 05:30:04AM -0700, John Marvin wrote:
> The audio codec on the 705/710 is a Siemens PSB 2160. I tried looking
> on their website for information, and the only info I found was that
> it was replaced by the PSB 2161. I don't know if you can still find
> documentation on that old chip, or if the PSB 2161 is programmatically
> similar. I cannot currently locate my printed documentation on the
> chip.
I have a dead tree version of the datasheet here and compared
it to the PSB2161. The internal registers are different. The PSB2160
has less features, so some of the config bits of the PSB2161 aren't
available and common bits are sometimes shifted around.
> The interface to the PSB 2160 is the same as what was developed for
> "Woody", otherwise known as a 425e, which was a 68040 based HP
> workstation. I've enclosed what little documentation exists for
> the 68040 interface. If you can find documentation on the PSB 2160
> then you should be able to use the following information to write
> a driver.
yes, looks doable. I'm not sure, whether I have the time to it myself,
but I could help people with questions about the PSB2160 config registers
(I'll write the register bits down and put it online during the next days).
Thomas.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [parisc-linux] any info on 710/Bushmaster Audio available?
2002-01-08 12:30 [parisc-linux] any info on 710/Bushmaster Audio available? John Marvin
2002-01-08 13:44 ` Thomas Bogendoerfer
@ 2002-01-08 14:33 ` Enrik Berkhan
1 sibling, 0 replies; 6+ messages in thread
From: Enrik Berkhan @ 2002-01-08 14:33 UTC (permalink / raw)
To: John Marvin; +Cc: parisc-linux
John,
On Tue, Jan 08, 2002 at 05:30:04AM -0700, John Marvin wrote:
> The audio codec on the 705/710 is a Siemens PSB 2160. I tried looking
> on their website for information, and the only info I found was that
> it was replaced by the PSB 2161. I don't know if you can still find
> documentation on that old chip, or if the PSB 2161 is programmatically
> similar. I cannot currently locate my printed documentation on the
> chip.
Tanks for the information, anyway. Helps a lot.
Enrik
--
Enrik Berkhan plan b. GmbH
Rüppurrer Straße 4
+49-721-388582 (voice) 76137 Karlsruhe
+49-721-388581 (fax) Germany
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [parisc-linux] any info on 710/Bushmaster Audio available?
2002-01-08 13:44 ` Thomas Bogendoerfer
@ 2002-01-08 14:35 ` Enrik Berkhan
2002-01-21 13:45 ` Enrik Berkhan
1 sibling, 0 replies; 6+ messages in thread
From: Enrik Berkhan @ 2002-01-08 14:35 UTC (permalink / raw)
To: tsbogend; +Cc: parisc-linux
On Tue, Jan 08, 2002 at 02:44:36PM +0100, Thomas Bogendoerfer wrote:
> [PSB216 audio]
> yes, looks doable. I'm not sure, whether I have the time to it myself,
> but I could help people with questions about the PSB2160 config registers
> (I'll write the register bits down and put it online during the next days).
Thanks in advance.
Enrik
--
Enrik Berkhan plan b. GmbH
Rüppurrer Straße 4
+49-721-388582 (voice) 76137 Karlsruhe
+49-721-388581 (fax) Germany
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [parisc-linux] any info on 710/Bushmaster Audio available?
2002-01-08 13:44 ` Thomas Bogendoerfer
2002-01-08 14:35 ` Enrik Berkhan
@ 2002-01-21 13:45 ` Enrik Berkhan
1 sibling, 0 replies; 6+ messages in thread
From: Enrik Berkhan @ 2002-01-21 13:45 UTC (permalink / raw)
To: parisc-linux
On Tue, Jan 08, 2002 at 02:44:36PM +0100, Thomas Bogendoerfer wrote:
> I have a dead tree version of the datasheet here and compared
> it to the PSB2161. The internal registers are different. The PSB2160
> has less features, so some of the config bits of the PSB2161 aren't
> available and common bits are sometimes shifted around.
[...]
> (I'll write the register bits down and put it online during the next days).
Today I got a scanned version from Infineon Product Support, so I think
this is no longer necessary. I hope I will get it running during this
week.
Enrik
--
Enrik Berkhan plan b. GmbH
Rüppurrer Straße 4
+49-721-388582 (voice) 76137 Karlsruhe
+49-721-388581 (fax) Germany
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2002-01-21 13:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-08 12:30 [parisc-linux] any info on 710/Bushmaster Audio available? John Marvin
2002-01-08 13:44 ` Thomas Bogendoerfer
2002-01-08 14:35 ` Enrik Berkhan
2002-01-21 13:45 ` Enrik Berkhan
2002-01-08 14:33 ` Enrik Berkhan
-- strict thread matches above, loose matches on Subject: below --
2002-01-08 8:37 Enrik Berkhan
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.