From owner-freebsd-arch@FreeBSD.ORG Mon Jul 7 01:29:23 2014 Return-Path: Delivered-To: arch@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 860FC685; Mon, 7 Jul 2014 01:29:23 +0000 (UTC) Received: from mail-qa0-x236.google.com (mail-qa0-x236.google.com [IPv6:2607:f8b0:400d:c00::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 26C43290D; Mon, 7 Jul 2014 01:29:23 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id v10so3016263qac.13 for ; Sun, 06 Jul 2014 18:29:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=it2f24oFWoSXxo4Dy0+qulPfOHINE7705R9fiLGShjs=; b=r9oMK+ZOoFmbQ4kWmbSkNiT6N9tbtIpelUNpZ/evqyQVgeSIwBgz/nWGqOl+glx+tr 0UsGpaJBwDCHqviXrlTVfDIk4WSJAmH4W28eUU/RVj7ozLafs52PWYwPKXZJRWZuwExg acaCVBVsZwWCh8swNPaCAvfNBqcd/FhPPODyXSDe11Kiq9XZ4L4+r0XwBpzKCNY/skxg wfu0/q3w0SogYhPPa4l74z3ZlYgJUNJZp0XMjD/nzzvjEZ6E4nQr9D6owkmNIfAo5M/s moz2GRXBvK90TnZoLfIr005LK1MC6M8GzsD4xR9TfmzrS3VlrPOnETMYajh+RyYN8knN +ISA== MIME-Version: 1.0 X-Received: by 10.140.80.49 with SMTP id b46mr39426950qgd.102.1404696562139; Sun, 06 Jul 2014 18:29:22 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.202.193 with HTTP; Sun, 6 Jul 2014 18:29:22 -0700 (PDT) In-Reply-To: <201407070047.s670lWUv022054@gw.catspoiler.org> References: <201407070047.s670lWUv022054@gw.catspoiler.org> Date: Sun, 6 Jul 2014 18:29:22 -0700 X-Google-Sender-Auth: AwNLwYSdy0OCRyz-PQvzT7ks8pU Message-ID: Subject: Re: [patch] axe RF_TIMESHARE? From: Adrian Chadd To: Don Lewis Content-Type: text/plain; charset=UTF-8 Cc: "freebsd-arch@freebsd.org" X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jul 2014 01:29:23 -0000 On 6 July 2014 17:47, Don Lewis wrote: > On 6 Jul, Adrian Chadd wrote: >> Hi, >> >> What's it supposed to be used for? > > My understanding it that it is supposed to be used to allow two more > devices to claim the same resource, such as an I/O port range, but only > one device can be active at a time. Interesting. I wonder what kinds of things would want to do this. There's a few interesting things like implementing the spibus using this instead of the current way of calling a bus lock method before doing any bus IO. -a