From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752850AbdBVDNj (ORCPT ); Tue, 21 Feb 2017 22:13:39 -0500 Received: from mga05.intel.com ([192.55.52.43]:17342 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753814AbdBVDNe (ORCPT ); Tue, 21 Feb 2017 22:13:34 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,192,1484035200"; d="scan'208";a="68654188" From: "Nadathur, Sundar" To: Alan Tull , Moritz Fischer CC: Yves Vandervennet , Jason Gunthorpe , "matthew.gerlach@linux.intel.com" , linux-kernel , "linux-fpga@vger.kernel.org" , =?utf-8?B?TWFyZWsgVmHFoXV0?= Subject: RE: [RFC 7/8] fpga-region: add sysfs interface Thread-Topic: [RFC 7/8] fpga-region: add sysfs interface Thread-Index: AQHSiW0uBlMMNy41sEKLvCuIbtRkyqFukRsAgAAd1oCAAQp7gIAACZ+AgAEyAgCAAIqFgIABm7iAgAE59AD//4LWsA== Date: Wed, 22 Feb 2017 03:13:32 +0000 Message-ID: <1CC272501B5BC543A05DB90AA509DED50B005A@fmsmsx122.amr.corp.intel.com> References: <20170215180612.GB3317@obsidianresearch.com> <20170215203734.GC5531@obsidianresearch.com> <20170218023010.GA8244@live.com> <1CC272501B5BC543A05DB90AA509DED50AF5EC@fmsmsx122.amr.corp.intel.com> <20170218204509.GA32544@live.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.1.200.107] Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by mail.home.local id v1M3DghI007637 > -----Original Message----- > From: Alan Tull [mailto:delicious.quinoa@gmail.com] > Sent: Tuesday, February 21, 2017 10:33 AM > To: Moritz Fischer > Cc: Nadathur, Sundar ; Yves Vandervennet > ; Jason Gunthorpe > ; matthew.gerlach@linux.intel.com; > linux-kernel ; linux-fpga@vger.kernel.org; > Marek VaĊĦut > Subject: Re: [RFC 7/8] fpga-region: add sysfs interface > > On Mon, Feb 20, 2017 at 5:49 PM, Moritz Fischer > wrote: > > Hi Alan, > > > > On Sun, Feb 19, 2017 at 3:16 PM, Alan Tull > wrote: > >> On Sun, Feb 19, 2017 at 9:00 AM, Alan Tull > wrote: > >>> On Sat, Feb 18, 2017 at 2:45 PM, Moritz Fischer > >>> wrote: > >>>> On Sat, Feb 18, 2017 at 02:10:43PM -0600, Alan Tull wrote: > >>>>> On Sat, Feb 18, 2017 at 6:45 AM, Nadathur, Sundar > >>>>> wrote: > >>>>> > >>>>> > Hi all, > >>>>> > Interesting discussion. The discussion so far has brought out many > concerns such as OS independence. There is an existing format, well-known > to developers, with widespread support, and which is quite extensible: Type- > Length-Value triples. > >>> [...] > >>>> Are there other users of the format? I have to admit I didn't look > >>>> very long, but couldn't find any libs / existing code at a first glance. > >>> > >>> Is there a standard you are looking at? Have you seen any use of > >>> TLV's in the Linux kernel you could point to? Here are some examples of TLVs in the Linux kernel: http://lxr.free-electrons.com/source/net/ipv6/exthdrs.c <-- includes TLV parsing code http://lxr.free-electrons.com/source/drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.c http://lxr.free-electrons.com/source/include/sound/tlv.h In addition, some protocols like LLDP are defined in terms of TLVs. E.g. http://lxr.free-electrons.com/source/drivers/net/ethernet/intel/i40e/i40e_dcb.h?v=4.4 > >> On Sun, Feb 19, 2017 at 9:00 AM, Alan Tull > wrote: > >>> It is worth repeating that libdtc is GPL/BSD with the intent of > >>> allowing proprietary code to use libdtc. So license shouldn't be a barrier. It is better to check with Windows folks before concluding this. > >> If we use key/value pairs, we could pass in child device info in one > >> of the keys. It could be either a device tree overlay or an ACPI > >> overlay. Or could just be left out. So platforms that aren't > >> already using DT wouldn't have to. Platforms that are have a smooth > >> road to enumeration. > > > > I'm not sure if you can bundle up enumeration info *with* the image > > since you might e.g. > > load the same image (i.e. same header) into different FPGAs and the > > required update to the kernel state, i.e. live tree or ACPI would > > depend entirely on which FPGA you loaded the image into w.r.t busses > > it's connected to etc. > > > > I do think this info cannot be image specific, but needs to be passed > > in via something external such as a dt overlay. > > Yes, I think you are right about that. > > Thanks! > Alan I agree that device enumeration should be separated out from the metadata format considerations. I got some feedback that not everybody may be familiar with TLVs. To make the proposal more clear and specific, let me add more information here. * We represent every datum of interest with its Type (which indicates what it is), a Length (how many bytes it takes) and a Value (its actual value, taking as many bytes as the Length field indicates.) * The exact lengths of the Type and Length fields are up to us, but let us say they are 4 bytes each, for concreteness. As an example, say we want to express the function in the FPGA (crypto, compress, etc.) as a UUID (128 bits long) compliant with RFC 4122. We could have a Type of say 0x00000050 (4 bytes in all) to indicate Function UUIDs, and a Length field of 0x00000010 (16 bytes) and a value of say 3d8814d8-4ecc-4030-8415-0dea4e5e829a . * A Type may indicate that its value is another TLV, thus allowing nested TLVs. The nested TLV may be an array of TLVs (all of same Type) or a structure (TLVs of different Types). With a Key-Value Pair, if the parser comes across an unknown key (such as when an old parser comes across newer metadata), it would not know how to skip that KVP and move onto the next one. With TLVs, that flexibility is built in. Further, we can use bits in the Type field to indicate that it is mandatory, i.e., if the parser does not understand it, it should error out rather than skip it silently. This degree of forward compatibility is difficult to achieve with other formats. Thanks, Sundar