[Kernel-packages] [Bug 1255370] Re: MacBookPro11, 1 (Late 2013 Haswell) has no sound

2013-11-27 Thread Chun Li
apport information

** Tags added: apport-collected saucy

** Description changed:

  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some of
  the flags were not set correctly.  I can fix these problems but it would
  be nice to have them fixed at installation.
  
  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were
  
  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0
  
  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:
  
  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
  
  After resuming from suspend, the GPIO flags for IO[0] became
  
  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
  
  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:
  
  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.1
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  lic3   3717 F pulseaudio
+  /dev/snd/controlC0:  lic3   3717 F pulseaudio
+ DistroRelease: Ubuntu 13.10
+ HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
+ InstallationDate: Installed on 2013-11-06 (21 days ago)
+ InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
+ MachineType: Apple Inc. MacBookPro11,1
+ MarkForUpload: True
+ NonfreeKernelModules: wl
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
+ RelatedPackageVersions:
+  linux-restricted-modules-3.11.0-13-generic N/A
+  linux-backports-modules-3.11.0-13-generic  N/A
+  linux-firmware 1.116
+ Tags:  saucy saucy
+ Uname: Linux 3.11.0-13-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 09/22/2013
+ dmi.bios.vendor: Apple Inc.
+ dmi.bios.version: MBP111.88Z.0133.B00.1309220923
+ dmi.board.asset.tag: Base Board Asset Tag#
+ dmi.board.name: Mac-189A3D4F975D5FFC
+ dmi.board.vendor: Apple Inc.
+ dmi.board.version: MacBookPro11,1
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: Apple Inc.
+ dmi.chassis.version: Mac-189A3D4F975D5FFC
+ dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
+ dmi.product.name: MacBookPro11,1
+ dmi.product.version: 1.0
+ dmi.sys.vendor: Apple Inc.

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918719/+files/AlsaInfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 

[Kernel-packages] [Bug 1255370] BootDmesg.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918720/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] CRDA.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1255370/+attachment/3918721/+files/CRDA.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] CurrentDmesg.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918722/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] IwConfig.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918723/+files/IwConfig.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] Lsusb.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1255370/+attachment/3918725/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] ProcCpuinfo.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918726/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] ProcEnviron.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918727/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] ProcInterrupts.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918728/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] RfKill.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1255370/+attachment/3918731/+files/RfKill.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] UdevLog.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918733/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] WifiSyslog.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918734/+files/WifiSyslog.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] ProcModules.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918729/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] PulseList.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1255370/+attachment/3918730/+files/PulseList.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] UdevDb.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1255370/+attachment/3918732/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] Lspci.txt

2013-11-27 Thread Chun Li
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1255370/+attachment/3918724/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] Re: MacBookPro11, 1 (Late 2013 Haswell) has no sound

2013-11-27 Thread Chun Li
I have run the command 'apport-collect 1255370'.  I cannot found
anywhere to change the status.  Thanks.

Chun

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 1255370] Re: MacBookPro11, 1 (Late 2013 Haswell) has no sound

2013-11-28 Thread Chun Li
I am not sure.  My headphone works after installation and after resume.
So there is no need to fix it.  The internal mic seems to work fine,
too.  I do not have a mic to test external microphone.

I don't know if the patch code posted on that page would work or not on
my Macbook Pro 11,1.  I actually don't know how to apply the patch.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1255370

Title:
  MacBookPro11,1 (Late 2013 Haswell) has no sound

Status in “alsa-driver” package in Ubuntu:
  New
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  I installed Ubuntu 13.10 on a new MacBook Pro (Late 2013, 13-inch
  Haswell retina).  The speakers did not work after installation, and
  after I fixed it, it would not work after suspend.  It turns out some
  of the flags were not set correctly.  I can fix these problems but it
  would be nice to have them fixed at installation.

  The problem can be seen in the GPIO section in
  /proc/asound/card1/codec#0 (card0 is for HDMI).  After boot, the GPIO
  flags for IO[0] were

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=1, dir=1, wake=0, sticky=0, data=0, unsol=0

  If data were set to 1, sound would work!  I fixed this by installing
  alsa-tools and adding to /etc/rc.local a line:

  hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1

  After resuming from suspend, the GPIO flags for IO[0] became

  GPIO: io=6, o=2, i=0, unsolicited=1, wake=1
IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0

  Here, three flags were set to 0.  I fixed this by adding to
  /etc/pm/sleep.d/99_myfix a few lines:

  #!/bin/sh
  case "$1" in
resume|thaw)
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_mask 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_direction 1
sleep 1
hda-verb /dev/snd/hwC1D0 0x1 set_gpio_data 1
;;
  esac
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lic3   3717 F pulseaudio
   /dev/snd/controlC0:  lic3   3717 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=a2156b27-f1e5-4408-9fb3-491e6f8229fb
  InstallationDate: Installed on 2013-11-06 (21 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  MachineType: Apple Inc. MacBookPro11,1
  MarkForUpload: True
  NonfreeKernelModules: wl
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-13-generic.efi.signed 
root=UUID=b62d2699-f735-46a1-8e31-23146f2497a3 ro libata.force=noncq quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-13.20-generic 3.11.6
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-13-generic N/A
   linux-backports-modules-3.11.0-13-generic  N/A
   linux-firmware 1.116
  Tags:  saucy saucy
  Uname: Linux 3.11.0-13-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 09/22/2013
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP111.88Z.0133.B00.1309220923
  dmi.board.asset.tag: Base Board Asset Tag#
  dmi.board.name: Mac-189A3D4F975D5FFC
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,1
  dmi.chassis.type: 10
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-189A3D4F975D5FFC
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP111.88Z.0133.B00.1309220923:bd09/22/2013:svnAppleInc.:pnMacBookPro11,1:pvr1.0:rvnAppleInc.:rnMac-189A3D4F975D5FFC:rvrMacBookPro11,1:cvnAppleInc.:ct10:cvrMac-189A3D4F975D5FFC:
  dmi.product.name: MacBookPro11,1
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

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

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp