From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752250Ab3LATrT (ORCPT ); Sun, 1 Dec 2013 14:47:19 -0500 Received: from gloria.sntech.de ([95.129.55.99]:35109 "EHLO gloria.sntech.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751921Ab3LATrR (ORCPT ); Sun, 1 Dec 2013 14:47:17 -0500 To: Alessandro Zummo Subject: [PATCH v3 0/2] Add support for hym8563 rtcs Cc: Rob Herring , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , devicetree@vger.kernel.org, Grant Likely , linux-kernel@vger.kernel.org, rtc-linux@googlegroups.com, Mike Turquette , Richard Weinberger From: Heiko =?iso-8859-1?q?St=FCbner?= Date: Sun, 1 Dec 2013 20:47:02 +0100 MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201312012047.02299.heiko@sntech.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series adds support for the Haoyu Microelectronics HYM8563 rtc. This chip is often used in designs around the Cortex-A9 SoCs from Rockchip to provide rtc functionality and the 32kHz suspend clock the SoC needs. changes since v2: - get size for devm_kzalloc from struct not from pointer changes since v1: - add haoyu prefix to vendor-prefixes.txt - use gpio_to_irq to get the alarm interrupt instead of specifying it separately to the gpio itself Heiko Stuebner (2): dt-bindings: add hym8563 binding rtc: add hym8563 rtc-driver .../devicetree/bindings/rtc/haoyu,hym8563.txt | 27 + .../devicetree/bindings/vendor-prefixes.txt | 1 + drivers/rtc/Kconfig | 11 + drivers/rtc/Makefile | 1 + drivers/rtc/rtc-hym8563.c | 626 ++++++++++++++++++++ 5 files changed, 666 insertions(+) create mode 100644 Documentation/devicetree/bindings/rtc/haoyu,hym8563.txt create mode 100644 drivers/rtc/rtc-hym8563.c -- 1.7.10.4