From owner-freebsd-arm@FreeBSD.ORG Tue Feb 4 19:12:01 2014 Return-Path: Delivered-To: freebsd-arm@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 297E6A01; Tue, 4 Feb 2014 19:12:01 +0000 (UTC) Received: from mho-01-ewr.mailhop.org (mho-03-ewr.mailhop.org [204.13.248.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EFFAA1FB5; Tue, 4 Feb 2014 19:12:00 +0000 (UTC) Received: from c-24-8-230-52.hsd1.co.comcast.net ([24.8.230.52] helo=damnhippie.dyndns.org) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1WAlPb-0001go-MN; Tue, 04 Feb 2014 19:11:59 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id s14JBu1G065053; Tue, 4 Feb 2014 12:11:56 -0700 (MST) (envelope-from ian@FreeBSD.org) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 24.8.230.52 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/ULsHhPM9fEha1hVAXLZhE Subject: Re: Turning WITNESS off on Beaglebone Black From: Ian Lepore To: Olivier Houchard In-Reply-To: <20140204182031.GA65637@freebsd.org> References: <52F09836.5070505@g7iii.net> <20140204182031.GA65637@freebsd.org> Content-Type: text/plain; charset="us-ascii" Date: Tue, 04 Feb 2014 12:11:56 -0700 Message-ID: <1391541116.1196.7.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-arm@FreeBSD.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Feb 2014 19:12:01 -0000 On Tue, 2014-02-04 at 18:20 +0000, Olivier Houchard wrote: > On Tue, Feb 04, 2014 at 07:35:18AM +0000, Iain Young wrote: > > Hi Folks, > > > > Hi Iain, > > > Anyone else having issues on the Beaglebone Black when disabling > > WITNESS ? This is on 11.0-CURRENT, r261200. I saw it a few weeks > > ago, as well, but got busy and decided to wait for the snapshots > > and try again. > > > > Can you upgrade your sources and try again ? r261414 may fix this. > > Thanks ! > > Olivier I don't think it'll help, beaglebone doesn't use ti_mmchs, it uses ti_sdhci. But updating to the latest is never a bad idea when looking into this sort of problem. Hmm, it's also possible to switch beaglebone to ti_mmchs just to see if that changes things, which you can do like this: Index: sys/arm/ti/am335x/files.am335x =================================================================== --- sys/arm/ti/am335x/files.am335x (revision 261491) +++ sys/arm/ti/am335x/files.am335x (working copy) @@ -9,6 +9,6 @@ arm/ti/am335x/am335x_lcd_syscons.c optional sc arm/ti/am335x/am335x_pwm.c standard arm/ti/am335x/am335x_usbss.c optional musb fdt arm/ti/ti_edma3.c standard -arm/ti/ti_sdhci.c optional sdhci -#arm/ti/ti_mmchs.c optional mmc +#arm/ti/ti_sdhci.c optional sdhci +arm/ti/ti_mmchs.c optional mmc arm/ti/cpsw/if_cpsw.c optional cpsw -- Ian