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=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED 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 26BC5C43600 for ; Thu, 1 Apr 2021 18:36:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EF3A261155 for ; Thu, 1 Apr 2021 18:36:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234894AbhDASgA (ORCPT ); Thu, 1 Apr 2021 14:36:00 -0400 Received: from mga11.intel.com ([192.55.52.93]:15518 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238262AbhDASYd (ORCPT ); Thu, 1 Apr 2021 14:24:33 -0400 IronPort-SDR: pqTmkUH8LH7BCZzv9+dsL6EhI7++BVMLWPWjlEgjeR+HVvHfydR7wHJ/YDGCUOkLj6BLxP8Lv2 9wm6+3CTKx4Q== X-IronPort-AV: E=McAfee;i="6000,8403,9941"; a="189049281" X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="189049281" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 11:22:18 -0700 IronPort-SDR: iTS/4UfVWmg/0+sjwUsP0cTflWUNTNI4X36H8517uusL8UdxUhqGgrXax8+w4gqgKhJO6rNTtl 6ZhwBnUJvbsw== X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="517445221" Received: from smile.fi.intel.com (HELO smile) ([10.237.68.40]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 11:22:09 -0700 Received: from andy by smile with local (Exim 4.94) (envelope-from ) id 1lS1xC-000KFb-9g; Thu, 01 Apr 2021 21:22:02 +0300 Date: Thu, 1 Apr 2021 21:22:02 +0300 From: Andy Shevchenko To: Mika Westerberg Cc: Henning Schild , Wolfram Sang , Jean Delvare , Lee Jones , Tan Jui Nee , Jim Quinlan , Jonathan Yong , Bjorn Helgaas , linux-kernel@vger.kernel.org, linux-i2c@vger.kernel.org, linux-pci@vger.kernel.org, Jean Delvare , Peter Tyser , hdegoede@redhat.com Subject: Re: [PATCH v1 3/7] PCI: New Primary to Sideband (P2SB) bridge support library Message-ID: References: <20210308122020.57071-1-andriy.shevchenko@linux.intel.com> <20210308122020.57071-4-andriy.shevchenko@linux.intel.com> <20210313104557.321de08e@md1za8fc.ad001.siemens.net> <20210401180617.GL2542@lahna.fi.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210401180617.GL2542@lahna.fi.intel.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org On Thu, Apr 01, 2021 at 09:06:17PM +0300, Mika Westerberg wrote: > On Thu, Apr 01, 2021 at 06:43:11PM +0300, Andy Shevchenko wrote: > > On Sat, Mar 13, 2021 at 10:45:57AM +0100, Henning Schild wrote: > > > Am Mon, 8 Mar 2021 14:20:16 +0200 > > > schrieb Andy Shevchenko : > > > > ... > > > > > > + * pci_p2sb_bar - Get Primary to Sideband bridge (P2SB) device BAR > > > > + * @pdev: PCI device to get a PCI bus to communicate with > > > > + * @devfn: PCI slot and function to communicate with > > > > + * @mem: memory resource to be filled in > > > > > > Do we really need that many arguments to it? > > > > > > Before i had, in a platform driver that never had its own pci_dev or bus > > > > > > res->start = simatic_ipc_get_membase0(PCI_DEVFN(13, 0)); > > > if (res-start == 0) > > > return -ENODEV; > > > > > > So helper only asked for the devfn, returned base and no dedicated > > > error code. > > > > > > With this i need > > > > > > struct pci_bus *bus = pci_find_bus(0, 0); > > > struct pci_dev *pci_dev = bus->self; > > > unsigned int magic_i_do_not_want = PCI_DEVFN(13, 0); > > > > What confuses me is the use for SPI NOR controller on Broxton. And I think > > we actually can indeed hide all this under the hood by exposing P2SB to the OS. > > > > Mika, what do you think? > > Not sure I follow. Do you mean we force unhide P2SB and then bind (MFD) > driver to that? Not MFD, SPI NOR (if I understood correctly the code in MFD driver for SPI NOR in regards to P2SB case). -- With Best Regards, Andy Shevchenko