From a0b131a7ae8e4773cac431a9e79db2756670cab5 Mon Sep 17 00:00:00 2001 From: Khang Nguyen Date: Mon, 28 Jan 2019 18:49:51 +0700 Subject: rcar-gen3: linux-renesas: Upgrade Linux BSP to v3.9.4 This commit upgrades Linux BSP to v3.9.4 for the following changes: - Fix power domain for FCPCS of r8a77965 in the device tree according to H/W UM Rev.1.50 correction in the future. - Rename AVB_AVTP_MATCH and AVB_AVTP_CAPTURE pin function definitions of r8a77990 according to H/W UM Rev.1.50 correction in the future. - Revert the patch of r8a77990 pinctrl about MOD_SEL1 bit31 and bit30 according to H/W UM errata for Rev.1.00. - Fix cpg_sd_clock_round_rate return value. - Rename some pin function and cpg definition according to H/W UM Rev.1.50 errata. - Rename SEL_ADG_B to SEL_ADGB and rename SEL_ADG_C to SEL_ADGC according to H/W UM Rev.1.50. - Fix SCIF5 DMA channels according to H/W UM Rev.1.50. - Fix clock and reset for ivdp1c according to H/W UM Rev.1.50. - Add support for R-Car M3 ES3.0. - Fix MMC cannot probe by modprobe command after S2R issue. Change-Id: I12901a91f2e6ebaf5879456faeb5f9d3baad6f32 Signed-off-by: Khang Nguyen Signed-off-by: Duy Dang Signed-off-by: Takamitsu Honda (cherry picked from commit 5be728d6bfeb06c3174d5dffd09775d38674dd69) --- .../bugfix-crash-during-Full-HD-playback.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 meta-rcar-gen3/recipes-kernel/linux/linux-renesas/bugfix-crash-during-Full-HD-playback.patch (limited to 'meta-rcar-gen3/recipes-kernel/linux/linux-renesas') diff --git a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas/bugfix-crash-during-Full-HD-playback.patch b/meta-rcar-gen3/recipes-kernel/linux/linux-renesas/bugfix-crash-during-Full-HD-playback.patch deleted file mode 100644 index 0d87d44..0000000 --- a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas/bugfix-crash-during-Full-HD-playback.patch +++ /dev/null @@ -1,37 +0,0 @@ -From b4b3ac9b2bdd5c234251bcf9f843cb972f8c06cf Mon Sep 17 00:00:00 2001 -From: Vitaliy Vasylskyy -Date: Mon, 17 Dec 2018 15:36:17 +0200 -Subject: [PATCH] bugfix: crash during Full HD playback - -This fixes issue with kernel crash during Full HD playback. -Loop variable was used twice by mistake, so only plane 0 was -handled properly, and crash happened when plane 1 was in use. - -Jira-Id: ADM-2589 - -Change-Id: I52b69906a10646f5a95220ebced8d3a437ccc89a -Signed-off-by: Vitaliy Vasylskyy ---- - -diff --git a/drivers/gpu/drm/rcar-du/rcar_du_vsp.c b/drivers/gpu/drm/rcar-du/rcar_du_vsp.c -index db32c20..26309fe 100644 ---- a/drivers/gpu/drm/rcar-du/rcar_du_vsp.c -+++ b/drivers/gpu/drm/rcar-du/rcar_du_vsp.c -@@ -227,7 +227,7 @@ - struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state); - struct rcar_du_vsp *vsp = to_rcar_vsp_plane(plane)->vsp; - struct rcar_du_device *rcdu = vsp->dev; -- unsigned int i; -+ unsigned int i, j; - int ret; - - /* -@@ -260,7 +260,7 @@ - - src = gem->sgt->sgl; - dst = sgt->sgl; -- for (i = 0; i < gem->sgt->orig_nents; ++i) { -+ for (j = 0; j < gem->sgt->orig_nents; ++j) { - sg_set_page(dst, sg_page(src), src->length, - src->offset); - src = sg_next(src); -- cgit 1.2.3-korg