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=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 9147EC3F2D7 for ; Thu, 5 Mar 2020 12:46:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 73B8D2146E for ; Thu, 5 Mar 2020 12:46:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726204AbgCEMqg (ORCPT ); Thu, 5 Mar 2020 07:46:36 -0500 Received: from mga12.intel.com ([192.55.52.136]:21204 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725989AbgCEMqg (ORCPT ); Thu, 5 Mar 2020 07:46:36 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Mar 2020 04:46:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,518,1574150400"; d="scan'208";a="229680790" Received: from adhawale-mobl.amr.corp.intel.com (HELO [10.251.1.197]) ([10.251.1.197]) by orsmga007.jf.intel.com with ESMTP; 05 Mar 2020 04:46:33 -0800 Subject: Re: [PATCH 1/8] soundwire: bus_type: add master_device/driver support To: Vinod Koul Cc: alsa-devel@alsa-project.org, tiwai@suse.de, gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, Ranjani Sridharan , Hui Wang , broonie@kernel.org, srinivas.kandagatla@linaro.org, jank@cadence.com, slawomir.blauciak@intel.com, Sanyog Kale , Bard liao , Rander Wang References: <20200227223206.5020-1-pierre-louis.bossart@linux.intel.com> <20200227223206.5020-2-pierre-louis.bossart@linux.intel.com> <20200303054136.GP4148@vkoul-mobl> <8a04eda6-cbcf-582f-c229-5d6e4557344b@linux.intel.com> <20200304095312.GT4148@vkoul-mobl> <05dbe43c-abf8-9d5a-d808-35bf4defe4ba@linux.intel.com> <20200305063646.GW4148@vkoul-mobl> From: Pierre-Louis Bossart Message-ID: Date: Thu, 5 Mar 2020 06:46:33 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 In-Reply-To: <20200305063646.GW4148@vkoul-mobl> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org >> If you want a technical objection, let me restate what I already mentioned: >> >> If you look at the hierarchy, we have >> >> PCI device -> PCI driver >> soundwire_master_device0 >> soundwire_slave(s) -> codec driver >> ... >> soundwire_master_deviceN >> soundwire_slave(s) -> codec driver >> >> You have not explained how I could possibly deal with power management >> without having a driver for the master_device(s). The pm_ops need to be >> inserted in a driver structure, which means we need a driver. And if we need >> a driver, then we might as well have a real driver with .probe .remove >> support, driver_register(), etc. > > Please read the emails sent to you completely, including the reply on > 2nd patch of this series. I think i am repeating this 3rd or 4th time > now. Am going to repeat this info here to help move things. > > Why do you need a extra driver for this. Do you have another set of > device object and driver for DSP code? But you do manage that, right? > I am proposing to simplify the device model here and have only one > device (SOF PCI) and driver (SOF PCI driver), which is created by actual > bus (PCI here) as you have in rest of the driver like HDA, DSP etc. > > I have already recommended is to make the int-sdw a module which is > invoked by SOF PCI driver code (thereby all code uses SOF PCI device and > SOF PCI driver) directly. The DSP in my time for skl was a separate > module but used the parent objects. > > The SOF sdw init (the place where sdw routines are invoked after DSP > load) can call sdw_probe and startup. Based on DSP sequencing you can > call these functions directly without waiting for extra device to be > probed etc. > > I feel your flows will be greatly simplified as a result of this. Not at all, no. This is not a simplification but an extremely invasive proposal. The parent-child relationship is extremely useful for power management, and guarantees that the PCI device remains on while one or more of the masters are used, and conversely can suspend when all links are idle. I currently don't need to do anything, it's all taken care of by the framework. If I have to do all the power management at the PCI device level, then I will need to keep track of which links are currently active. All these links are used independently, so it's racy as hell to keep track of the usage when the pm framework already does so quite elegantly. You really want to use the pm_runtime_get/put refcount for each master device, not manage them from the PCI level. I might add that I don't see the logic in having pm support at the Slave device level, but not at the master, and again at the PCI level. It's just simpler to handle pm at each level rather that fudge layers. I would also remind you that the solution you developed while at Intel did in fact use the parent-child relationship for power management, and I remember very clearly having discussions with you on this. I don't see why replacing platform devices by master devices should change this design choice. > Second issue of PM: > You do manage the DSP PM right? Similar way. > So here I would expect you to add functions/callbacks from SOF driver to > this module and call PM routines from SOF PM routines allowing you to > suspend/resume. Similar way DSP used to be managed. Something like: > .sdw_suspend .sdw_resume functions/callbacks which will do sdw specific > pm configurations. You do not need module specific pm_ops, you can do > the required steps in callbacks from SOF driver > > Bonus, this can be tuned and called at the specific places in DSP > suspend/resume flow, which is something I suspect you would want. No. The links can only be resumed when the DSP is fully powered. We've tried all sorts of optimizations already and worked with the hardware team on this. > > For places which need dev/driver objects like sdw dai's please pass the > SOF PCI dev object. > > Is there any other technical reason left unexplored/unexplained? > >> I really don't see what's broken or unnecessary with these patches. > > Adding a layer for Intel in common code is unnecessary IMO. As > demonstrated above you can use the intel specific callback to do the > same task in intel specific way. I would very much prefer that approach > to solve this > > We definitely need a sdw_master_device for everyone, but I don't believe > we need a sdw_master_device for Intel or anyone else. I will flip the argument: you can implement a lightweight master driver in no time. All you need is to move the code you currently have in the platform device .probe() to the master_device .probe(). Big deal, the overhead is negligible - and you don't need to add pm_ops if you don't need to. I would add that you cannot possibly compare the two implementations. Qualcomm has an extremely simple SoundWire link optimized for 2 PDM amplifiers connected to a SLIMbus codec, with a fixed bit allocation. There is currently no power management for this link. Intel has 4 links running in parallel and synchronized in hardware, with complicated power management, different flavors of clock-stop - some not controlled by the driver but by DSP firmware - , 5 hardware configurations (more coming) and 6 third-party devices (more coming). You've got to give us some slack here, and leave us handle power management in the simplest possible way.