Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753984AbbBQCAq (ORCPT ); Mon, 16 Feb 2015 21:00:46 -0500 Received: from mail-bn1on0054.outbound.protection.outlook.com ([157.56.110.54]:51712 "EHLO na01-bn1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753876AbbBQCAj convert rfc822-to-8bit (ORCPT ); Mon, 16 Feb 2015 21:00:39 -0500 Message-ID: <1424138427.2448.5.camel@leyfoon-vm> Subject: [GIT PULL] arch/nios2 update for 3.20 From: Ley Foon Tan To: Linus Torvalds CC: Linux Kernel Mailing List , "lftan.linux@gmail.com" Date: Tue, 17 Feb 2015 10:00:27 +0800 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT X-Mailer: Evolution 3.8.4-0ubuntu1 MIME-Version: 1.0 X-EOPAttributedMessage: 0 Authentication-Results: spf=softfail (sender IP is 66.35.236.227) smtp.mailfrom=lftan@altera.com; linux-foundation.org; dkim=none (message not signed) header.d=none; X-Forefront-Antispam-Report: CIP:66.35.236.227;CTRY:US;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10009020)(6009001)(377424004)(105596002)(50986999)(229853001)(23676002)(42186005)(103116003)(50466002)(87936001)(77156002)(110136001)(86362001)(33646002)(106466001)(6806004)(46102003)(92566002)(19580395003)(50226001)(47776003)(62966003)(33716001)(7099025)(99106002)(139555002);DIR:OUT;SFP:1101;SCL:1;SRVR:BY2PR03MB224;H:sj-itexedge03.altera.priv.altera.com;FPR:;SPF:SoftFail;MLV:ovrnspm;PTR:InfoDomainNonexistent;LANG:en; X-Microsoft-Antispam: UriScan:;UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:BY2PR03MB224; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(5005003);SRVR:BY2PR03MB224; X-Forefront-PRVS: 0490BBA1F0 X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:;SRVR:BY2PR03MB224; X-MS-Exchange-CrossTenant-OriginalArrivalTime: 17 Feb 2015 02:00:32.2099 (UTC) X-MS-Exchange-CrossTenant-Id: fbd72e03-d4a5-4110-adce-614d51f2077a X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=fbd72e03-d4a5-4110-adce-614d51f2077a;Ip=[66.35.236.227] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY2PR03MB224 X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:BY2PR03MB159; X-OriginatorOrg: altera.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3170 Lines: 79 Hi Linus Here is the nios2 update for 3.20: - add early printk support - add kgdb support - add compressed kernel support - bugfixes Please consider pulling. Regards Ley Foon The following changes since commit bfa76d49576599a4b9f9b7a71f23d73d6dcff735: Linux 3.19 (2015-02-08 18:54:22 -0800) are available in the git repository at: git://git.rocketboards.org/linux-socfpga-next.git tags/nios2-v3.20-rc1 for you to fetch changes up to d16d2be111a61baf3a4696f07bfc7a8e36697cec: nios2: add kgdb support (2015-02-16 19:26:43 +0800) ---------------------------------------------------------------- nios2 for v3.20 Add support for early printk, compressed kernel, kgdb and some bugfixes. ---------------------------------------------------------------- Ley Foon Tan (6): nios2: Port OOM changes to do_page_fault() nios2: add early printk support nios2: Add support for compressed kernel nios2: default CONFIG_NIOS2_BOOT_LINK_OFFSET to 8MB MAINTAINERS: update arch/nios2 git tree nios2: add kgdb support Tobias Klauser (1): nios2: Remove unused prepare_to_copy() MAINTAINERS | 2 +- arch/nios2/Kconfig | 9 ++ arch/nios2/Kconfig.debug | 11 ++ arch/nios2/boot/Makefile | 7 ++ arch/nios2/boot/compressed/Makefile | 19 ++++ arch/nios2/boot/compressed/console.c | 125 +++++++++++++++++++++ arch/nios2/boot/compressed/head.S | 117 +++++++++++++++++++ arch/nios2/boot/compressed/misc.c | 187 +++++++++++++++++++++++++++++++ arch/nios2/boot/compressed/vmlinux.lds.S | 58 ++++++++++ arch/nios2/boot/compressed/vmlinux.scr | 28 +++++ arch/nios2/configs/3c120_defconfig | 1 + arch/nios2/include/asm/kgdb.h | 93 +++++++++++++++ arch/nios2/include/asm/processor.h | 3 - arch/nios2/include/asm/prom.h | 22 ++++ arch/nios2/kernel/Makefile | 2 + arch/nios2/kernel/early_printk.c | 118 +++++++++++++++++++ arch/nios2/kernel/entry.S | 12 +- arch/nios2/kernel/kgdb.c | 171 ++++++++++++++++++++++++++++ arch/nios2/kernel/prom.c | 52 ++++++++- arch/nios2/kernel/setup.c | 4 + arch/nios2/mm/fault.c | 37 +++++- 21 files changed, 1067 insertions(+), 11 deletions(-) create mode 100644 arch/nios2/boot/compressed/Makefile create mode 100644 arch/nios2/boot/compressed/console.c create mode 100644 arch/nios2/boot/compressed/head.S create mode 100644 arch/nios2/boot/compressed/misc.c create mode 100644 arch/nios2/boot/compressed/vmlinux.lds.S create mode 100644 arch/nios2/boot/compressed/vmlinux.scr create mode 100644 arch/nios2/include/asm/kgdb.h create mode 100644 arch/nios2/include/asm/prom.h create mode 100644 arch/nios2/kernel/early_printk.c create mode 100644 arch/nios2/kernel/kgdb.c -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/