From owner-svn-src-all@freebsd.org Wed Aug 26 03:37:34 2015 Return-Path: Delivered-To: svn-src-all@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 06FAB9C01E6; Wed, 26 Aug 2015 03:37:34 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 EBE1111F7; Wed, 26 Aug 2015 03:37:33 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7Q3bXB1022101; Wed, 26 Aug 2015 03:37:33 GMT (envelope-from jhibbits@FreeBSD.org) Received: (from jhibbits@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7Q3bXro022100; Wed, 26 Aug 2015 03:37:33 GMT (envelope-from jhibbits@FreeBSD.org) Message-Id: <201508260337.t7Q3bXro022100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhibbits set sender to jhibbits@FreeBSD.org using -f From: Justin Hibbits Date: Wed, 26 Aug 2015 03:37:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287154 - head/sys/powerpc/mpc85xx X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Aug 2015 03:37:34 -0000 Author: jhibbits Date: Wed Aug 26 03:37:33 2015 New Revision: 287154 URL: https://svnweb.freebsd.org/changeset/base/287154 Log: The Freescale qoriq PCIe controller is compatible with mpc85xx. Add the compatible checks. Obtained from: Semihalf (partial) Sponsored by: Alex Perez/Inertial Computing Modified: head/sys/powerpc/mpc85xx/pci_mpc85xx.c Modified: head/sys/powerpc/mpc85xx/pci_mpc85xx.c ============================================================================== --- head/sys/powerpc/mpc85xx/pci_mpc85xx.c Wed Aug 26 03:37:18 2015 (r287153) +++ head/sys/powerpc/mpc85xx/pci_mpc85xx.c Wed Aug 26 03:37:33 2015 (r287154) @@ -182,7 +182,10 @@ fsl_pcib_probe(device_t dev) if (!(ofw_bus_is_compatible(dev, "fsl,mpc8540-pci") || ofw_bus_is_compatible(dev, "fsl,mpc8540-pcie") || - ofw_bus_is_compatible(dev, "fsl,mpc8548-pcie"))) + ofw_bus_is_compatible(dev, "fsl,mpc8548-pcie") || + ofw_bus_is_compatible(dev, "fsl,p5020-pcie") || + ofw_bus_is_compatible(dev, "fsl,qoriq-pcie-v2.2") || + ofw_bus_is_compatible(dev, "fsl,qoriq-pcie"))) return (ENXIO); device_set_desc(dev, "Freescale Integrated PCI/PCI-E Controller");