// SPDX-License-Identifier: GPL-2.0+ /* * PM MFD driver for Broadcom BCM2835 * * This driver binds to the PM block and creates the MFD device for * the WDT and power drivers.
*/
pm->base = devm_platform_ioremap_resource_byname(pdev, "pm"); if (IS_ERR(pm->base)) return PTR_ERR(pm->base);
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "asb"); if (res) {
pm->asb = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(pm->asb))
pm->asb = NULL;
}
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "rpivid_asb"); if (res) {
pm->rpivid_asb = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(pm->rpivid_asb))
pm->rpivid_asb = NULL;
}
return 0;
}
/* If no 'reg-names' property is found we can assume we're using old DTB. */
pm->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(pm->base)) return PTR_ERR(pm->base);
pm->asb = devm_platform_ioremap_resource(pdev, 1); if (IS_ERR(pm->asb))
pm->asb = NULL;
pm->rpivid_asb = devm_platform_ioremap_resource(pdev, 2); if (IS_ERR(pm->rpivid_asb))
pm->rpivid_asb = NULL;
ret = bcm2835_pm_get_pdata(pdev, pm); if (ret) return ret;
ret = devm_mfd_add_devices(dev, -1,
bcm2835_pm_devs, ARRAY_SIZE(bcm2835_pm_devs),
NULL, 0, NULL); if (ret) return ret;
/* * We'll use the presence of the AXI ASB regs in the * bcm2835-pm binding as the key for whether we can reference * the full PM register range and support power domains.
*/ if (pm->asb) return devm_mfd_add_devices(dev, -1, bcm2835_power_devs,
ARRAY_SIZE(bcm2835_power_devs),
NULL, 0, NULL); return 0;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.