Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932921AbbBBIbD (ORCPT ); Mon, 2 Feb 2015 03:31:03 -0500 Received: from mx0b-0016f401.pphosted.com ([67.231.156.173]:4754 "EHLO mx0b-0016f401.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932251AbbBBIa5 (ORCPT ); Mon, 2 Feb 2015 03:30:57 -0500 From: Chao Xie To: , , , , , , Subject: [PATCH 0/4] drivers: clocksource: add mmp timer driver Date: Mon, 2 Feb 2015 16:31:35 +0800 Message-ID: <1422865899-8152-1-git-send-email-chao.xie@marvell.com> X-Mailer: git-send-email 1.8.3.2 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.13.68,1.0.33,0.0.0000 definitions=2015-02-02_01:2015-01-30,2015-02-01,1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=7.0.1-1402240000 definitions=main-1502020092 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2150 Lines: 49 From: Chao Xie These patch will create a new timer driver in drivers/clocksource/ The timer driver will support all SOCes in mach-mmp There are two patches #2 and #3 changing the arch/mach-mmp to make DT and no-DT supported SOCes to make use of new timer driver The final patch will remove the old timer driver. The patches are tested at pxa910 and mmp2(DT and no-DT support). Because pxa168 is too old, and it is hard to find the board. So only pass the compiling. Chao Xie (4): clocksource: mmp: add mmp timer driver arm: mmp: make SOCes without DT use new timer driver arm: mmp: make SOCes with DT use new timer driver arm: mmp: remove the old timer driver .../devicetree/bindings/arm/mrvl/timer.txt | 61 +- arch/arm/boot/dts/mmp2.dtsi | 19 +- arch/arm/boot/dts/pxa168.dtsi | 20 +- arch/arm/boot/dts/pxa910.dtsi | 26 +- arch/arm/mach-mmp/Kconfig | 2 + arch/arm/mach-mmp/Makefile | 2 +- arch/arm/mach-mmp/common.h | 2 - arch/arm/mach-mmp/mmp-dt.c | 4 +- arch/arm/mach-mmp/mmp2-dt.c | 4 +- arch/arm/mach-mmp/mmp2.c | 23 +- arch/arm/mach-mmp/pxa168.c | 23 +- arch/arm/mach-mmp/pxa910.c | 24 +- arch/arm/mach-mmp/time.c | 247 ------ drivers/clocksource/Makefile | 1 + drivers/clocksource/timer-mmp.c | 837 +++++++++++++++++++++ include/linux/mmp_timer.h | 40 + 16 files changed, 1058 insertions(+), 277 deletions(-) delete mode 100644 arch/arm/mach-mmp/time.c create mode 100644 drivers/clocksource/timer-mmp.c create mode 100644 include/linux/mmp_timer.h -- 1.8.3.2 -- 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/