From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754803AbdKBMXk (ORCPT ); Thu, 2 Nov 2017 08:23:40 -0400 Received: from vps0.lunn.ch ([185.16.172.187]:38905 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751324AbdKBMXi (ORCPT ); Thu, 2 Nov 2017 08:23:38 -0400 Date: Thu, 2 Nov 2017 13:23:27 +0100 From: Andrew Lunn To: David Daney Cc: linux-mips@linux-mips.org, ralf@linux-mips.org, James Hogan , netdev@vger.kernel.org, "David S. Miller" , Rob Herring , Mark Rutland , linux-kernel@vger.kernel.org, "Steven J. Hill" , devicetree@vger.kernel.org, Carlos Munoz Subject: Re: [PATCH 3/7] MIPS: Octeon: Add a global resource manager. Message-ID: <20171102122327.GE4772@lunn.ch> References: <20171102003606.19913-1-david.daney@cavium.com> <20171102003606.19913-4-david.daney@cavium.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171102003606.19913-4-david.daney@cavium.com> 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 > +static void res_mgr_lock(void) > +{ > + unsigned int tmp; > + u64 lock = (u64)&res_mgr_info->rlock; > + > + __asm__ __volatile__( > + ".set noreorder\n" > + "1: ll %[tmp], 0(%[addr])\n" > + " bnez %[tmp], 1b\n" > + " li %[tmp], 1\n" > + " sc %[tmp], 0(%[addr])\n" > + " beqz %[tmp], 1b\n" > + " nop\n" > + ".set reorder\n" : > + [tmp] "=&r"(tmp) : > + [addr] "r"(lock) : > + "memory"); > +} > + > +static void res_mgr_unlock(void) > +{ > + u64 lock = (u64)&res_mgr_info->rlock; > + > + /* Wait until all resource operations finish before unlocking. */ > + mb(); > + __asm__ __volatile__( > + "sw $0, 0(%[addr])\n" : : > + [addr] "r"(lock) : > + "memory"); > + > + /* Force a write buffer flush. */ > + mb(); > +} It would be good to add some justification for using your own locks, rather than standard linux locks. Is there anything specific to your hardware in this resource manager? I'm just wondering if this should be generic, put somewhere in lib. Or maybe there is already something generic, and you should be using it, not re-inventing the wheel again. Andrew