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=-2.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no 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 032C3C433E0 for ; Tue, 30 Jun 2020 13:26:45 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C26A7206B6 for ; Tue, 30 Jun 2020 13:26:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="lS46qjxe" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C26A7206B6 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=C3Kjy2Z73v1559p6XPc/pGaU4qdpSf1F8oejyHTgICM=; b=lS46qjxeZmj+PKQ+E96Jkk+Ty sIMQ5UsYtBX06EbasAofFdW+ZLzoFd0/quu3QA4o/xMG94EXipuGXYGg5dnpF0dNgATwum/f4WnkW JAe8hM3nmJvWgtwEy3DBplfN3jMiWvxCgJyJt4bFaG0H21dKHOPImEcHj30RYAnb8FZM0YX0tqAXl c97gtqDUpLxTdbMXbLrGAuXML6YSOObIxBwrKpFwWi/9i0XHhyQPQA4JEryjXEwsZ+AxhlCMhj7bB s6/pQzywubz/wSB4XapNfMdR5PtICMCu9LHzbfBMddK0V4t+EcLn0SJ5ui4Y1m3IeHyyTucTAsrcj QdMgFULnQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jqGGI-0002zD-CQ; Tue, 30 Jun 2020 13:25:22 +0000 Received: from foss.arm.com ([217.140.110.172]) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jqGGF-0002yD-RN for linux-arm-kernel@lists.infradead.org; Tue, 30 Jun 2020 13:25:20 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7236C1FB; Tue, 30 Jun 2020 06:25:17 -0700 (PDT) Received: from bogus (unknown [10.37.8.30]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F255E3F71E; Tue, 30 Jun 2020 06:25:14 -0700 (PDT) Date: Tue, 30 Jun 2020 14:25:12 +0100 From: Sudeep Holla To: linux-arm-kernel@lists.infradead.org, Arnd Bergmann Subject: Re: [PATCH v3] firmware: smccc: Add ARCH_SOC_ID support Message-ID: <20200630132512.GB4188@bogus> References: <20200625095939.50861-1-sudeep.holla@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200625095939.50861-1-sudeep.holla@arm.com> User-Agent: Mutt/1.9.4 (2018-02-28) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Mark Rutland , Francois Ozog , Lorenzo Pieralisi , Etienne Carriere , Jose Marinho , linux-kernel@vger.kernel.org, harb@amperecomputing.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Arnd, On Thu, Jun 25, 2020 at 10:59:39AM +0100, Sudeep Holla wrote: > SMCCC v1.2 adds a new optional function SMCCC_ARCH_SOC_ID to obtain a > SiP defined SoC identification value. Add support for the same. > > Also using the SoC bus infrastructure, let us expose the platform > specific SoC atrributes under sysfs. > > There are various ways in which it can be represented in shortened form > for efficiency and ease of parsing for userspace. The chosen form is > described in the ABI document. > If you happy with this version, I can send PR for this along with the clean up series that Greg and others have acked [1] -- Regards, Sudeep [1] https://lore.kernel.org/linux-arm-kernel/20200527165238.GA21440@bogus _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel