From owner-svn-src-head@freebsd.org Wed Jan 17 15:12:22 2018 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 10222E76125; Wed, 17 Jan 2018 15:12:22 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from c.mail.sonic.net (c.mail.sonic.net [64.142.111.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E98CC73935; Wed, 17 Jan 2018 15:12:21 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from comporellon.tachypleus.net (cpe-75-82-218-62.socal.res.rr.com [75.82.218.62]) (authenticated bits=0) by c.mail.sonic.net (8.15.1/8.15.1) with ESMTPSA id w0HFCIfm023900 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 17 Jan 2018 07:12:19 -0800 Subject: Re: svn commit: r328078 - head/sys/powerpc/conf To: Wojciech Macek , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201801170933.w0H9XHu1085819@repo.freebsd.org> From: Nathan Whitehorn Message-ID: Date: Wed, 17 Jan 2018 07:12:18 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <201801170933.w0H9XHu1085819@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Sonic-CAuth: UmFuZG9tSVZiPdUDf452z4PyoskJ+a0231ZGgh4gRMRUqV6msMYKiX9QuddbXZEe0uvENDelc4e3lxCDS6BJMphHxzP0dnSzSM4pcE4oQSo= X-Sonic-ID: C;cKU9z5j75xGv5dzi2dYaJA== M;XO6Zz5j75xGv5dzi2dYaJA== X-Spam-Flag: No X-Sonic-Spam-Details: 0.0/5.0 by cerberusd 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: Wed, 17 Jan 2018 15:12:22 -0000 Please revert the AHCI removal. It works just fine on big-endian hardware and has for a long time -- I think the problem may be limited to you specific hardware. -Nathan On 01/17/18 01:33, Wojciech Macek wrote: > Author: wma > Date: Wed Jan 17 09:33:16 2018 > New Revision: 328078 > URL: https://svnweb.freebsd.org/changeset/base/328078 > > Log: > PPC64: add CXGBE and remove AHCI from GENERIC64 > > Add CXGBE driver which is required for PowerNV system. > Also, remove AHCI which does not work in BigEndian. > > Created by: Wojciech Macek > Obtained from: Semihalf > Sponsored by: QCM Technologies > > Modified: > head/sys/powerpc/conf/GENERIC64 > > Modified: head/sys/powerpc/conf/GENERIC64 > ============================================================================== > --- head/sys/powerpc/conf/GENERIC64 Wed Jan 17 08:01:51 2018 (r328077) > +++ head/sys/powerpc/conf/GENERIC64 Wed Jan 17 09:33:16 2018 (r328078) > @@ -107,7 +107,7 @@ options PCI_HP # PCI-Express native HotPlug > device agp > > # ATA controllers > -device ahci # AHCI-compatible SATA controllers > +#device ahci # AHCI-compatible SATA controllers > device ata # Legacy ATA/SATA controllers > device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA > device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA > @@ -143,6 +143,7 @@ device ix # Intel PRO/10GbE PCIE PF Ethernet Family > device ixv # Intel PRO/10GbE PCIE VF Ethernet Family > device glc # Sony Playstation 3 Ethernet > device llan # IBM pSeries Virtual Ethernet > +device cxgbe # Chelsio 10/25G NIC > > # PCI Ethernet NICs that use the common MII bus controller code. > device miibus # MII bus support >