Activity log for bug #1454013

Date Who What changed Old value New value Message
2015-05-12 01:35:43 Adam Lee bug added bug
2015-05-12 01:36:29 Adam Lee nominated for series Ubuntu Wily
2015-05-12 01:36:29 Adam Lee nominated for series Ubuntu Trusty
2015-05-12 01:36:29 Adam Lee nominated for series Ubuntu Vivid
2015-05-12 01:36:29 Adam Lee nominated for series Ubuntu Utopic
2015-05-12 01:39:03 Adam Lee bug added subscriber Canonical Hardware Enablement Team
2015-05-12 01:43:50 Adam Lee linux (Ubuntu): importance Medium High
2015-05-12 01:43:55 Adam Lee hwe-next: importance Undecided High
2015-05-12 01:43:57 Adam Lee hwe-next: assignee Adam Lee (adam8157)
2015-05-12 01:49:58 Adam Lee hwe-next: status New In Progress
2015-05-12 01:50:03 Adam Lee removed subscriber Adam Lee
2015-05-12 06:46:06 Adam Lee linux (Ubuntu): status In Progress Won't Fix
2015-05-12 06:46:08 Adam Lee hwe-next: status In Progress Won't Fix
2015-05-12 15:58:30 Joseph Salisbury bug task added linux (Ubuntu Trusty)
2015-05-12 15:58:37 Joseph Salisbury bug task added linux (Ubuntu Utopic)
2015-05-12 15:58:46 Joseph Salisbury bug task added linux (Ubuntu Wily)
2015-05-12 15:58:53 Joseph Salisbury bug task added linux (Ubuntu Vivid)
2015-05-13 01:25:16 Adam Lee bug task deleted linux (Ubuntu Wily)
2015-05-13 01:25:20 Adam Lee bug task deleted linux (Ubuntu Vivid)
2015-05-13 01:25:38 Adam Lee linux (Ubuntu Utopic): status New Won't Fix
2015-05-13 01:25:41 Adam Lee linux (Ubuntu Trusty): status New Won't Fix
2015-05-13 07:13:04 Adam Lee description Intel Braswell eMMC need some backports: mmc: sdhci-acpi: Get UID directly from acpi_device mmc: sdhci-acpi: Pass HID and UID to probe_slot mmc: sdhci-acpi: Fix Braswell eMMC timeout clock frequency mmc: sdhci-acpi: add probe_slot method for emmc/sd/sdio mmc: card: Prevent partition scan for the eMMC boot areas mmc: sdhci-pci: Fix Braswell eMMC timeout clock frequency mmc: sdhci: Add PCI IDs for Intel Braswell mmc: sdhci: Let a driver override timeout clock frequency(have some conflicts) This patch could fix this issue, otherwise booting will take a very long time. mmc: card: Don't access RPMB partitions for normal read/write During kernel boot, it will try to read some logical sectors of each block device node for the possible partition table. But since RPMB partition is special and can not be accessed by normal eMMC read / write CMDs, it will cause below error messages during kernel boot: ... mmc0: Got data interrupt 0x00000002 even though no data operation was in progress. mmcblk0rpmb: error -110 transferring data, sector 0, nr 32, cmd response 0x900, card status 0xb00 mmcblk0rpmb: retrying using single block read mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 end_request: I/O error, dev mmcblk0rpmb, sector 0 Buffer I/O error on device mmcblk0rpmb, logical block 0 end_request: I/O error, dev mmcblk0rpmb, sector 8 Buffer I/O error on device mmcblk0rpmb, logical block 1 end_request: I/O error, dev mmcblk0rpmb, sector 16 Buffer I/O error on device mmcblk0rpmb, logical block 2 end_request: I/O error, dev mmcblk0rpmb, sector 24 Buffer I/O error on device mmcblk0rpmb, logical block 3 ... This patch will discard the access request in eMMC queue if it is RPMB partition access request. By this way, it avoids trigger above error messages. Fixes: 090d25fe224c ("mmc: core: Expose access to RPMB partition") Signed-off-by: Yunpeng Gao <yunpeng.gao@intel.com> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com> Tested-by: Michael Shigorin <mike@altlinux.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2015-05-13 07:14:14 Adam Lee summary Need support for Intel Braswell eMMC Booting takes very long time on Intel Braswell caused by eMMC
2015-05-13 07:14:20 Adam Lee description This patch could fix this issue, otherwise booting will take a very long time. mmc: card: Don't access RPMB partitions for normal read/write During kernel boot, it will try to read some logical sectors of each block device node for the possible partition table. But since RPMB partition is special and can not be accessed by normal eMMC read / write CMDs, it will cause below error messages during kernel boot: ... mmc0: Got data interrupt 0x00000002 even though no data operation was in progress. mmcblk0rpmb: error -110 transferring data, sector 0, nr 32, cmd response 0x900, card status 0xb00 mmcblk0rpmb: retrying using single block read mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900 end_request: I/O error, dev mmcblk0rpmb, sector 0 Buffer I/O error on device mmcblk0rpmb, logical block 0 end_request: I/O error, dev mmcblk0rpmb, sector 8 Buffer I/O error on device mmcblk0rpmb, logical block 1 end_request: I/O error, dev mmcblk0rpmb, sector 16 Buffer I/O error on device mmcblk0rpmb, logical block 2 end_request: I/O error, dev mmcblk0rpmb, sector 24 Buffer I/O error on device mmcblk0rpmb, logical block 3 ... This patch will discard the access request in eMMC queue if it is RPMB partition access request. By this way, it avoids trigger above error messages. Fixes: 090d25fe224c ("mmc: core: Expose access to RPMB partition") Signed-off-by: Yunpeng Gao <yunpeng.gao@intel.com> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com> Tested-by: Michael Shigorin <mike@altlinux.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> This patch could fix this issue, otherwise booting will take very long time. mmc: card: Don't access RPMB partitions for normal read/write During kernel boot, it will try to read some logical sectors of each block device node for the possible partition table. But since RPMB partition is special and can not be accessed by normal eMMC read / write CMDs, it will cause below error messages during kernel boot: ...  mmc0: Got data interrupt 0x00000002 even though no data operation was in progress.  mmcblk0rpmb: error -110 transferring data, sector 0, nr 32, cmd response 0x900, card status 0xb00  mmcblk0rpmb: retrying using single block read  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  end_request: I/O error, dev mmcblk0rpmb, sector 0  Buffer I/O error on device mmcblk0rpmb, logical block 0  end_request: I/O error, dev mmcblk0rpmb, sector 8  Buffer I/O error on device mmcblk0rpmb, logical block 1  end_request: I/O error, dev mmcblk0rpmb, sector 16  Buffer I/O error on device mmcblk0rpmb, logical block 2  end_request: I/O error, dev mmcblk0rpmb, sector 24  Buffer I/O error on device mmcblk0rpmb, logical block 3 ... This patch will discard the access request in eMMC queue if it is RPMB partition access request. By this way, it avoids trigger above error messages. Fixes: 090d25fe224c ("mmc: core: Expose access to RPMB partition") Signed-off-by: Yunpeng Gao <yunpeng.gao@intel.com> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com> Tested-by: Michael Shigorin <mike@altlinux.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2015-05-13 07:14:27 Adam Lee nominated for series Ubuntu Vivid
2015-05-13 07:14:27 Adam Lee nominated for series Ubuntu Wily
2015-05-13 07:14:54 Adam Lee description This patch could fix this issue, otherwise booting will take very long time. mmc: card: Don't access RPMB partitions for normal read/write During kernel boot, it will try to read some logical sectors of each block device node for the possible partition table. But since RPMB partition is special and can not be accessed by normal eMMC read / write CMDs, it will cause below error messages during kernel boot: ...  mmc0: Got data interrupt 0x00000002 even though no data operation was in progress.  mmcblk0rpmb: error -110 transferring data, sector 0, nr 32, cmd response 0x900, card status 0xb00  mmcblk0rpmb: retrying using single block read  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  end_request: I/O error, dev mmcblk0rpmb, sector 0  Buffer I/O error on device mmcblk0rpmb, logical block 0  end_request: I/O error, dev mmcblk0rpmb, sector 8  Buffer I/O error on device mmcblk0rpmb, logical block 1  end_request: I/O error, dev mmcblk0rpmb, sector 16  Buffer I/O error on device mmcblk0rpmb, logical block 2  end_request: I/O error, dev mmcblk0rpmb, sector 24  Buffer I/O error on device mmcblk0rpmb, logical block 3 ... This patch will discard the access request in eMMC queue if it is RPMB partition access request. By this way, it avoids trigger above error messages. Fixes: 090d25fe224c ("mmc: core: Expose access to RPMB partition") Signed-off-by: Yunpeng Gao <yunpeng.gao@intel.com> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com> Tested-by: Michael Shigorin <mike@altlinux.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> This patch could fix this issue, otherwise booting will take very long time. 4e93b9a6abc0d028daf3c8a00cb77b679d8a4df4 mmc: card: Don't access RPMB partitions for normal read/write During kernel boot, it will try to read some logical sectors of each block device node for the possible partition table. But since RPMB partition is special and can not be accessed by normal eMMC read / write CMDs, it will cause below error messages during kernel boot: ...  mmc0: Got data interrupt 0x00000002 even though no data operation was in progress.  mmcblk0rpmb: error -110 transferring data, sector 0, nr 32, cmd response 0x900, card status 0xb00  mmcblk0rpmb: retrying using single block read  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  mmcblk0rpmb: timed out sending r/w cmd command, card status 0x400900  end_request: I/O error, dev mmcblk0rpmb, sector 0  Buffer I/O error on device mmcblk0rpmb, logical block 0  end_request: I/O error, dev mmcblk0rpmb, sector 8  Buffer I/O error on device mmcblk0rpmb, logical block 1  end_request: I/O error, dev mmcblk0rpmb, sector 16  Buffer I/O error on device mmcblk0rpmb, logical block 2  end_request: I/O error, dev mmcblk0rpmb, sector 24  Buffer I/O error on device mmcblk0rpmb, logical block 3 ... This patch will discard the access request in eMMC queue if it is RPMB partition access request. By this way, it avoids trigger above error messages. Fixes: 090d25fe224c ("mmc: core: Expose access to RPMB partition") Signed-off-by: Yunpeng Gao <yunpeng.gao@intel.com> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com> Tested-by: Michael Shigorin <mike@altlinux.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
2015-05-13 07:14:58 Adam Lee hwe-next: status Won't Fix In Progress
2015-05-13 07:15:01 Adam Lee linux (Ubuntu): status Won't Fix In Progress
2015-05-13 07:15:03 Adam Lee linux (Ubuntu Trusty): status Won't Fix In Progress
2015-05-13 07:15:05 Adam Lee linux (Ubuntu Utopic): status Won't Fix In Progress
2015-05-13 07:49:51 Adam Lee linux (Ubuntu Utopic): importance Undecided High
2015-05-13 07:49:54 Adam Lee linux (Ubuntu Trusty): importance Undecided High
2015-05-13 07:50:03 Adam Lee linux (Ubuntu Trusty): assignee Adam Lee (adam8157)
2015-05-13 07:50:05 Adam Lee linux (Ubuntu Utopic): assignee Adam Lee (adam8157)
2015-05-13 08:02:55 Bofu Chen bug added subscriber Bofu Chen
2015-05-13 17:51:55 Brad Figg bug task added linux (Ubuntu Vivid)
2015-05-13 17:52:07 Brad Figg linux (Ubuntu Trusty): status In Progress Fix Committed
2015-05-13 17:52:10 Brad Figg linux (Ubuntu Utopic): status In Progress Fix Committed
2015-05-13 17:52:13 Brad Figg linux (Ubuntu Vivid): status New Fix Committed
2015-05-14 00:55:31 Jamie Chang bug added subscriber Jamie Chang
2015-05-14 02:16:33 Adam Lee linux (Ubuntu Vivid): importance Undecided High
2015-05-14 02:16:35 Adam Lee linux (Ubuntu Vivid): assignee Adam Lee (adam8157)
2015-05-14 09:41:30 Adam Conrad bug task added linux (Ubuntu Wily)
2015-05-18 14:18:51 Brad Figg tags verification-done-trusty
2015-05-19 23:52:21 Launchpad Janitor linux (Ubuntu Trusty): status Fix Committed Fix Released
2015-05-19 23:52:21 Launchpad Janitor cve linked 2014-9715
2015-05-31 19:38:52 Launchpad Janitor linux (Ubuntu Wily): status In Progress Fix Released
2015-05-31 19:38:52 Launchpad Janitor cve linked 2015-0275
2015-05-31 19:38:52 Launchpad Janitor cve linked 2015-4036
2015-06-01 09:30:37 Luis Henriques tags verification-done-trusty verification-done-trusty verification-needed-utopic
2015-06-01 09:33:54 Luis Henriques tags verification-done-trusty verification-needed-utopic verification-done-trusty verification-needed-utopic verification-needed-vivid
2015-06-03 02:59:45 Tsung-Han Lin tags verification-done-trusty verification-needed-utopic verification-needed-vivid verification-done-trusty verification-done-utopic verification-done-vivid
2015-06-10 15:22:45 Launchpad Janitor linux (Ubuntu Vivid): status Fix Committed Fix Released
2015-06-10 15:25:02 Launchpad Janitor linux (Ubuntu Utopic): status Fix Committed Fix Released
2015-06-11 01:38:10 Adam Lee hwe-next: status In Progress Fix Released