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 7409AC433ED for ; Thu, 1 Apr 2021 18:22:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1F51D6023C for ; Thu, 1 Apr 2021 18:22:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234638AbhDASWx (ORCPT ); Thu, 1 Apr 2021 14:22:53 -0400 Received: from mga14.intel.com ([192.55.52.115]:59020 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237333AbhDASLw (ORCPT ); Thu, 1 Apr 2021 14:11:52 -0400 IronPort-SDR: DMIfi0CH7UekL36xFEXsfGtGA9OWVePn0H7AGa7SkFBlmdDoip8LTAdBUZ15LC22tueHE4RYjr QE7stDsM7ysQ== X-IronPort-AV: E=McAfee;i="6000,8403,9941"; a="191782557" X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="191782557" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 11:06:25 -0700 IronPort-SDR: Df3vkX/tq6o0sqSF+irExac4U+Rd9OJWaLRfQ2UN0Xykv6vY8SXvrrd4riQP3vx/Gp2eXaVjRh PCTCNTbTl3ew== X-IronPort-AV: E=Sophos;i="5.81,296,1610438400"; d="scan'208";a="517438729" Received: from lahna.fi.intel.com (HELO lahna) ([10.237.72.163]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Apr 2021 11:06:20 -0700 Received: by lahna (sSMTP sendmail emulation); Thu, 01 Apr 2021 21:06:17 +0300 Date: Thu, 1 Apr 2021 21:06:17 +0300 From: Mika Westerberg To: Andy Shevchenko 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: <20210401180617.GL2542@lahna.fi.intel.com> References: <20210308122020.57071-1-andriy.shevchenko@linux.intel.com> <20210308122020.57071-4-andriy.shevchenko@linux.intel.com> <20210313104557.321de08e@md1za8fc.ad001.siemens.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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 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?