> With firmware 1.107 and kernel 3.10, the green speaker out and silver
headphone out work, but the front headphone port still does not work at
all. I don't have any equipment for testing digital out though.

https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/?id=95c6e9cb774979c270f0ecb9ec819d02592ec89f

do you mean the grey Jack since the driver hardcode the node of
headphone to 0x0f ?


+
+static void ca0132_config(struct hda_codec *codec)
+{
+       struct ca0132_spec *spec = codec->spec;
+       struct auto_pin_cfg *cfg = &spec->autocfg;
+
+       /* line-outs */
+       cfg->line_outs = 1;
+       cfg->line_out_pins[0] = 0x0b; /* front */
+       cfg->line_out_type = AUTO_PIN_LINE_OUT;
+
+       spec->dacs[0] = 0x02;
+       spec->out_pins[0] = 0x0b;
+       spec->multiout.dac_nids = spec->dacs;
+       spec->multiout.num_dacs = 1;
+       spec->multiout.max_channels = 2;
+
+       /* headphone */
+       cfg->hp_outs = 1;
+       cfg->hp_pins[0] = 0x0f;
+
+       spec->hp_dac = 0;
+       spec->multiout.hp_nid = 0;
+
+       /* inputs */
+       cfg->num_inputs = 2;  /* Mic-in and line-in */
+       cfg->inputs[0].pin = 0x12;
+       cfg->inputs[0].type = AUTO_PIN_MIC;
+       cfg->inputs[1].pin = 0x11;
+       cfg->inputs[1].type = AUTO_PIN_LINE_IN;
+
+       /* Mic-in */
+       spec->input_pins[0] = 0x12;
+       spec->input_labels[0] = "Mic-In";
+       spec->adcs[0] = 0x07;
+
+       /* Line-In */
+       spec->input_pins[1] = 0x11;
+       spec->input_labels[1] = "Line-In";
+       spec->adcs[1] = 0x08;
+       spec->num_inputs = 2;
+}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1166529

Title:
  Creative Recon3d & Sound Blaster Z (CA0132), No Sound At All; Broken
  Beyond All Repair

To manage notifications about this bug go to:
https://bugs.launchpad.net/alsa-driver/+bug/1166529/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to