From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755391AbbHNPYE (ORCPT ); Fri, 14 Aug 2015 11:24:04 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:34677 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754683AbbHNPYB (ORCPT ); Fri, 14 Aug 2015 11:24:01 -0400 Date: Fri, 14 Aug 2015 09:24:28 -0600 From: Lina Iyer To: Ohad Ben-Cohen Cc: Bjorn Andersson , Jeffrey Hugo , "linux-arm-msm@vger.kernel.org" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH RFC v2 0/2] hwspinlock: Introduce raw capability for hwspinlock_device Message-ID: <20150814152428.GE86880@linaro.org> References: <1433867020-7746-1-git-send-email-lina.iyer@linaro.org> <20150627030514.GA893@linaro.org> <20150702203028.GA4711@linaro.org> <20150728215122.GE51847@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 13 2015 at 00:34 -0600, Ohad Ben-Cohen wrote: >On Wed, Jul 29, 2015 at 12:51 AM, Lina Iyer wrote: >>> Let's not make this more complicated than needed, so please add the >>> hwcaps member to hwspinlock_device instead of to hwspinlock struct. We >>> could always change this later if it proves to be insufficient. >>> >> But this could yield wrong locking scenarios. If banks are allowed RAW >> capability and is not enforced on a per-lock basis, a driver may lock >> using non-raw lock using the _raw API, while another driver may >> 'acquire' the lock (since the value written to the lock would be the >> same as raw api would). That is why you should have the capability on >> hwspinlock and not on hwspinlock_device. Locks that are defined are RAW >> capable should be used as RAW only. >> >> QCOM platform hwlock #7 is unique that different CPUs trying to acquire >> the lock would write different values and hence would be fine. But, the >> same is not true for other locks in the bank. > >As far as I understand, there is nothing special about QCOM's hwlock >#7 in terms of hardware. It's exactly the same lock as all the others. > >The only difference in hwlock #7 is the way you use it, and that >sounds like a decision the driver should be able to make. It's a >policy, and I'm not sure we should put it in the DT. I'm also not sure >we need this hwlock-specific complexity in the hwspinlock framework. > The way I see it, we made a design assumption that all hwspinlocks would need a s/w spinlock around it. The lock #7 here challenges that assumption. The framework imposes a s/w lock and it is only appropriate that the framework provide an option to overcome that. The hwspinlock bank is just a way to initalize a set of locks in a SoC. Nobody needs the bank after that. Drivers access locks individually. It only seems appropriate that the raw be a property of the lock access. >The driver already makes a decision whether to disable the interrupts >or not and whether to save their state or not. So it can also make a >decision whether to take a sw spinlock at all or not --- if the >hardware allows it. and that if should be encoded in an accessible >vendor specific (not hwlock specific) struct, which is setup by the >underlying vendor specific hwspinlock driver (no DT involved). > Would you rather query the hwspinlock driver to see if the framework should take a s/w spinlock or not, IOW, raw-accessible or not? That could work. Every time we call into the raw access API, the framework could query the hwspinlock driver and then bail out if the hwlock is not raw accessible. >Let's go over your aforementioned concerns: >> But this could yield wrong locking scenarios. If banks are allowed RAW >> capability and is not enforced on a per-lock basis, a driver may lock >> using non-raw lock using the _raw API > >If this is allowed by the hardware, then this is a valid scenario. >There's no such thing a non-raw lock: a lock is raw if a raw >functionality is required. > Agreed. I believe, we are saying the same thing. A raw access is a request from the calling driver. It is a request from the driver to directly talk to its hwspinlock driver, without any encumberance from the framework. >> while another driver may >> 'acquire' the lock (since the value written to the lock would be the >> same as raw api would). > >Not sure I understand this one. If a lock has already been assigned to >a driver, it cannot be re-assigned to another driver. > Nevermind, not a good example. Thanks, Lina