Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934008AbcJMFHI (ORCPT ); Thu, 13 Oct 2016 01:07:08 -0400 Received: from 216-12-86-13.cv.mvl.ntelos.net ([216.12.86.13]:55952 "EHLO brightrain.aerifal.cx" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755043AbcJMFHH (ORCPT ); Thu, 13 Oct 2016 01:07:07 -0400 Date: Thu, 13 Oct 2016 01:04:13 -0400 From: Rich Felker To: Daniel Lezcano Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-sh@vger.kernel.org, Rob Herring , Mark Rutland , Thomas Gleixner , "Paul E. McKenney" Subject: Re: [PATCH v8 2/2] clocksource: add J-Core timer/clocksource driver Message-ID: <20161013050413.GU19318@brightrain.aerifal.cx> References: <588ea0a3175fcf5d409ca32249f24760f2f6f839.1475990489.git.dalias@libc.org> <20161011181812.GA1697@mai> <20161011202850.GK19318@brightrain.aerifal.cx> <20161012092711.GC1697@mai> <20161012170236.GP19318@brightrain.aerifal.cx> <20161012213126.GA1508@mai> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161012213126.GA1508@mai> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5696 Lines: 124 On Wed, Oct 12, 2016 at 11:31:26PM +0200, Daniel Lezcano wrote: > > > I understand the goal is to have one single configuration and everything > > > DT based and it sounds great but what is missing here is just a subarch, > > > not an option to enable/disable the timer. > > > > > > Give a try with: > > > > > > make ARCH=arm multi_v7_defconfig menuconfig > > > > > > --> System Type > > > > > > That is what you are looking for, a SUPERH config option selecting all the > > > common options and then a JCORE config option adding the different missing > > > bits, namely the CLKSRC_JCORE_PIT. > > > > We do have something like "system type" in arch/sh, and it's what I'm > > trying to deprecate since it's the switch to select between all the > > hard-coded board files, _or_ device tree. > > > > Since part of the goal of my DT overhaul is to be able (but not > > forced) to produce kernels that run on a wide range of hardware, > > rather than having a "system type (select one)" option, what about > > individual boolean options like: > > > > config JCORE_SOC > > bool "Support for J-Core SoCs" > > select CLKSRC_JCORE_PIT > > select JCORE_AIC > > ... > > I'm perfectly fine with this. > > > Note that there are other drivers that should probably be optional > > even if you have JCORE_SOC enabled, like the SPI controller, DMA > > controller (not implemented yet), Ethernet (not submitted upstream > > yet), etc. Maybe they could depend on JCORE_SOC and be default-yes but > > configurable if available? > > That sounds fine also. > > > In any case, the SoC support is supposedly there in the current kernel > > release (4.8) but not working because of missing essential drivers, so > > I'd really like to fix that without making the fix dependent on > > restructuring the arch/sh system type handling, which is an ongoing, > > independent project for which I'm waiting for help converting and > > testing the conversions of legacy board support. My preference would > > be to keep the Kconfig stuff the way I submitted it for now -- > > j2_defconfig already handles enabling thse right drivers -- and do > > something more user-friendly as part of the bigger arch overhaul > > project. > > I prefer the move the option to config JCORE_SOC. That is not a big deal > to add this bool in the sh's Kconfig and select the timer from there. OK, I'll do this and add the patch to my planned pull request, and send a corresponding Kconfig patch for the interrupt controller. > > > > > > + /* > > > > > > + * The J-Core PIT is not hard-wired to a particular IRQ, but > > > > > > + * integrated with the interrupt controller such that the IRQ it > > > > > > + * generates is programmable. The programming interface has a > > > > > > + * legacy field which was an interrupt priority for AIC1, but > > > > > > + * which is OR'd onto bits 2-5 of the generated IRQ number when > > > > > > + * used with J-Core AIC2, so set it to match these bits. > > > > > > + */ > > > > > > + hwirq = irq_get_irq_data(pit_irq)->hwirq; > > > > > > + irqprio = (hwirq >> 2) & PIT_PRIO_MASK; > > > > > > + enable_val = (1U << PIT_ENABLE_SHIFT) > > > > > > + | (hwirq << PIT_IRQ_SHIFT) > > > > > > + | (irqprio << PIT_PRIO_SHIFT); > > > > > > + > > > > > > > > > > Why mention AIC1 if there is not test to check if AIC1 || AIC2 ? > > > > > > > > > > Will be the same information available if the irqchip is AIC1 ? > > > > > > > > The bit layout of the PIT enable register is: > > > > > > > > .....e..ppppiiiiiiii............ > > > > > > > > where the .'s indicate unrelated/unused bits, e is enable, p is > > > > priority, and i is hard irq number. > > > > > > > > For the PIT included in AIC1 (obsolete but still in use), any hard irq > > > > (trap number) can be programmed via the 8 iiiiiiii bits, and a > > > > priority (0-15) is programmable separately in the pppp bits. > > > > > > > > For the PIT included in AIC2 (current), the programming interface is > > > > equivalent modulo interrupt mapping. This is why a different > > > > compatible tag was not used. However only traps 64-127 (the ones > > > > actually intended to be used for interrupts, rather than > > > > syscalls/exceptions/etc.) can be programmed (the high 2 bits of i are > > > > ignored) and the priority pppp is <<2'd and or'd onto the irq number. > > > > This was a poor decision made on the hardware engineering side based > > > > on a wrong assumption that preserving old priority mapping of outdated > > > > software was important, whereas priorities weren't/aren't even being > > > > used. > > > > > > > > When we do the next round of interrupt controller improvements (AIC3) > > > > the PIT programming interface should remain compatible with the > > > > driver; likely the priority bits will just be ignored. > > > > > > > > If we do want to change the programming interface beyond this at some > > > > point (that maay be a good idea, since we have identified several > > > > things that are less than ideal for Linux, like the sechi/seclo/ns > > > > clocksource), a new compatible tag will be added instead. > > > > > > Ok, thanks for the clarification. Can you add your answer as a comment for > > > the bits dance above ? > > > > Are you happy with the whole quoted text above as a comment? If so I'm > > happy to include it verbatim. I would lean towards condensing or > > omitting the last 2 paragraphs (starting with "When we do...") if > > that's okay with you since they are not documenting the hw but future > > plans/policy. > > Makes sense. > > Agree for the verbatim minus the last 2 paragraphs. OK. I'll prepare a new patch with this and the previously-discussed changes. Rich