Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9173FC38142 for ; Mon, 23 Jan 2023 07:48:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231528AbjAWHsv (ORCPT ); Mon, 23 Jan 2023 02:48:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37634 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231378AbjAWHsp (ORCPT ); Mon, 23 Jan 2023 02:48:45 -0500 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 29ECFEB6C; Sun, 22 Jan 2023 23:48:41 -0800 (PST) Received: from [192.168.1.103] (unknown [103.86.18.176]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 030D72B3; Mon, 23 Jan 2023 08:48:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1674460117; bh=Yf7dMr2OR4TnIoULBmpOCg94iMGE3jqxfzU/ffcRV/I=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=o53JBhnbczTfiUKuw7d/YRbuRKZsbdnxanySZPPuDITzrsRJ6OWIziWZ8UPShIT6b tst1WUj/iaYTDMKpeUvEfsFJKliwtX3q+L24qDzinypwhu5gbbdZJLhdOvIrpWYtG1 0ZGIBhdRHyXg7k29yVg1Zu0sqsu6HfFgruXgm2To= Message-ID: <62644cd8-c871-aee0-30b7-2fbab097504c@ideasonboard.com> Date: Mon, 23 Jan 2023 13:18:30 +0530 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.0 Subject: Re: [PATCH v6 0/6] staging: vc04_services: vchiq: Register devices with a custom bus_type Content-Language: en-US To: Stefan Wahren , linux-staging@lists.linux.dev, linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , Florian Fainelli , Adrien Thierry , Dan Carpenter , Dave Stevenson , Kieran Bingham , Laurent Pinchart , Paul Elder References: <20230120201104.606876-1-umang.jain@ideasonboard.com> <786df750-221e-82fc-a324-d30261296974@i2se.com> From: Umang Jain In-Reply-To: <786df750-221e-82fc-a324-d30261296974@i2se.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Stefan, Thank for the testing. On 1/23/23 5:04 AM, Stefan Wahren wrote: > Hi Umang, > > Am 20.01.23 um 21:10 schrieb Umang Jain: >> This series just introduces five extra patches for dropping include >> directives from Makefiles (suggested by Greg KH) and rebased. >> >> The main patch (6/6) removes platform device/driver abuse and moves >> things to standard device/driver model using a custom_bus. Specific >> details are elaborated in the commit message. >> >> The patch series is based on top of d514392f17fd (tag: next-20230120) >> of linux-next. > > applied this series on top of linux-next and build it with > arm/multi_v7_defconfig plus the following: > > CONFIG_BCM_VIDEOCORE=y > CONFIG_BCM2835_VCHIQ=m > CONFIG_VCHIQ_CDEV=y > CONFIG_SND_BCM2835=m > CONFIG_VIDEO_BCM2835=m > CONFIG_BCM2835_VCHIQ_MMAL=m > > and the devices doesn't register on Raspberry Pi 3 B Plus: > > [   25.523337] vchiq: module is from the staging directory, the > quality is unknown, you have been warned. > [   25.541647] bcm2835_vchiq 3f00b840.mailbox: Failed to register > bcm2835_audio vchiq device > [   25.553692] bcm2835_vchiq 3f00b840.mailbox: Failed to register > bcm2835-camera vchiq device I was able to reproduce and it seems the issue here is the change mentioned in the cover - drop dma_set_mask_and_coherent in V6. (I usually test patches on RPi 4B with vcsm-cma and bcm2835-isp applied so my branch has the DMA hunk included while I was testing V6) Below is the hunk which should resolve the issue. --- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_device.c +++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_device.c @@ -6,6 +6,7 @@   */  #include +#include  #include  #include @@ -72,6 +73,12 @@ int vchiq_device_register(struct device *parent, const char *name)         device->dev.type = &vchiq_device_type;         device->dev.release = vchiq_device_release; +       ret = dma_set_mask_and_coherent(&device->dev, DMA_BIT_MASK(32)); +       if (ret < 0) { +               vchiq_device_release(&device->dev); +               return ret; +       } +         ret = device_register(&device->dev);         if (ret) {                 put_device(&device->dev); It seems we need to include the dma_set_mask_and_coherent() even if bcm2835-audio, bcm2835-camera device doesn't do DMA? I need to look into why is that/  Laurent, any thoughts on this please?