From owner-svn-src-head@freebsd.org Sun Oct 21 20:12:24 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B2AAFFF2A1; Sun, 21 Oct 2018 20:12:24 +0000 (UTC) (envelope-from gonzo@freebsd.org) Received: from id.bluezbox.com (id.bluezbox.com [45.55.20.155]) (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 DFB097636C; Sun, 21 Oct 2018 20:12:23 +0000 (UTC) (envelope-from gonzo@freebsd.org) Received: from localhost ([127.0.0.1] helo=id.bluezbox.com) by id.bluezbox.com with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1 (FreeBSD)) (envelope-from ) id 1gEK58-000PXZ-WE; Sun, 21 Oct 2018 13:12:15 -0700 Received: (from gonzo@localhost) by id.bluezbox.com (8.15.2/8.15.2/Submit) id w9LKCEhM098180; Sun, 21 Oct 2018 13:12:14 -0700 (PDT) (envelope-from gonzo@freebsd.org) X-Authentication-Warning: id.bluezbox.com: gonzo set sender to gonzo@freebsd.org using -f Date: Sun, 21 Oct 2018 13:12:14 -0700 From: Oleksandr Tymoshenko To: Nathan Whitehorn Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r339523 - in head/sys: conf dev/amdgpio modules modules/amdgpio Message-ID: <20181021201214.GA98172@bluezbox.com> References: <201810210452.w9L4qbTc067553@repo.freebsd.org> <49432512-861b-47dd-4e25-08044b0b53fa@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <49432512-861b-47dd-4e25-08044b0b53fa@freebsd.org> X-Operating-System: FreeBSD/11.1-RELEASE-p4 (amd64) User-Agent: Mutt/1.10.0 (2018-05-17) X-Spam-Level: -- X-Spam-Report: Spam detection software, running on the system "id.bluezbox.com", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: Nathan Whitehorn (nwhitehorn@freebsd.org) wrote: > > > On 10/20/18 9:52 PM, Oleksandr Tymoshenko wrote: > > Author: gonzo > > Date: Sun Oct 21 04:52:37 2018 > > New Revision: 339523 > > URL: https://s [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 21 Oct 2018 20:12:24 -0000 Nathan Whitehorn (nwhitehorn@freebsd.org) wrote: > > > On 10/20/18 9:52 PM, Oleksandr Tymoshenko wrote: > > Author: gonzo > > Date: Sun Oct 21 04:52:37 2018 > > New Revision: 339523 > > URL: https://svnweb.freebsd.org/changeset/base/339523 > > > > Log: > > Add amdgpio, driver for GPIO controller on AMD-based x86_64 platforms > > > > Submitted by: Rajesh Kumar > > Differential Revision: https://reviews.freebsd.org/D16865 > > > [...] > > Modified: head/sys/modules/Makefile > > ============================================================================== > > --- head/sys/modules/Makefile Sun Oct 21 02:39:13 2018 (r339522) > > +++ head/sys/modules/Makefile Sun Oct 21 04:52:37 2018 (r339523) > > @@ -34,6 +34,7 @@ SUBDIR= \ > > ale \ > > alq \ > > ${_amd_ecc_inject} \ > > + ${_amdgpio} \ > > ${_amdsbwd} \ > > ${_amdsmn} \ > > ${_amdtemp} \ > > @@ -717,6 +718,7 @@ _x86bios= x86bios > > .endif > > > > .if ${MACHINE_CPUARCH} == "amd64" > > +_amdgpio= amdgpio > > _ccp= ccp > > _efirt= efirt > > _iavf= iavf > > > > Does this not work on 64-bit AMD processors running i386 kernels? I see no reason why it wouldn't. Probably just haven't been tested. -- gonzo