From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753138AbbF3V6b (ORCPT ); Tue, 30 Jun 2015 17:58:31 -0400 Received: from server57.greatnet.de ([178.254.50.57]:36109 "EHLO server57.greatnet.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751341AbbF3V6X (ORCPT ); Tue, 30 Jun 2015 17:58:23 -0400 X-Greylist: delayed 528 seconds by postgrey-1.27 at vger.kernel.org; Tue, 30 Jun 2015 17:58:22 EDT Message-ID: <55930EEB.5050602@bumbleB.de> Date: Tue, 30 Jun 2015 23:49:31 +0200 From: Michael Bode User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: linux-kernel@vger.kernel.org Subject: TILCDC driver - Array to keep register values during PM suspend is too small Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, i currently try to write a LIDD version of the TILCDC driver in driver/gpu/drm. During my investigations I found the function "tilcdc_pm_suspend" in tilcdc_drv.c: #ifdef CONFIG_PM_SLEEP static int tilcdc_pm_suspend(struct device *dev) { ..... /* Save register state: */ for (i = 0; i < ARRAY_SIZE(registers); i++) if (registers[i].save && (priv->rev >= registers[i].rev)) priv->saved_register[n++] = tilcdc_read(ddev, registers[i].reg); priv->ctx_valid = true; return 0; } The member "saved_register" that is filled with register values here is an array defined in tilcdc_drv.h: struct tilcdc_drm_private { ..... /* register contents saved across suspend/resume: */ u32 saved_register[12]; bool ctx_valid; ..... As you can see the size of that array is 12 times u32, so it can keep 12 register values. But if you have a look at the register list to be saved, you will find: #if defined(CONFIG_DEBUG_FS) || defined(CONFIG_PM_SLEEP) static const struct { const char *name; uint8_t rev; uint8_t save; uint32_t reg; } registers[] = { #define REG(rev, save, reg) { #reg, rev, save, reg } /* exists in revision 1: */ REG(1, false, LCDC_PID_REG), REG(1, true, LCDC_CTRL_REG), REG(1, false, LCDC_STAT_REG), REG(1, true, LCDC_RASTER_CTRL_REG), REG(1, true, LCDC_RASTER_TIMING_0_REG), REG(1, true, LCDC_RASTER_TIMING_1_REG), REG(1, true, LCDC_RASTER_TIMING_2_REG), REG(1, true, LCDC_DMA_CTRL_REG), REG(1, true, LCDC_DMA_FB_BASE_ADDR_0_REG), REG(1, true, LCDC_DMA_FB_CEILING_ADDR_0_REG), REG(1, true, LCDC_DMA_FB_BASE_ADDR_1_REG), REG(1, true, LCDC_DMA_FB_CEILING_ADDR_1_REG), /* new in revision 2: */ REG(2, false, LCDC_RAW_STAT_REG), REG(2, false, LCDC_MASKED_STAT_REG), REG(2, false, LCDC_INT_ENABLE_SET_REG), REG(2, false, LCDC_INT_ENABLE_CLR_REG), REG(2, false, LCDC_END_OF_INT_IND_REG), REG(2, true, LCDC_CLK_ENABLE_REG), REG(2, true, LCDC_INT_ENABLE_SET_REG), #undef REG }; #endif And if I count correctly in case you have an LCDC Revision 2, there will be 19 registers saved to the array. So probably you will write over the end of that array. I hope the form of my post fits the posting rules of this forum. If not, sorry. It is my very first post! Br, Michael