usb: musb: Set the DT node on the child device
authorRob Herring <robh@kernel.org>
Wed, 15 Dec 2021 23:07:57 +0000 (17:07 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Dec 2021 16:00:45 +0000 (17:00 +0100)
The musb glue drivers just copy the glue resources to the musb child device.
Instead, set the musb child device's DT node pointer to the parent device's
node so that platform_get_irq_byname() can find the resources in the DT.
This removes the need for statically populating the IRQ resources from the
DT which has been deprecated for some time.

Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20211215230756.2009115-3-robh@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/musb/am35x.c
drivers/usb/musb/da8xx.c
drivers/usb/musb/jz4740.c
drivers/usb/musb/mediatek.c
drivers/usb/musb/omap2430.c
drivers/usb/musb/ux500.c

index 660641ab15453c0ae625a166856d304a7a3d0f56..bf2c0fa6cb3202fd60958fb9692a4e7ef9651f6b 100644 (file)
@@ -500,6 +500,8 @@ static int am35x_probe(struct platform_device *pdev)
        pinfo.num_res = pdev->num_resources;
        pinfo.data = pdata;
        pinfo.size_data = sizeof(*pdata);
+       pinfo.fwnode = of_fwnode_handle(pdev->dev.of_node);
+       pinfo.of_node_reused = true;
 
        glue->musb = musb = platform_device_register_full(&pinfo);
        if (IS_ERR(musb)) {
index e4e0195131da6a53fddf0838a1fcfd8c699bc9ab..fd4ae2dd24e5044291d2d63a7de0f9b9d3048a0c 100644 (file)
@@ -563,6 +563,8 @@ static int da8xx_probe(struct platform_device *pdev)
        pinfo.num_res = pdev->num_resources;
        pinfo.data = pdata;
        pinfo.size_data = sizeof(*pdata);
+       pinfo.fwnode = of_fwnode_handle(np);
+       pinfo.of_node_reused = true;
 
        glue->musb = platform_device_register_full(&pinfo);
        ret = PTR_ERR_OR_ZERO(glue->musb);
index 5b7d576bf6ee8d9b8a3ab2bfdcb9101499790e23..417c30bff9cabe770634a1f779f4d17518bbd61a 100644 (file)
@@ -231,6 +231,7 @@ static int jz4740_probe(struct platform_device *pdev)
        musb->dev.parent                = dev;
        musb->dev.dma_mask              = &musb->dev.coherent_dma_mask;
        musb->dev.coherent_dma_mask     = DMA_BIT_MASK(32);
+       device_set_of_node_from_dev(&musb->dev, dev);
 
        glue->pdev                      = musb;
        glue->clk                       = clk;
index f5d97eb84cb59a38b47a64405824ec35777ea8ca..1aeb34dbe24fad001cfa72ed935062091573f4e6 100644 (file)
@@ -538,6 +538,8 @@ static int mtk_musb_probe(struct platform_device *pdev)
        pinfo.num_res = pdev->num_resources;
        pinfo.data = pdata;
        pinfo.size_data = sizeof(*pdata);
+       pinfo.fwnode = of_fwnode_handle(np);
+       pinfo.of_node_reused = true;
 
        glue->musb_pdev = platform_device_register_full(&pinfo);
        if (IS_ERR(glue->musb_pdev)) {
index d2b7e613eb34f0df4cac9a5250016430fb64b62b..7d4d0713f4f0d071e7a26f5f2d734f77b933efcb 100644 (file)
@@ -327,6 +327,7 @@ static int omap2430_probe(struct platform_device *pdev)
        musb->dev.parent                = &pdev->dev;
        musb->dev.dma_mask              = &omap2430_dmamask;
        musb->dev.coherent_dma_mask     = omap2430_dmamask;
+       device_set_of_node_from_dev(&musb->dev, &pdev->dev);
 
        glue->dev                       = &pdev->dev;
        glue->musb                      = musb;
index 9bce19b5ffd74f15f84b5613e634e02a45cf9d4b..8ea62c34432826ffb243f423c30b3a561f95e0e7 100644 (file)
@@ -262,6 +262,7 @@ static int ux500_probe(struct platform_device *pdev)
        musb->dev.parent                = &pdev->dev;
        musb->dev.dma_mask              = &pdev->dev.coherent_dma_mask;
        musb->dev.coherent_dma_mask     = pdev->dev.coherent_dma_mask;
+       device_set_of_node_from_dev(&musb->dev, &pdev->dev);
 
        glue->dev                       = &pdev->dev;
        glue->musb                      = musb;