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=-5.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, HK_RANDOM_FROM,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS 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 9E942C31E44 for ; Wed, 12 Jun 2019 02:46:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7E925207E0 for ; Wed, 12 Jun 2019 02:46:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2408499AbfFLCqq (ORCPT ); Tue, 11 Jun 2019 22:46:46 -0400 Received: from mga14.intel.com ([192.55.52.115]:25730 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2404957AbfFLCqq (ORCPT ); Tue, 11 Jun 2019 22:46:46 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Jun 2019 19:46:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,363,1557212400"; d="scan'208";a="184092883" Received: from haiyuewa-mobl.ccr.corp.intel.com (HELO [10.67.64.82]) ([10.67.64.82]) by fmsmga002.fm.intel.com with ESMTP; 11 Jun 2019 19:46:43 -0700 Subject: Re: [PATCHv7 1/3] dt-bindings: i2c: document bindings for i2c-slave-mqueue To: Rob Herring , Eduardo Valentin Cc: Wolfram Sang , jarkko.nikula@linux.intel.com, andriy.shevchenko@intel.com, brendanhiggins@google.com, Mark Rutland , linux-i2c@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: <20190605164651.15991-1-eduval@amazon.com> <20190605164651.15991-2-eduval@amazon.com> <20190611231425.GA29500@bogus> From: "Wang, Haiyue" Message-ID: Date: Wed, 12 Jun 2019 10:46:43 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0 MIME-Version: 1.0 In-Reply-To: <20190611231425.GA29500@bogus> Content-Type: text/plain; charset=gbk; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ÔÚ 2019-06-12 07:14, Rob Herring дµÀ: > On Wed, Jun 05, 2019 at 09:46:49AM -0700, Eduardo Valentin wrote: >> Document the i2c-slave-mqueue binding by adding >> descriptor, required properties, and example. >> >> Cc: Rob Herring >> Cc: Mark Rutland >> Cc: Wolfram Sang >> Cc: linux-i2c@vger.kernel.org >> Cc: devicetree@vger.kernel.org >> Cc: linux-kernel@vger.kernel.org >> Signed-off-by: Eduardo Valentin >> --- >> >> Changes from V6 to V7: >> - none >> >> .../bindings/i2c/i2c-slave-mqueue.txt | 34 +++++++++++++++++++ >> 1 file changed, 34 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/i2c/i2c-slave-mqueue.txt >> >> diff --git a/Documentation/devicetree/bindings/i2c/i2c-slave-mqueue.txt b/Documentation/devicetree/bindings/i2c/i2c-slave-mqueue.txt >> new file mode 100644 >> index 000000000000..eb1881a4fc0e >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/i2c/i2c-slave-mqueue.txt >> @@ -0,0 +1,34 @@ >> +=============================================== >> +Device Tree for I2C slave message queue backend >> +=============================================== >> + >> +Some protocols over I2C/SMBus are designed for bi-directional transferring >> +messages by using I2C Master Write protocol. This requires that both sides >> +of the communication have slave addresses. > So the address 0x10 in the example below is the address of the I2C > controller? > >> + >> +This I2C slave mqueue (message queue) is used to receive and queue Hi Rob, This is mqueue comes from, not from specs directly. >> +messages from the remote i2c intelligent device; and it will add the target >> +slave address (with R/W# bit is always 0) into the message at the first byte. >> + >> +Links >> +---- >> +`Intelligent Platform Management Bus >> +Communications Protocol Specification >> +`_ >> + >> +`Management Component Transport Protocol (MCTP) >> +SMBus/I2C Transport Binding Specification >> +`_ >> + >> +Required Properties: >> +- compatible : should be "i2c-slave-mqueue" > There is no mention of mqueue (or queue) in these specs. Where does that > come from? Perhaps something more closely matching the protocol would be > better name. > >> +- reg : slave address >> + >> +Example: >> + >> +i2c { > Would there be other slaves? > > The common binding states 'multi-master' property should be present. > > I need a more complete example. > >> + slave_mqueue: i2c-slave-mqueue { >> + compatible = "i2c-slave-mqueue"; >> + reg = <0x10>; Hi Eduardo, Looks like the slave reg missed the key value bit: https://elinux.org/images/f/f6/ELCE15-WolframSang-ShinyNewI2CSlaveFramework.pdf Example: reg = <(I2C_OWN_SLAVE_ADDRESS | 0x42)>; >> + }; >> +}; >> -- >> 2.21.0 >>