From owner-svn-src-head@freebsd.org Mon Dec 11 18:34:44 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB432E9A3F0 for ; Mon, 11 Dec 2017 18:34:44 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from pmta2.delivery6.ore.mailhop.org (pmta2.delivery6.ore.mailhop.org [54.200.129.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E28B72B54 for ; Mon, 11 Dec 2017 18:34:44 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: ee766853-dea1-11e7-93a5-cd02e7dc7692 X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.78.92.27 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.78.92.27]) by outbound2.ore.mailhop.org (Halon) with ESMTPSA id ee766853-dea1-11e7-93a5-cd02e7dc7692; Mon, 11 Dec 2017 18:34:33 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.15.2) with ESMTP id vBBIYaGr006303; Mon, 11 Dec 2017 11:34:36 -0700 (MST) (envelope-from ian@freebsd.org) Message-ID: <1513017276.5897.17.camel@freebsd.org> Subject: Re: svn commit: r326773 - in head/sys: conf dev/syscon From: Ian Lepore To: Nathan Whitehorn , Kyle Evans , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Date: Mon, 11 Dec 2017 11:34:36 -0700 In-Reply-To: References: <201712111804.vBBI44ZI074962@repo.freebsd.org> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2017 18:34:44 -0000 On Mon, 2017-12-11 at 10:14 -0800, Nathan Whitehorn wrote: > I think this name might confuse people looking for "syscons". Can it > be  > renamed? Also, if it is ARM-specific, maybe it belongs in sys/arm? > -Nathan > > On 12/11/17 10:04, Kyle Evans wrote: > > > > Author: kevans > > Date: Mon Dec 11 18:04:04 2017 > > New Revision: 326773 > > URL: https://svnweb.freebsd.org/changeset/base/326773 > > > > Log: > >    Add generic 'syscon' driver > >     It's definitely not arm-specific.  It's the modern linux/fdt way of letting drivers access MMIO spaces they don't own (in terms of those ranges being included in a reg property that would cause us to set up rman resources for the device). I'm not sure I would have made a new directory in dev/ for it though... it's such a trivial little thing I would think it belongs with the dev/extres stuff. -- Ian