From patchwork Wed Aug 10 13:03:40 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 1053642 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7AD4aFK006934 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 10 Aug 2011 13:04:57 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qr8SP-0007re-Ob; Wed, 10 Aug 2011 13:04:25 +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 1Qr8SP-00030B-6F; Wed, 10 Aug 2011 13:04:25 +0000 Received: from mail-wy0-f177.google.com ([74.125.82.177]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Qr8SJ-0002wD-E8 for linux-arm-kernel@lists.infradead.org; Wed, 10 Aug 2011 13:04:20 +0000 Received: by mail-wy0-f177.google.com with SMTP id 11so843620wyh.36 for ; Wed, 10 Aug 2011 06:04:19 -0700 (PDT) Received: by 10.227.5.213 with SMTP id 21mr3243336wbw.109.1312981459021; Wed, 10 Aug 2011 06:04:19 -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 et16sm741790wbb.19.2011.08.10.06.04.18 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 10 Aug 2011 06:04:18 -0700 (PDT) From: Lee Jones To: linux-arm-kernel@lists.infradead.org, arnd@arndb.de Subject: [PATCH 2/4] Add documenation for new sysfs devices/soc functionallity Date: Wed, 10 Aug 2011 14:03:40 +0100 Message-Id: <1312981422-13294-2-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1312981422-13294-1-git-send-email-lee.jones@linaro.org> References: <1312981422-13294-1-git-send-email-lee.jones@linaro.org> X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110810_090419_602876_6DD4FDBB X-CRM114-Status: GOOD ( 12.42 ) X-Spam-Score: -0.7 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.177 listed in list.dnswl.org] Cc: gregkh@suse.de, lee.jones@linaro.org, linus.walleij@stericsson.com 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 (demeter2.kernel.org [140.211.167.43]); Wed, 10 Aug 2011 13:04:58 +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..9156ba0 --- /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.