Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116068
b: refs/heads/master
c: 64931a4
h: refs/heads/master
v: v3
  • Loading branch information
Takashi Iwai committed Oct 20, 2008
1 parent 259f4da commit 7d2eb96
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 756ba83ee370fbf62643777e7ba4a4f05932f6fb
refs/heads/master: 64931a4be03dbc49bd50d10d211592cf98b523bb
2 changes: 2 additions & 0 deletions trunk/arch/powerpc/include/asm/ps3av.h
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,8 @@ struct ps3av_pkt_avb_param {
u8 buf[PS3AV_PKT_AVB_PARAM_MAX_BUF_SIZE];
};

/* channel status */
extern u8 ps3av_mode_cs_info[];

/** command status **/
#define PS3AV_STATUS_SUCCESS 0x0000 /* success */
Expand Down
19 changes: 10 additions & 9 deletions trunk/drivers/ps3/ps3av_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -660,9 +660,10 @@ u32 ps3av_cmd_set_av_audio_param(void *p, u32 port,
}

/* default cs val */
static const u8 ps3av_mode_cs_info[] = {
u8 ps3av_mode_cs_info[] = {
0x00, 0x09, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00
};
EXPORT_SYMBOL_GPL(ps3av_mode_cs_info);

#define CS_44 0x00
#define CS_48 0x02
Expand All @@ -677,7 +678,7 @@ void ps3av_cmd_set_audio_mode(struct ps3av_pkt_audio_mode *audio, u32 avport,
u32 ch, u32 fs, u32 word_bits, u32 format,
u32 source)
{
int spdif_through, spdif_bitstream;
int spdif_through;
int i;

if (!(ch | fs | format | word_bits | source)) {
Expand All @@ -687,7 +688,6 @@ void ps3av_cmd_set_audio_mode(struct ps3av_pkt_audio_mode *audio, u32 avport,
format = PS3AV_CMD_AUDIO_FORMAT_PCM;
source = PS3AV_CMD_AUDIO_SOURCE_SERIAL;
}
spdif_through = spdif_bitstream = 0; /* XXX not supported */

/* audio mode */
memset(audio, 0, sizeof(*audio));
Expand Down Expand Up @@ -777,16 +777,17 @@ void ps3av_cmd_set_audio_mode(struct ps3av_pkt_audio_mode *audio, u32 avport,
break;
}

/* non-audio bit */
spdif_through = audio->audio_cs_info[0] & 0x02;

/* pass through setting */
if (spdif_through &&
(avport == PS3AV_CMD_AVPORT_SPDIF_0 ||
avport == PS3AV_CMD_AVPORT_SPDIF_1)) {
avport == PS3AV_CMD_AVPORT_SPDIF_1 ||
avport == PS3AV_CMD_AVPORT_HDMI_0 ||
avport == PS3AV_CMD_AVPORT_HDMI_1)) {
audio->audio_word_bits = PS3AV_CMD_AUDIO_WORD_BITS_16;
audio->audio_source = PS3AV_CMD_AUDIO_SOURCE_SPDIF;
if (spdif_bitstream) {
audio->audio_format = PS3AV_CMD_AUDIO_FORMAT_BITSTREAM;
audio->audio_cs_info[0] |= CS_BIT;
}
audio->audio_format = PS3AV_CMD_AUDIO_FORMAT_BITSTREAM;
}
}

Expand Down

0 comments on commit 7d2eb96

Please sign in to comment.