From patchwork Tue Jul 12 13:08:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 968352 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p6CDA58W014793 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 12 Jul 2011 13:10:26 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qgcis-00064w-9K; Tue, 12 Jul 2011 13:09:58 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qgcir-0006JM-TI; Tue, 12 Jul 2011 13:09:57 +0000 Received: from casper.infradead.org ([2001:770:15f::2]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QgciW-0006HH-6K for linux-arm-kernel@canuck.infradead.org; Tue, 12 Jul 2011 13:09:36 +0000 Received: from mail-ww0-f49.google.com ([74.125.82.49]) by casper.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QgciU-0006wM-0J for linux-arm-kernel@lists.infradead.org; Tue, 12 Jul 2011 13:09:34 +0000 Received: by wwf22 with SMTP id 22so3613163wwf.18 for ; Tue, 12 Jul 2011 06:08:43 -0700 (PDT) Received: by 10.216.70.14 with SMTP id o14mr5746095wed.111.1310476123021; Tue, 12 Jul 2011 06:08:43 -0700 (PDT) Received: from localhost.localdomain (cpc2-aztw13-0-0-cust146.aztw.cable.virginmedia.com [77.99.12.147]) by mx.google.com with ESMTPS id u64sm7553220weq.4.2011.07.12.06.08.41 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 12 Jul 2011 06:08:42 -0700 (PDT) From: Lee Jones To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 3/3] Add documenation for new sysfs devices/soc functionallity Date: Tue, 12 Jul 2011 14:08:10 +0100 Message-Id: <1310476090-9807-3-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1310476090-9807-1-git-send-email-lee.jones@linaro.org> References: <1310476090-9807-1-git-send-email-lee.jones@linaro.org> X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110712_140934_159153_ADD0833C X-CRM114-Status: GOOD ( 12.71 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2-r929478 on casper.infradead.org summary: Content analysis details: (-2.6 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Lee Jones X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 12 Jul 2011 13:10:26 +0000 (UTC) Signed-off-by: Lee Jones --- Documentation/ABI/testing/sysfs-devices-soc | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-devices-soc diff --git a/Documentation/ABI/testing/sysfs-devices-soc b/Documentation/ABI/testing/sysfs-devices-soc new file mode 100644 index 0000000..fcf7f07 --- /dev/null +++ b/Documentation/ABI/testing/sysfs-devices-soc @@ -0,0 +1,16 @@ +What: /sys/devices/soc +Date: April 2011 +contact: Lee Jones +Description: + The /sys/devices/soc directory contains a sub-directory for each + System-on-Chip (SoC) device on a running platform. Information + regarding each SoC can be obtained by reading sysfs files. This + functionallity is only available if implemented by the platform. + This directory contains two kinds of attributes: + - Common attributes: + * machine: the name of the machine (e.g. Ux500). + * family: the family name of the SoC (e.g. DB8500). + - SoC-specific attributes: + * SoC vendor declared, such as serial and rev numbers. +Users: + Any platform dependent user-space applications or profiling tools.