From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752881AbbKPOOL (ORCPT ); Mon, 16 Nov 2015 09:14:11 -0500 Received: from mx0a-001ae601.pphosted.com ([67.231.149.25]:37189 "EHLO mx0a-001ae601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752728AbbKPOOK (ORCPT ); Mon, 16 Nov 2015 09:14:10 -0500 Date: Mon, 16 Nov 2015 13:57:55 +0000 From: Charles Keepax To: Pavel Machek CC: Mark Brown , , , , , , , , Subject: Re: multi-codec support for arizona-ldo1 was Re: System with multiple arizona (wm5102) codecs Message-ID: <20151116135755.GC18889@ck-lbox> References: <20151113225355.GU12392@sirena.org.uk> <20151114074400.GA7898@amd> <20151114123931.GW12392@sirena.org.uk> <20151114175915.GA20429@amd> <20151114184940.GY12392@sirena.org.uk> <20151114211633.GE20429@amd> <20151115001402.GZ12392@sirena.org.uk> <20151116074534.GA5606@amd> <20151116105035.GA31303@sirena.org.uk> <20151116122947.GA9125@amd> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20151116122947.GA9125@amd> User-Agent: Mutt/1.5.20 (2009-06-14) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1507310000 definitions=main-1511160231 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 16, 2015 at 01:29:47PM +0100, Pavel Machek wrote: > Hi! > > > > > Every single sound driver gets this right, none of them assume the name > > > > is global. What makes you say that they assume names are global? > > > > > Ok, so you are saying that if I fix mfd initialization, sound will > > > automagically switch from global regulators to device-specific > > > regulators and things will start working? > > > > Yes. > > Ok, so something like this should be applied? > > (I'm not sure how to test it, as audio works before and after the > patch.) > Apologies this all going down over the weekend I have only just caught up. I will probably send a few other inline replies to the thread. > Thanks, > Pavel > > Signed-off-by: Pavel Machek > > commit d6005263acb94343645e719ee90b8940cb2545df > Author: Pavel > Date: Mon Nov 16 13:19:21 2015 +0100 > > regulator_bulk_register() needs device to be already > registered. Reorganize the code to make it so. > > diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c > index 14fd5cb..e891f10 100644 > --- a/drivers/mfd/mfd-core.c > +++ b/drivers/mfd/mfd-core.c > @@ -147,12 +147,6 @@ static int mfd_add_device(struct device *parent, int id, > pdev->dev.dma_parms = parent->dma_parms; > pdev->dev.coherent_dma_mask = parent->coherent_dma_mask; > > - ret = regulator_bulk_register_supply_alias( > - &pdev->dev, cell->parent_supplies, > - parent, cell->parent_supplies, > - cell->num_parent_supplies); > - if (ret < 0) > - goto fail_res; This does look like it is too early, but really all we are doing it adding the device pointer and the supply name into a lookup table, neither of those things change across the stuff below. The printout for the mapping does indeed appear to be broken (because you can't dev_name on the device yet, until after it has been added), but that will be all that should get fixed by this move. > > if (parent->of_node && cell->of_compatible) { > for_each_child_of_node(parent->of_node, np) { > @@ -169,12 +176,12 @@ static int mfd_add_device(struct device *parent, int id, > ret = platform_device_add_data(pdev, > cell->platform_data, cell->pdata_size); > if (ret) > - goto fail_alias; > + goto fail_res; > } > > ret = mfd_platform_add_cell(pdev, cell, usage_count); > if (ret) > - goto fail_alias; > + goto fail_res; > > for (r = 0; r < cell->num_resources; r++) { > res[r].name = cell->resources[r].name; > @@ -210,22 +217,29 @@ static int mfd_add_device(struct device *parent, int id, > if (has_acpi_companion(&pdev->dev)) { > ret = acpi_check_resource_conflict(&res[r]); > if (ret) > - goto fail_alias; > + goto fail_res; > } > } > } > > ret = platform_device_add_resources(pdev, res, cell->num_resources); > if (ret) > - goto fail_alias; > + goto fail_res; > > ret = platform_device_add(pdev); > if (ret) > - goto fail_alias; > + goto fail_res; > > if (cell->pm_runtime_no_callbacks) > pm_runtime_no_callbacks(&pdev->dev); > > + ret = regulator_bulk_register_supply_alias( > + &pdev->dev, cell->parent_supplies, > + parent, cell->parent_supplies, > + cell->num_parent_supplies); > + if (ret < 0) > + goto fail_alias; > + Furthermore, the trouble is that you can't move this to here. The platform_device_add will usually cause the device to probe and most devices request their supplies in their probe. Thus if you only register the alias here then it will not be available when the device needs it. Thanks, Charles From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Keepax Subject: Re: multi-codec support for arizona-ldo1 was Re: System with multiple arizona (wm5102) codecs Date: Mon, 16 Nov 2015 13:57:55 +0000 Message-ID: <20151116135755.GC18889@ck-lbox> References: <20151113225355.GU12392@sirena.org.uk> <20151114074400.GA7898@amd> <20151114123931.GW12392@sirena.org.uk> <20151114175915.GA20429@amd> <20151114184940.GY12392@sirena.org.uk> <20151114211633.GE20429@amd> <20151115001402.GZ12392@sirena.org.uk> <20151116074534.GA5606@amd> <20151116105035.GA31303@sirena.org.uk> <20151116122947.GA9125@amd> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx0a-001ae601.pphosted.com (mx0a-001ae601.pphosted.com [67.231.149.25]) by alsa0.perex.cz (Postfix) with ESMTP id 99D55260442 for ; Mon, 16 Nov 2015 15:13:52 +0100 (CET) Content-Disposition: inline In-Reply-To: <20151116122947.GA9125@amd> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Pavel Machek Cc: alsa-devel@alsa-project.org, sameo@linux.intel.com, tiwai@suse.de, linux-kernel@vger.kernel.org, patches@opensource.wolfsonmicro.com, lgirdwood@gmail.com, Mark Brown , lee.jones@linaro.org List-Id: alsa-devel@alsa-project.org On Mon, Nov 16, 2015 at 01:29:47PM +0100, Pavel Machek wrote: > Hi! > > > > > Every single sound driver gets this right, none of them assume the name > > > > is global. What makes you say that they assume names are global? > > > > > Ok, so you are saying that if I fix mfd initialization, sound will > > > automagically switch from global regulators to device-specific > > > regulators and things will start working? > > > > Yes. > > Ok, so something like this should be applied? > > (I'm not sure how to test it, as audio works before and after the > patch.) > Apologies this all going down over the weekend I have only just caught up. I will probably send a few other inline replies to the thread. > Thanks, > Pavel > > Signed-off-by: Pavel Machek > > commit d6005263acb94343645e719ee90b8940cb2545df > Author: Pavel > Date: Mon Nov 16 13:19:21 2015 +0100 > > regulator_bulk_register() needs device to be already > registered. Reorganize the code to make it so. > > diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c > index 14fd5cb..e891f10 100644 > --- a/drivers/mfd/mfd-core.c > +++ b/drivers/mfd/mfd-core.c > @@ -147,12 +147,6 @@ static int mfd_add_device(struct device *parent, int id, > pdev->dev.dma_parms = parent->dma_parms; > pdev->dev.coherent_dma_mask = parent->coherent_dma_mask; > > - ret = regulator_bulk_register_supply_alias( > - &pdev->dev, cell->parent_supplies, > - parent, cell->parent_supplies, > - cell->num_parent_supplies); > - if (ret < 0) > - goto fail_res; This does look like it is too early, but really all we are doing it adding the device pointer and the supply name into a lookup table, neither of those things change across the stuff below. The printout for the mapping does indeed appear to be broken (because you can't dev_name on the device yet, until after it has been added), but that will be all that should get fixed by this move. > > if (parent->of_node && cell->of_compatible) { > for_each_child_of_node(parent->of_node, np) { > @@ -169,12 +176,12 @@ static int mfd_add_device(struct device *parent, int id, > ret = platform_device_add_data(pdev, > cell->platform_data, cell->pdata_size); > if (ret) > - goto fail_alias; > + goto fail_res; > } > > ret = mfd_platform_add_cell(pdev, cell, usage_count); > if (ret) > - goto fail_alias; > + goto fail_res; > > for (r = 0; r < cell->num_resources; r++) { > res[r].name = cell->resources[r].name; > @@ -210,22 +217,29 @@ static int mfd_add_device(struct device *parent, int id, > if (has_acpi_companion(&pdev->dev)) { > ret = acpi_check_resource_conflict(&res[r]); > if (ret) > - goto fail_alias; > + goto fail_res; > } > } > } > > ret = platform_device_add_resources(pdev, res, cell->num_resources); > if (ret) > - goto fail_alias; > + goto fail_res; > > ret = platform_device_add(pdev); > if (ret) > - goto fail_alias; > + goto fail_res; > > if (cell->pm_runtime_no_callbacks) > pm_runtime_no_callbacks(&pdev->dev); > > + ret = regulator_bulk_register_supply_alias( > + &pdev->dev, cell->parent_supplies, > + parent, cell->parent_supplies, > + cell->num_parent_supplies); > + if (ret < 0) > + goto fail_alias; > + Furthermore, the trouble is that you can't move this to here. The platform_device_add will usually cause the device to probe and most devices request their supplies in their probe. Thus if you only register the alias here then it will not be available when the device needs it. Thanks, Charles