From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Date: Wed, 22 Feb 2017 12:37:09 +0100 Subject: [OpenRISC] [PATCH v3 10/25] openrisc: add spinlock implementation In-Reply-To: <9ec913b47790e9412d5b71a5fc52794ce4ebafb9.1487702890.git.shorne@gmail.com> References: <9ec913b47790e9412d5b71a5fc52794ce4ebafb9.1487702890.git.shorne@gmail.com> Message-ID: <20170222113709.GP6515@twins.programming.kicks-ass.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: openrisc@lists.librecores.org On Wed, Feb 22, 2017 at 04:11:39AM +0900, Stafford Horne wrote: > +static inline int arch_spin_trylock(arch_spinlock_t *lock) > +{ > + unsigned long contended, tmp; > + u32 slock; > + > + /* contended = (lock->tickets.owner != lock->tickets.next) */ > + __asm__ __volatile__( > + "1: l.lwa %0, 0(%3) \n" > + " l.srli %1, %0, 16 \n" > + " l.andi %2, %0, 0xffff \n" > + " l.sfeq %1, %2 \n" > + " l.bnf 1f \n" > + " l.ori %1, r0, 1 \n" > + " l.add %0, %0, %4 \n" > + " l.swa 0(%3), %0 \n" > + " l.bnf 1b \n" > + " l.ori %1, r0, 0 \n" #ifdef CONFIG_SMP " l.sync \n" #endif > + "1: \n" > + : "=&r" (slock), "=&r" (contended), "=&r" (tmp) > + : "r" (&lock->slock), "r" (1 << TICKET_SHIFT) > + : "cc", "memory"); > + Then s/contended/acquired/, flip the bitset in the asm, and replace the entire thing below with: return acquired; > + if (!contended) { > + smp_mb(); > + return 1; > + } else { > + return 0; > + } > +} From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932447AbdBVLha (ORCPT ); Wed, 22 Feb 2017 06:37:30 -0500 Received: from bombadil.infradead.org ([65.50.211.133]:53240 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932291AbdBVLhS (ORCPT ); Wed, 22 Feb 2017 06:37:18 -0500 Date: Wed, 22 Feb 2017 12:37:09 +0100 From: Peter Zijlstra To: Stafford Horne Cc: Jonas Bonn , Stefan Kristiansson , linux@roeck-us.net, openrisc@lists.librecores.org, linux-kernel@vger.kernel.org, Ingo Molnar Subject: Re: [PATCH v3 10/25] openrisc: add spinlock implementation Message-ID: <20170222113709.GP6515@twins.programming.kicks-ass.net> References: <9ec913b47790e9412d5b71a5fc52794ce4ebafb9.1487702890.git.shorne@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9ec913b47790e9412d5b71a5fc52794ce4ebafb9.1487702890.git.shorne@gmail.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Feb 22, 2017 at 04:11:39AM +0900, Stafford Horne wrote: > +static inline int arch_spin_trylock(arch_spinlock_t *lock) > +{ > + unsigned long contended, tmp; > + u32 slock; > + > + /* contended = (lock->tickets.owner != lock->tickets.next) */ > + __asm__ __volatile__( > + "1: l.lwa %0, 0(%3) \n" > + " l.srli %1, %0, 16 \n" > + " l.andi %2, %0, 0xffff \n" > + " l.sfeq %1, %2 \n" > + " l.bnf 1f \n" > + " l.ori %1, r0, 1 \n" > + " l.add %0, %0, %4 \n" > + " l.swa 0(%3), %0 \n" > + " l.bnf 1b \n" > + " l.ori %1, r0, 0 \n" #ifdef CONFIG_SMP " l.sync \n" #endif > + "1: \n" > + : "=&r" (slock), "=&r" (contended), "=&r" (tmp) > + : "r" (&lock->slock), "r" (1 << TICKET_SHIFT) > + : "cc", "memory"); > + Then s/contended/acquired/, flip the bitset in the asm, and replace the entire thing below with: return acquired; > + if (!contended) { > + smp_mb(); > + return 1; > + } else { > + return 0; > + } > +}