From mboxrd@z Thu Jan 1 00:00:00 1970 From: khilman@baylibre.com (Kevin Hilman) Date: Mon, 27 Jun 2016 10:18:02 -0700 Subject: RTC support for AMlogic devies In-Reply-To: <1467039135-26588-1-git-send-email-ben.dooks@codethink.co.uk> (Ben Dooks's message of "Mon, 27 Jun 2016 15:52:11 +0100") References: <1467039135-26588-1-git-send-email-ben.dooks@codethink.co.uk> Message-ID: To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org Ben Dooks writes: > This series is support for the RTC block on some of the AMLogic > Meson ARM SoCs. > > The first patch is the driver, followed by device-tree patches > and enablement for the ODRoid-C1 (where it has been tested) In the cover letter, please be explicit about any dependencies that are not upstream. This series applies to mainline (v4.7-rc*) but does not build. I tested it with my v4.7/integ branch and it seems to work. The series also has a handful of checkpatch warnings that should be addressed (see: http://hastebin.com/tacurokasu.pas) Other than that, I gave it a quick spin on meson8b-odroidc1 using tools/testing/selftests/timers/rtctest.c, and the basic time stuff seems to be working: / # ./rtctest RTC Driver Test Example. ...Update IRQs not supported. Current RTC date/time is 27-6-2016, 00:01:41. RTC_ALM_READ ioctl: Invalid argument From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Sender: rtc-linux@googlegroups.com Received: from mail-pf0-x230.google.com (mail-pf0-x230.google.com. [2607:f8b0:400e:c00::230]) by gmr-mx.google.com with ESMTPS id un17si2723262pab.0.2016.06.27.10.18.05 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 27 Jun 2016 10:18:05 -0700 (PDT) Received: by mail-pf0-x230.google.com with SMTP id t190so63756428pfb.3 for ; Mon, 27 Jun 2016 10:18:05 -0700 (PDT) From: Kevin Hilman To: Ben Dooks Cc: linux-kernel@lists.codethink.co.uk, rtc-linux@googlegroups.com, a.zummo@towertech.it, alexandre.belloni@free-electrons.com, devicetree@vger.kernel.org, robh+dt@kernel.org, frowand.list@gmail.com, linux-amlogic@lists.infradead.org Subject: [rtc-linux] Re: RTC support for AMlogic devies References: <1467039135-26588-1-git-send-email-ben.dooks@codethink.co.uk> Date: Mon, 27 Jun 2016 10:18:02 -0700 In-Reply-To: <1467039135-26588-1-git-send-email-ben.dooks@codethink.co.uk> (Ben Dooks's message of "Mon, 27 Jun 2016 15:52:11 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Reply-To: rtc-linux@googlegroups.com List-ID: List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , Ben Dooks writes: > This series is support for the RTC block on some of the AMLogic > Meson ARM SoCs. > > The first patch is the driver, followed by device-tree patches > and enablement for the ODRoid-C1 (where it has been tested) In the cover letter, please be explicit about any dependencies that are not upstream. This series applies to mainline (v4.7-rc*) but does not build. I tested it with my v4.7/integ branch and it seems to work. The series also has a handful of checkpatch warnings that should be addressed (see: http://hastebin.com/tacurokasu.pas) Other than that, I gave it a quick spin on meson8b-odroidc1 using tools/testing/selftests/timers/rtctest.c, and the basic time stuff seems to be working: / # ./rtctest RTC Driver Test Example. ...Update IRQs not supported. Current RTC date/time is 27-6-2016, 00:01:41. RTC_ALM_READ ioctl: Invalid argument -- You received this message because you are subscribed to "rtc-linux". Membership options at http://groups.google.com/group/rtc-linux . Please read http://groups.google.com/group/rtc-linux/web/checklist before submitting a driver. --- You received this message because you are subscribed to the Google Groups "rtc-linux" group. To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com. For more options, visit https://groups.google.com/d/optout. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: RTC support for AMlogic devies Date: Mon, 27 Jun 2016 10:18:02 -0700 Message-ID: References: <1467039135-26588-1-git-send-email-ben.dooks@codethink.co.uk> Reply-To: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Sender: rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org In-Reply-To: <1467039135-26588-1-git-send-email-ben.dooks-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> (Ben Dooks's message of "Mon, 27 Jun 2016 15:52:11 +0100") List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: Ben Dooks Cc: linux-kernel-81qHHgoATdFT9dQujB1mzip2UmYkHbXO@public.gmane.org, rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org, a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org, alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, frowand.list-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org, linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org List-Id: devicetree@vger.kernel.org Ben Dooks writes: > This series is support for the RTC block on some of the AMLogic > Meson ARM SoCs. > > The first patch is the driver, followed by device-tree patches > and enablement for the ODRoid-C1 (where it has been tested) In the cover letter, please be explicit about any dependencies that are not upstream. This series applies to mainline (v4.7-rc*) but does not build. I tested it with my v4.7/integ branch and it seems to work. The series also has a handful of checkpatch warnings that should be addressed (see: http://hastebin.com/tacurokasu.pas) Other than that, I gave it a quick spin on meson8b-odroidc1 using tools/testing/selftests/timers/rtctest.c, and the basic time stuff seems to be working: / # ./rtctest RTC Driver Test Example. ...Update IRQs not supported. Current RTC date/time is 27-6-2016, 00:01:41. RTC_ALM_READ ioctl: Invalid argument -- You received this message because you are subscribed to "rtc-linux". Membership options at http://groups.google.com/group/rtc-linux . Please read http://groups.google.com/group/rtc-linux/web/checklist before submitting a driver. --- You received this message because you are subscribed to the Google Groups "rtc-linux" group. To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/d/optout.