Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753444AbcD1QuR (ORCPT ); Thu, 28 Apr 2016 12:50:17 -0400 Received: from mout.kundenserver.de ([212.227.126.187]:51030 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752755AbcD1QuO (ORCPT ); Thu, 28 Apr 2016 12:50:14 -0400 From: Arnd Bergmann To: Mark Brown Cc: Sagar Dharia , gregkh@linuxfoundation.org, bp@suse.de, poeschel@lemonage.de, treding@nvidia.com, gong.chen@linux.intel.com, andreas.noever@gmail.com, alan@linux.intel.com, mathieu.poirier@linaro.org, daniel@ffwll.ch, jkosina@suse.cz, sharon.dvir1@mail.huji.ac.il, joe@perches.com, davem@davemloft.net, james.hogan@imgtec.com, michael.opdenacker@free-electrons.com, daniel.thompson@linaro.org, robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, kheitke@audience.com, mlocke@codeaurora.org, agross@codeaurora.org, sheetal.tigadoli@gmail.com, linux-arm-msm@vger.kernel.org Subject: Re: [PATCH V5 1/6] SLIMbus: Device management on SLIMbus Date: Thu, 28 Apr 2016 18:49:23 +0200 Message-ID: <2745420.JjpjMPLp2B@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <20160428163919.GP3217@sirena.org.uk> References: <1461801489-16254-1-git-send-email-sdharia@codeaurora.org> <5047442.UXEhPc2Isi@wuerfel> <20160428163919.GP3217@sirena.org.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:p16ztRuk5N4W76iZylfOhUCpd3jmOP8DVfA0077hB57btDs+mgw OhYMLRLrD7/a4ZBpXN0Qhj7+MOo95t3AQSwFtg6uBfwruJv5U0Ts9V86G7KRMOITAlkBsZV u2tooi1nHNGnuhMNFBHG+C5m18A2YiWB5CtLgXyyfND+TLso77wGmU53Qu9czQ+9eT15NvM zqDaRylJbC7uunusm26iQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:iOrTukobT48=:4tq9BwsvZkNraBO27YrgbK wA9rW8qllRu1w/eQWyyUFjp+Y5zid5WbKQ8bxM8+2UwViURbQJAOHuzQZS5qHvUUrweb+lLxt oy4uBGO/xrTuWzjoc2uH+NCy+0SSP1gybQ5Bvn1ZYFsrjHdGpKRGQu8xH/NyubrmQF+wQ+3nh 6csOdIJn6wAIAesZiHJkIMmyz9W6nBcrR+NsHirOsdqoHn+Nhf7i9TBghZOFn7oRA3RiEJe24 MtIRMNl8ZwiKFMBgFd4IH9bZalV6uNqqqrTIpKM7FHlvvDLE9UXh2UaJNrsMCn+rSSM+fgv2l 9Pbbtp0oSu+4FfWCTVYmZZ2jB7wVCg+aw/w7WAYBTA8sy8GEOz9BrSZeuNdYvHrxT+ixhPqBD R8hh4hHgENKQjG9zvXmN+opmnNxtRUcdTDkqYI4QT+WTMe1+oqhA1UwaUS4HMGIEA9cJ5KXtq 3cdkYRhR8deUlClbT0+mxJXjHbtWzTL+PpnSn0XJMuNld3OF7cNgORXPmK0ZYcyT4vGd/zQOQ N+1w04GOFifIMXrYKdaKDFKqAJlR1QKIq1LUaiE9BxVwAh91/BNnlApFPWiiJjJqzV9oVerdg B5vd3n/PmsifsfYlyPYvth74xy3DJAqL39A/pNHne2JRkQ2pftSQaCyWb/gPGPtLWGgbM4MGS 5dac4edl0PY24K+u7kTuMVv2icb+nWSM6wHLRJuKNr1TcSQi4bV1SknsU1ZYa4xKMwnulctJx HMl6tRi9neSRCbcB Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1089 Lines: 25 On Thursday 28 April 2016 17:39:20 Mark Brown wrote: > > I don't think we have merge new platform support on any > > architecture that would need this in the past years and > > stuff like spi_board_info and i2c_board_info is only really > > used on really old machines (but not going away any time soon > > either). > > It's not just platforms that use these things though - there's things > like the SolarFlare NICs where the firmware update mechanism essentially > involves exposing a SPI flash as part of a PCI device and we just merged > an ASoC driver for a video card which was reusing some existing IPs and > chips. > That's of course fine: you essentially have a discoverable bus there, and if we need something like that, we can always add it later to any subsystem. In contrast, the interface in the proposed slimbus subsystem seems designed for board files, and is in the best case just dead code that can be removed, or has a risk of being misused e.g. if some device manufacturer decides to use a board file for this instead of describing the slimbus slaves in DT. Arnd