Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753202AbdL1CJ0 (ORCPT ); Wed, 27 Dec 2017 21:09:26 -0500 Received: from userp2120.oracle.com ([156.151.31.85]:40338 "EHLO userp2120.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753171AbdL1CJY (ORCPT ); Wed, 27 Dec 2017 21:09:24 -0500 From: Santosh Shilimkar To: arm@kernel.org, linux-arm-kernel@lists.infradead.org Cc: khilman@kernel.org, arnd@arndb.de, olof@lixom.net, linux-kernel@vger.kernel.org, santosh.shilimkar@oracle.com Subject: [GIT PULL 2/3] SOC: Keystone SOC update for 4.16 Date: Wed, 27 Dec 2017 18:07:51 -0800 Message-Id: <1514426872-5769-2-git-send-email-santosh.shilimkar@oracle.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1514426872-5769-1-git-send-email-santosh.shilimkar@oracle.com> References: <1514426872-5769-1-git-send-email-santosh.shilimkar@oracle.com> X-Proofpoint-Virus-Version: vendor=nai engine=5900 definitions=8757 signatures=668650 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=681 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1711220000 definitions=main-1712280027 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2056 Lines: 50 The following changes since commit 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323: Linux 4.15-rc1 (2017-11-26 16:01:47 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git tags/keystone_driver_soc_for_4.16 for you to fetch changes up to aefc5818553680c50c9f6840e47c01b80edd9b3a: soc: ti: fix max dup length for kstrndup (2017-12-16 14:45:33 -0800) ---------------------------------------------------------------- SOC: Keystone Soc driver updates for 4.16 - TI EMIF-SRAM driver - TI SCI print format fix - Navigator strndup lenth fix ---------------------------------------------------------------- Arnd Bergmann (1): memory: ti-emif-sram: remove unused variable Dave Gerlach (2): Documentation: dt: Update ti,emif bindings memory: ti-emif-sram: introduce relocatable suspend/resume handlers Ma Shimiao (1): soc: ti: fix max dup length for kstrndup Nishanth Menon (1): firmware: ti_sci: Use %zu for size_t print format .../bindings/memory-controllers/ti/emif.txt | 17 +- drivers/firmware/ti_sci.c | 4 +- drivers/memory/Kconfig | 10 + drivers/memory/Makefile | 8 + drivers/memory/Makefile.asm-offsets | 5 + drivers/memory/emif-asm-offsets.c | 92 ++++++ drivers/memory/emif.h | 17 ++ drivers/memory/ti-emif-pm.c | 324 ++++++++++++++++++++ drivers/memory/ti-emif-sram-pm.S | 334 +++++++++++++++++++++ drivers/soc/ti/knav_qmss_queue.c | 4 +- include/linux/ti-emif-sram.h | 69 +++++ 11 files changed, 879 insertions(+), 5 deletions(-) create mode 100644 drivers/memory/Makefile.asm-offsets create mode 100644 drivers/memory/emif-asm-offsets.c create mode 100644 drivers/memory/ti-emif-pm.c create mode 100644 drivers/memory/ti-emif-sram-pm.S create mode 100644 include/linux/ti-emif-sram.h