From owner-cvs-src-old@FreeBSD.ORG Thu Feb 5 18:13:21 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D89A1106566C for ; Thu, 5 Feb 2009 18:13:21 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C5CC58FC08 for ; Thu, 5 Feb 2009 18:13:21 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n15IDLwB081989 for ; Thu, 5 Feb 2009 18:13:21 GMT (envelope-from sam@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n15IDLRp081988 for cvs-src-old@freebsd.org; Thu, 5 Feb 2009 18:13:21 GMT (envelope-from sam@repoman.freebsd.org) Message-Id: <200902051813.n15IDLRp081988@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to sam@repoman.freebsd.org using -f From: Sam Leffler Date: Thu, 5 Feb 2009 18:12:07 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf options src/sys/dev/cfi cfi_core.c cfi_dev.c cfi_reg.h cfi_var.h src/sys/sys cfictl.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2009 18:13:22 -0000 sam 2009-02-05 18:12:07 UTC FreeBSD src repository Modified files: sys/conf options sys/dev/cfi cfi_core.c cfi_dev.c cfi_reg.h cfi_var.h sys/sys cfictl.h Log: SVN rev 188156 on 2009-02-05 18:12:07Z by sam Add support for frobbing Intel StrataFlash Protection Registers: o add CFI_SUPPORT_STRATAFLASH compile option to enable support o add new ioctls to get/set the factory and user/oem segments of the PR and to get/set Protection Lock Register that fuses the user segment o add #defines for bits in the status register o update cfi_wait_ready to take an offset so it can be used to wait for PR write completion and replace constants w/ symbolic names Note: writing the user segment isn't correct; committing now to get review. Sponsored by: Carlson Wireless Reviewed by: imp, Chris Anderson Revision Changes Path 1.659 +4 -0 src/sys/conf/options 1.3 +162 -13 src/sys/dev/cfi/cfi_core.c 1.3 +20 -2 src/sys/dev/cfi/cfi_dev.c 1.2 +22 -0 src/sys/dev/cfi/cfi_reg.h 1.2 +7 -0 src/sys/dev/cfi/cfi_var.h 1.3 +6 -0 src/sys/sys/cfictl.h