From owner-freebsd-arm@FreeBSD.ORG Thu Feb 22 15:25:25 2007 Return-Path: X-Original-To: freebsd-arm@freebsd.org Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A962316A402 for ; Thu, 22 Feb 2007 15:25:25 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 694CF13C4A3 for ; Thu, 22 Feb 2007 15:25:25 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id l1MFMQqO012837; Thu, 22 Feb 2007 08:22:26 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Thu, 22 Feb 2007 08:22:27 -0700 (MST) Message-Id: <20070222.082227.-2001110508.imp@bsdimp.com> To: krassi@bulinfo.net From: "M. Warner Losh" In-Reply-To: <45DD6E45.5000505@bulinfo.net> References: <45DD6E45.5000505@bulinfo.net> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Thu, 22 Feb 2007 08:22:26 -0700 (MST) Cc: freebsd-arm@freebsd.org Subject: Re: SD card support? X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Feb 2007 15:25:25 -0000 In message: <45DD6E45.5000505@bulinfo.net> Krassimir Slavchev writes: : Hello, : : I've read that SD is not supported by qdmmc and now qdmmc does not exist : in the source tree. : Are the SD cards supported by mmcsd driver? Yes. The qdmmc driver is no more. The at91_mci driver is the host adapter driver, mmc is the bus, and mmcsd is support for mmc/sd cards (although only sd will work at the moment due to lack of hardware). : Also what this line in dmesg means: : 'Cannot get 100 Hz clock; using 100Hz' : May be something is not initialized? No, that just means you can't divide 32768 by 100 evenly. Warner