From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753443AbdJPOyu (ORCPT ); Mon, 16 Oct 2017 10:54:50 -0400 Received: from muru.com ([72.249.23.125]:44526 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752201AbdJPOyt (ORCPT ); Mon, 16 Oct 2017 10:54:49 -0400 Date: Mon, 16 Oct 2017 07:54:44 -0700 From: Tony Lindgren To: Dave Gerlach Cc: Santosh Shilimkar , Russell King , linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Rob Herring , Keerthy J , Johan Hovold Subject: Re: [PATCH v5 2/2] memory: ti-emif-sram: introduce relocatable suspend/resume handlers Message-ID: <20171016145444.GX4394@atomide.com> References: <20171013205915.9652-1-d-gerlach@ti.com> <20171013205915.9652-3-d-gerlach@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171013205915.9652-3-d-gerlach@ti.com> User-Agent: Mutt/1.9.0 (2017-09-02) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Dave Gerlach [171013 14:00]: > Certain SoCs like Texas Instruments AM335x and AM437x require parts > of the EMIF PM code to run late in the suspend sequence from SRAM, > such as saving and restoring the EMIF context and placing the memory > into self-refresh. > > One requirement for these SoCs to suspend and enter its lowest power > mode, called DeepSleep0, is that the PER power domain must be shut off. > Because the EMIF (DDR Controller) resides within this power domain, it > will lose context during a suspend operation, so we must save it so we > can restore once we resume. However, we cannot execute this code from > external memory, as it is not available at this point, so the code must > be executed late in the suspend path from SRAM. > > This patch introduces a ti-emif-sram driver that includes several > functions written in ARM ASM that are relocatable so the PM SRAM > code can use them. It also allocates a region of writable SRAM to > be used by the code running in the executable region of SRAM to save > and restore the EMIF context. It can export a table containing the > absolute addresses of the available PM functions so that other SRAM > code can branch to them. This code is required for suspend/resume on > AM335x and AM437x to work. > > In addition to this, to be able to share data structures between C and > the ti-emif-sram-pm assembly code, we can automatically generate all of > the C struct member offsets and sizes as macros by processing > emif-asm-offsets.c into assembly code and then extracting the relevant > data as is done for the generated platform asm-offsets.h files. > > Signed-off-by: Dave Gerlach > --- > v4->v5: > * Simplify Makefile to generate include/generated/ti-emif-asm-offsets.h Looks good to me: Acked-by: Tony Lindgren