From owner-svn-doc-all@FreeBSD.ORG Thu Oct 9 22:37:50 2014 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 458C78DF; Thu, 9 Oct 2014 22:37:50 +0000 (UTC) Received: from svn.freebsd.org (svn.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 308A27AC; Thu, 9 Oct 2014 22:37:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99MbofM051147; Thu, 9 Oct 2014 22:37:50 GMT (envelope-from wblock@FreeBSD.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99Mboux051146; Thu, 9 Oct 2014 22:37:50 GMT (envelope-from wblock@FreeBSD.org) Message-Id: <201410092237.s99Mboux051146@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wblock set sender to wblock@FreeBSD.org using -f From: Warren Block Date: Thu, 9 Oct 2014 22:37:50 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r45760 - head/en_US.ISO8859-1/htdocs/news/status X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 22:37:50 -0000 Author: wblock Date: Thu Oct 9 22:37:49 2014 New Revision: 45760 URL: https://svnweb.freebsd.org/changeset/doc/45760 Log: Add SDIO report. Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2014-07-2014-09.xml Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2014-07-2014-09.xml ============================================================================== --- head/en_US.ISO8859-1/htdocs/news/status/report-2014-07-2014-09.xml Thu Oct 9 19:46:41 2014 (r45759) +++ head/en_US.ISO8859-1/htdocs/news/status/report-2014-07-2014-09.xml Thu Oct 9 22:37:49 2014 (r45760) @@ -1021,7 +1021,7 @@ - SSE Variants of libc Routines for amd64 + SSE Variants of <tt>libc</tt> Routines for amd64 @@ -1038,7 +1038,7 @@ -

I have written SSE/AVX-optimized versions of a few libc +

I have written SSE/AVX-optimized versions of a few libc routines for amd64. So far the list includes memcpy, memset, and strlen. For each routine I have written a simple regression test as well as performed some @@ -1049,7 +1049,7 @@ memset have proven trickier as different variants can behave quite differently on different CPUs.

-

At present, I do not yet have a patch relative to libc. Once +

At present, I do not yet have a patch relative to libc. Once I do, this will be suitable for more testing. I'd like to see some real-world benchmarks that show measurable improvement before pushing any of this up into the tree.

@@ -1057,7 +1057,7 @@ -

Create a branch that holds a modified libc and is suitable +

Create a branch that holds a modified libc and is suitable for testing

@@ -1127,4 +1127,76 @@
+ + + SDIO Driver + + + + + Ilya + Bakulin + + ilya@bakulin.de + + + + + SDIO project page on FreeBSD wiki + Source code + Patch for review + + + +

SDIO is an interface designed as an extension of the existing + SD card standard, allowing connection of different peripherals + to the host with the standard SD controller. Peripherals + currently sold in the general market include WLAN/BT modules, + cameras, fingerprint readers, and barcode scanners. SDIO is + also used to connect some peripherals in products like + Chromebooks and Wandboard.

+ +

The current main focus of the project is to reimplement the + existing MMC/SD stack using the CAM framework. This will + allow utilizing the well-tested CAM locking model and debug + features.

+ +

The first version of the code was uploaded on Phabricator for + review. The new stack is able to attach to the SD card and + bring it to an operational state. The only supported SD + controller driver is ti_sdhci which is used by the + BeagleBone Black. Modifying other SDHCI-compliant drivers + should not be a hard task.

+ + + + +

At this point, feedback from kernel developers is really + needed. This may be done in the form of code review. If + the chosen way of implementing the CAM-aware MMC stack is + considered correct, then adding code for interacting with SD + cards (for example, setting the optimal transfer rates) will + be the next task.

+
+ + +

Write a CAM peripheral driver that implements an interface + to the FreeBSD disk(9). It will send MMC I/O + commands using the MMC XPT layer.

+
+ + +

Extending camcontrol(8) to make it possible to + send MMC-specific commands directly to the MMC/SD card using + pass(4) will greatly assist in developing new features for + the stack.

+
+ + +

Modify the sdhci(4) driver to work with the new + stack. This is required to work on the new stack using PC + hardware, not only the BeagleBone Black.

+
+
+