From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8A580C43218 for ; Thu, 25 Apr 2019 20:27:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 90FA820717 for ; Thu, 25 Apr 2019 20:27:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556224044; bh=CflCDtmqBKAM32WlQoELUqrfwzUrmb3vQQl6bGqprLM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=Lq1IbycARPdJ0R6J2NFOniCkqsxxp7G0QBMCApWMPtaemYxfYnRi1x7Dwi0Ey65O9 R0lwtJAL5wHkw/tgvTdljweLHN+a1U4VIKVA2emYIbB1DLXr69JIi/UlD7Su0iAZaW iauLBnwLDVEqQdzKoISToWTbvsVIjqFMsTB6YUFc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730999AbfDYU1X (ORCPT ); Thu, 25 Apr 2019 16:27:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:52958 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728011AbfDYU1X (ORCPT ); Thu, 25 Apr 2019 16:27:23 -0400 Received: from localhost (62-193-50-229.as16211.net [62.193.50.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1159B206A3; Thu, 25 Apr 2019 20:27:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1556224042; bh=CflCDtmqBKAM32WlQoELUqrfwzUrmb3vQQl6bGqprLM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=frJj4fZDYpMx39JSfeHtupp6ltFNwp84wUpcDkOdNnuvd/qx17GMlkD6wgS74uC/g Dr4idzVuZzGTcxw6O+hEn8EiuU8akQmAop8bCfMHMBTswJyypJEWUubCqIfTYqVtVm WtpjGwasSC9e5tG2QArpSO4axod4JKirTIjrxdfk= Date: Thu, 25 Apr 2019 22:27:20 +0200 From: Greg KH To: richard.gong@linux.intel.com Cc: robh+dt@kernel.org, mark.rutland@arm.com, dinguyen@kernel.org, atull@kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Richard Gong Subject: Re: [PATCHv1 5/6] firmware: rsu: document sysfs interface Message-ID: <20190425202719.GC22307@kroah.com> References: <1554835562-25056-1-git-send-email-richard.gong@linux.intel.com> <1554835562-25056-6-git-send-email-richard.gong@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1554835562-25056-6-git-send-email-richard.gong@linux.intel.com> User-Agent: Mutt/1.11.4 (2019-03-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Apr 09, 2019 at 01:46:01PM -0500, richard.gong@linux.intel.com wrote: > From: Richard Gong > > Describe Intel Stratix10 Remote System Update (RSU) device attributes > > Signed-off-by: Richard Gong > Reviewed-by: Alan Tull > --- > .../testing/sysfs-devices-platform-stratix10-rsu | 78 ++++++++++++++++++++++ > 1 file changed, 78 insertions(+) > create mode 100644 Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu > > diff --git a/Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu b/Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu > new file mode 100644 > index 0000000..cb461ee > --- /dev/null > +++ b/Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu > @@ -0,0 +1,78 @@ > + Intel Stratix10 Remote System Update (RSU) device attributes > + > +What: /sys/devices/platform/soc:firmware:svc/soc:firmware:svc:rsu/current_image > +Date: April 2019 > +KernelVersion: 5.2 > +Contact: Richard Gong > +Description: > + (RO) the address of image currently running in flash. > + > +What: /sys/devices/platform/soc:firmware:svc/soc:firmware:svc:rsu/fail_image > +Date: April 2019 > +KernelVersion: 5.2 > +Contact: Richard Gong > +Description: > + (RO) the address of failed image in flash. Use tabs everywhere please, do not mix spaces for some attributes and tabs for others. thanks, gre gk-h