From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755635AbdELDKe (ORCPT ); Thu, 11 May 2017 23:10:34 -0400 Received: from mga09.intel.com ([134.134.136.24]:22646 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750922AbdELDKd (ORCPT ); Thu, 11 May 2017 23:10:33 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.38,327,1491289200"; d="scan'208";a="100557424" Message-ID: <1494558627.33118.12.camel@intel.com> Subject: [GIT PULL] arch/nios2 update for v4.12 From: Ley Foon Tan To: Linus Torvalds Cc: "lftan.linux@gmail.com" , Linux Kernel Mailing List Date: Fri, 12 May 2017 11:10:27 +0800 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.1 Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id v4C3AmS8014727 Hi Linus Here is nios2 update for v4.12. This including nios2 fixes/enhancements and adding nios2 R2 support. Regards Ley Foon The following changes since commit 13e0988140374123bead1dd27c287354cb95108e:   docs: complete bumping minimal GNU Make version to 3.81 (2017-05-06 18:49:09 -0700) are available in the git repository at:   git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git tags/nios2-v4.12-rc1 for you to fetch changes up to e118c3fec9c0d8d2a96462c4c035305dc952e402:   nios2: remove custom early console implementation (2017-05-11 17:44:21 +0800) ---------------------------------------------------------------- nios2 update for v4.12-rc1 nios2: remove custom early console implementation nios2: use generic strncpy_from_user() and strnlen_user() nios2: Add CDX support nios2: Add BMX support nios2: Add NIOS2_ARCH_REVISION to select between R1 and R2 nios2: implement flush_dcache_mmap_lock/unlock nios2: enable earlycon support nios2: constify irq_domain_ops nios2: remove wrapper header for cmpxchg.h nios2: add .gitignore entries for auto-generated files ---------------------------------------------------------------- Julien Beraud (1):       nios2: implement flush_dcache_mmap_lock/unlock Ley Foon Tan (1):       nios2: use generic strncpy_from_user() and strnlen_user() Marek Vasut (3):       nios2: Add NIOS2_ARCH_REVISION to select between R1 and R2       nios2: Add BMX support       nios2: Add CDX support Tobias Klauser (5):       nios2: add .gitignore entries for auto-generated files       nios2: remove wrapper header for cmpxchg.h       nios2: constify irq_domain_ops       nios2: enable earlycon support       nios2: remove custom early console implementation  arch/nios2/Kconfig                     |   2 +  arch/nios2/Kconfig.debug               |   1 -  arch/nios2/Makefile                    |   5 ++  arch/nios2/boot/.gitignore             |   2 +  arch/nios2/boot/dts/10m50_devboard.dts |   3 +-  arch/nios2/include/asm/Kbuild          |   1 +  arch/nios2/include/asm/cacheflush.h    |   6 +-  arch/nios2/include/asm/cmpxchg.h       |  14 ----  arch/nios2/include/asm/cpuinfo.h       |   2 +  arch/nios2/include/asm/prom.h          |  22 ------  arch/nios2/include/asm/setup.h         |   2 -  arch/nios2/include/asm/uaccess.h       |   7 +-  arch/nios2/kernel/.gitignore           |   1 +  arch/nios2/kernel/Makefile             |   1 -  arch/nios2/kernel/cpuinfo.c            |  18 ++++-  arch/nios2/kernel/early_printk.c       | 118 ---------------------------------  arch/nios2/kernel/irq.c                |   2 +-  arch/nios2/kernel/prom.c               |  49 --------------  arch/nios2/kernel/setup.c              |   6 +-  arch/nios2/mm/uaccess.c                |  33 ---------  arch/nios2/platform/Kconfig.platform   |  26 ++++++++  21 files changed, 69 insertions(+), 252 deletions(-)  create mode 100644 arch/nios2/boot/.gitignore  delete mode 100644 arch/nios2/include/asm/cmpxchg.h  delete mode 100644 arch/nios2/include/asm/prom.h  create mode 100644 arch/nios2/kernel/.gitignore  delete mode 100644 arch/nios2/kernel/early_printk.c