Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754254AbcDYItr (ORCPT ); Mon, 25 Apr 2016 04:49:47 -0400 Received: from foss.arm.com ([217.140.101.70]:43978 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754018AbcDYItq (ORCPT ); Mon, 25 Apr 2016 04:49:46 -0400 From: Vladimir Murzin To: sudeep.holla@arm.com Cc: liviu.dudau@arm.com, lorenzo.pieralisi@arm.com, arnd@arndb.de, linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/5] Support MPS2 platform Date: Mon, 25 Apr 2016 09:49:12 +0100 Message-Id: <1461574157-23580-1-git-send-email-vladimir.murzin@arm.com> X-Mailer: git-send-email 2.0.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1530 Lines: 40 Hi, These patches add basic support for ARM Versatile Express Cortex-M Prototyping System (V2M-MPS2). ucLinux can be now run on both the hardware and FVP models with Cortex-M3/M4/M7 configurations Following [1], please, consider to merge them into vexpress tree. [1] https://lkml.org/lkml/2016/4/23/190 Thanks! Vladimir Murzin (5): ARM: vexpress/mps2: introduce MPS2 platform ARM: configs: add MPS2 defconfig ARM: dts: introduce MPS2 AN385/AN386 ARM: dts: introduce MPS2 AN399/AN400 MAINTAINERS: Update ARM Versatile Express platform entry MAINTAINERS | 1 + arch/arm/Kconfig | 12 ++ arch/arm/Makefile | 1 + arch/arm/boot/dts/Makefile | 3 + arch/arm/boot/dts/mps2-an385.dts | 92 +++++++++++++ arch/arm/boot/dts/mps2-an399.dts | 92 +++++++++++++ arch/arm/boot/dts/mps2.dtsi | 241 ++++++++++++++++++++++++++++++++++ arch/arm/configs/mps2_defconfig | 109 +++++++++++++++ arch/arm/mach-vexpress/Makefile | 4 +- arch/arm/mach-vexpress/Makefile.boot | 3 + arch/arm/mach-vexpress/v2m-mps2.c | 21 +++ 11 files changed, 578 insertions(+), 1 deletion(-) create mode 100644 arch/arm/boot/dts/mps2-an385.dts create mode 100644 arch/arm/boot/dts/mps2-an399.dts create mode 100644 arch/arm/boot/dts/mps2.dtsi create mode 100644 arch/arm/configs/mps2_defconfig create mode 100644 arch/arm/mach-vexpress/Makefile.boot create mode 100644 arch/arm/mach-vexpress/v2m-mps2.c -- 1.7.9.5