static pci_ers_result_t pcie_portdrv_error_detected(struct pci_dev *dev, enum pci_channel_state error) { struct aer_broadcast_data data = {error, PCI_ERS_RESULT_CAN_RECOVER}; /* get true return value from &data */ device_for_each_child(&dev->dev, &data, error_detected_iter); return data.result; }
static pci_ers_result_t pcie_portdrv_mmio_enabled(struct pci_dev *dev) { pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED; int retval; /* get true return value from &status */ retval = device_for_each_child(&dev->dev, &status, mmio_enabled_iter); return status; }
void gsc_fixup_irqs(struct parisc_device *parent, void *ctrl, void (*choose_irq)(struct parisc_device *, void *)) { struct gsc_fixup_struct data = { .choose_irq = choose_irq, .ctrl = ctrl, }; device_for_each_child(&parent->dev, &data, gsc_fixup_irqs_callback); }
static int camera_auto_detect(void) { struct i2c_adapter *adap = i2c_get_adapter(2); pr_info("%s ++ %04x - %04x - %04x\n", __func__, ad5816_devid, dw9718_devid, max77387_devid); if ((ad5816_devid & 0xff00) == 0x2400) { if ((max77387_devid & 0xff) == 0x91) { /* IMX135 found */ i2c_new_device(adap, &pluto_i2c_board_info_imx135); } else { /* IMX091 found*/ i2c_new_device(adap, &pluto_i2c_board_info_imx091); } } else if (dw9718_devid) { if (!max77387_devid) { /* board e1823, IMX135 found */ i2c_new_device(adap, &pluto_i2c_board_info_imx135); /* remove current dw9718 */ device_for_each_child(&adap->dev, &pluto_i2c_board_info_dw9718.addr, pluto_chk_conflict); /* reinstall with new device node */ pluto_dw9718_pdata.num = 0; i2c_new_device(adap, &pluto_i2c_board_info_dw9718); } else { /* AR0833 found */ i2c_new_device(adap, &pluto_i2c_board_info_ar0833); } } else { /* default using ov5693 + ad5823 */ device_for_each_child(&adap->dev, &pluto_i2c_board_info_ad5823.addr, pluto_chk_conflict); i2c_new_device(adap, &pluto_i2c_board_info_ov5693); i2c_new_device(adap, &pluto_i2c_board_info_ad5823); } i2c_new_device(adap, &pluto_i2c_board_info_imx132); pr_info("%s --\n", __func__); return 0; }
static int smsc_hub_disable(struct hsic_hub *hub) { struct smsc_hub_platform_data *pdata = hub->pdata; pm_runtime_forbid(hub->dev); device_for_each_child(hub->dev, NULL, sms_hub_remove_child); gpio_direction_output(pdata->hub_reset, 0); gpio_direction_output(pdata->xo_clk_gpio, 0); return 0; }
static int kdwc3_remove(struct platform_device *pdev) { struct dwc3_keystone *kdwc = platform_get_drvdata(pdev); kdwc3_disable_irqs(kdwc); device_for_each_child(&pdev->dev, NULL, kdwc3_remove_core); clk_disable_unprepare(kdwc->clk); platform_set_drvdata(pdev, NULL); return 0; }
static pci_ers_result_t pcie_portdrv_error_detected(struct pci_dev *dev, enum pci_channel_state error) { struct aer_broadcast_data data = {error, PCI_ERS_RESULT_CAN_RECOVER}; int ret; /* can not fail */ ret = device_for_each_child(&dev->dev, &data, error_detected_iter); return data.result; }
static int dwc3_exynos_remove(struct platform_device *pdev) { struct dwc3_exynos *exynos = platform_get_drvdata(pdev); device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child); platform_device_unregister(exynos->usb2_phy); platform_device_unregister(exynos->usb3_phy); clk_disable_unprepare(exynos->clk); return 0; }
static int dwc3_omap_remove(struct platform_device *pdev) { struct dwc3_omap *omap = platform_get_drvdata(pdev); platform_device_unregister(omap->usb2_phy); platform_device_unregister(omap->usb3_phy); pm_runtime_put_sync(&pdev->dev); pm_runtime_disable(&pdev->dev); device_for_each_child(&pdev->dev, NULL, dwc3_omap_remove_core); return 0; }
int nvdimm_bus_check_dimm_count(struct nvdimm_bus *nvdimm_bus, int dimm_count) { int count = 0; /* Flush any possible dimm registration failures */ nd_synchronize(); device_for_each_child(&nvdimm_bus->dev, &count, count_dimms); dev_dbg(&nvdimm_bus->dev, "%s: count: %d\n", __func__, count); if (count != dimm_count) return -ENXIO; return 0; }
/** * nd_is_uuid_unique - verify that no other namespace has @uuid * @dev: any device on a nvdimm_bus * @uuid: uuid to check */ bool nd_is_uuid_unique(struct device *dev, u8 *uuid) { struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev); if (!nvdimm_bus) return false; WARN_ON_ONCE(!is_nvdimm_bus_locked(&nvdimm_bus->dev)); if (device_for_each_child(&nvdimm_bus->dev, uuid, is_namespace_uuid_busy) != 0) return false; return true; }
static int omap_ocp2scp_probe(struct platform_device *pdev) { int ret; u32 reg; void __iomem *regs; struct resource *res; struct device_node *np = pdev->dev.of_node; if (np) { ret = of_platform_populate(np, NULL, NULL, &pdev->dev); if (ret) { dev_err(&pdev->dev, "failed to add resources for ocp2scp child\n"); goto err0; } } pm_runtime_enable(&pdev->dev); /* * As per AM572x TRM: http://www.ti.com/lit/ug/spruhz6/spruhz6.pdf * under section 26.3.2.2, table 26-26 OCP2SCP TIMING Caution; * As per OMAP4430 TRM: http://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf * under section 23.12.6.2.2 , Table 23-1213 OCP2SCP TIMING Caution; * As per OMAP4460 TRM: http://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf * under section 23.12.6.2.2, Table 23-1213 OCP2SCP TIMING Caution; * As per OMAP543x TRM http://www.ti.com/lit/pdf/swpu249 * under section 27.3.2.2, Table 27-27 OCP2SCP TIMING Caution; * * Read path of OCP2SCP is not working properly due to low reset value * of SYNC2 parameter in OCP2SCP. Suggested reset value is 0x6 or more. */ if (!of_device_is_compatible(np, "ti,am437x-ocp2scp")) { res = platform_get_resource(pdev, IORESOURCE_MEM, 0); regs = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(regs)) goto err0; pm_runtime_get_sync(&pdev->dev); reg = readl_relaxed(regs + OCP2SCP_TIMING); reg &= ~(SYNC2_MASK); reg |= 0x6; writel_relaxed(reg, regs + OCP2SCP_TIMING); pm_runtime_put_sync(&pdev->dev); } return 0; err0: device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices); return ret; }
static void umc_bus_rescan(struct device *parent) { int err; /* * We can't use bus_rescan_devices() here as it deadlocks when * it tries to retake the dev->parent semaphore. */ err = device_for_each_child(parent, NULL, umc_bus_rescan_helper); if (err < 0) printk(KERN_WARNING "%s: rescan of bus failed: %d\n", KBUILD_MODNAME, err); }
static pci_ers_result_t pcie_portdrv_slot_reset(struct pci_dev *dev) { pci_ers_result_t status; /* If fatal, restore cfg space for possible link reset at upstream */ if (dev->error_state == pci_channel_io_frozen) { pcie_portdrv_restore_config(dev); pci_enable_pcie_error_reporting(dev); } device_for_each_child(&dev->dev, &status, slot_reset_iter); return status; }
static int __exit omapdss_hdmihw_remove(struct platform_device *pdev) { device_for_each_child(&pdev->dev, NULL, hdmi_remove_child); dss_unregister_child_devices(&pdev->dev); hdmi_panel_exit(); hdmi_uninit_output(pdev); pm_runtime_disable(&pdev->dev); return 0; }
static int arche_platform_remove(struct platform_device *pdev) { struct arche_platform_drvdata *arche_pdata = platform_get_drvdata(pdev); unregister_pm_notifier(&arche_pdata->pm_notifier); device_remove_file(&pdev->dev, &dev_attr_state); device_for_each_child(&pdev->dev, NULL, arche_remove_child); arche_platform_poweroff_seq(arche_pdata); if (usb3613_hub_mode_ctrl(false)) dev_warn(arche_pdata->dev, "failed to control hub device\n"); /* TODO: Should we do anything more here ?? */ return 0; }
static int nd_region_remove(struct device *dev) { struct nd_region *nd_region = to_nd_region(dev); /* flush attribute readers and disable */ nvdimm_bus_lock(dev); nd_region->ns_seed = NULL; nd_region->btt_seed = NULL; nd_region->pfn_seed = NULL; dev_set_drvdata(dev, NULL); nvdimm_bus_unlock(dev); device_for_each_child(dev, NULL, child_unregister); return 0; }
static int dwc3_omap_remove(struct platform_device *pdev) { struct dwc3_omap *omap = platform_get_drvdata(pdev); if (omap->extcon_vbus_dev.edev) extcon_unregister_interest(&omap->extcon_vbus_dev); if (omap->extcon_id_dev.edev) extcon_unregister_interest(&omap->extcon_id_dev); dwc3_omap_disable_irqs(omap); device_for_each_child(&pdev->dev, NULL, dwc3_omap_remove_core); pm_runtime_put_sync(&pdev->dev); pm_runtime_disable(&pdev->dev); return 0; }
/** * dprc_remove_devices - Removes devices for objects removed from a DPRC * * @mc_bus_dev: pointer to the fsl-mc device that represents a DPRC object * @obj_desc_array: array of object descriptors for child objects currently * present in the DPRC in the MC. * @num_child_objects_in_mc: number of entries in obj_desc_array * * Synchronizes the state of the Linux bus driver with the actual state of * the MC by removing devices that represent MC objects that have * been dynamically removed in the physical DPRC. */ static void dprc_remove_devices(struct fsl_mc_device *mc_bus_dev, struct dprc_obj_desc *obj_desc_array, int num_child_objects_in_mc) { if (num_child_objects_in_mc != 0) { /* * Remove child objects that are in the DPRC in Linux, * but not in the MC: */ struct dprc_child_objs objs; objs.child_count = num_child_objects_in_mc; objs.child_array = obj_desc_array; device_for_each_child(&mc_bus_dev->dev, &objs, __fsl_mc_device_remove_if_not_in_mc); } else { /* * There are no child objects for this DPRC in the MC. * So, remove all the child devices from Linux: */ device_for_each_child(&mc_bus_dev->dev, NULL, __fsl_mc_device_remove); } }
static pci_ers_result_t pcie_portdrv_slot_reset(struct pci_dev *dev) { pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED; /* If fatal, restore cfg space for possible link reset at upstream */ if (dev->error_state == pci_channel_io_frozen) { dev->state_saved = true; pci_restore_state(dev); pcie_portdrv_restore_config(dev); pci_enable_pcie_error_reporting(dev); } /* get true return value from &status */ device_for_each_child(&dev->dev, &status, slot_reset_iter); return status; }
static void __devexit rpmsg_remove(struct virtio_device *vdev) { struct virtproc_info *vrp = vdev->priv; int ret; ret = device_for_each_child(&vdev->dev, NULL, rpmsg_remove_device); if (ret) dev_warn(&vdev->dev, "can't remove rpmsg device: %d\n", ret); idr_remove_all(&vrp->endpoints); idr_destroy(&vrp->endpoints); vdev->config->del_vqs(vrp->vdev); kfree(vrp); }
static ssize_t wait_probe_show(struct device *dev, struct device_attribute *attr, char *buf) { struct nvdimm_bus *nvdimm_bus = to_nvdimm_bus(dev); struct nvdimm_bus_descriptor *nd_desc = nvdimm_bus->nd_desc; int rc; if (nd_desc->flush_probe) { rc = nd_desc->flush_probe(nd_desc); if (rc) return rc; } nd_synchronize(); device_for_each_child(dev, NULL, flush_regions_dimms); return sprintf(buf, "1\n"); }
static int usb_generic_suspend(struct device *dev, pm_message_t message) { struct usb_interface *intf; struct usb_driver *driver; int status; /* USB devices enter SUSPEND state through their hubs, but can be * marked for FREEZE as soon as their children are already idled. * But those semantics are useless, so we equate the two (sigh). */ /*挂起usb设备*/ if (dev->driver == &usb_generic_driver) { if (dev->power.power_state.event == message.event) return 0; /* we need to rule out bogus requests through sysfs */ status = device_for_each_child(dev, NULL, verify_suspended); if (status) return status; /*挂起设备的操作*/ return usb_suspend_device (to_usb_device(dev)); } if ((dev->driver == NULL) || (dev->driver_data == &usb_generic_driver_data)) return 0; intf = to_usb_interface(dev); driver = to_usb_driver(dev->driver); /* with no hardware, USB interfaces only use FREEZE and ON states */ if (!is_active(intf)) return 0; //挂起usb设备接口驱动 if (driver->suspend && driver->resume) { status = driver->suspend(intf, message); if (status) dev_err(dev, "%s error %d\n", "suspend", status); else mark_quiesced(intf); } else { // FIXME else if there's no suspend method, disconnect... dev_warn(dev, "no suspend for driver %s?\n", driver->name); mark_quiesced(intf); status = 0; } return status; }
/* * The alert IRQ handler needs to hand work off to a task which can issue * SMBus calls, because those sleeping calls can't be made in IRQ context. */ static void smbus_alert(struct work_struct *work) { struct i2c_smbus_alert *alert; struct i2c_client *ara; unsigned short prev_addr = 0; /* Not a valid address */ alert = container_of(work, struct i2c_smbus_alert, alert); ara = alert->ara; for (;;) { s32 status; struct alert_data data; /* * Devices with pending alerts reply in address order, low * to high, because of slave transmit arbitration. After * responding, an SMBus device stops asserting SMBALERT#. * * Note that SMBus 2.0 reserves 10-bit addresess for future * use. We neither handle them, nor try to use PEC here. */ status = i2c_smbus_read_byte(ara); if (status < 0) break; data.flag = status & 1; data.addr = status >> 1; if (data.addr == prev_addr) { dev_warn(&ara->dev, "Duplicate SMBALERT# from dev " "0x%02x, skipping\n", data.addr); break; } dev_dbg(&ara->dev, "SMBALERT# from dev 0x%02x, flag %d\n", data.addr, data.flag); /* Notify driver for the device which issued the alert */ device_for_each_child(&ara->adapter->dev, &data, smbus_do_alert); prev_addr = data.addr; } /* We handled all alerts; re-enable level-triggered IRQs */ if (!alert->alert_edge_triggered) enable_irq(alert->irq); }
static int exynos_adc_remove(struct platform_device *pdev) { struct iio_dev *indio_dev = platform_get_drvdata(pdev); struct exynos_adc *info = iio_priv(indio_dev); device_for_each_child(&indio_dev->dev, NULL, exynos_adc_remove_devices); iio_device_unregister(indio_dev); free_irq(info->irq, info); if (info->data->exit_hw) info->data->exit_hw(info); exynos_adc_disable_clk(info); exynos_adc_unprepare_clk(info); regulator_disable(info->vdd); return 0; }
static pci_ers_result_t pcie_portdrv_slot_reset(struct pci_dev *dev) { pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED; int retval; if (dev->error_state == pci_channel_io_frozen) { dev->state_saved = true; pci_restore_state(dev); pcie_portdrv_restore_config(dev); pci_enable_pcie_error_reporting(dev); } retval = device_for_each_child(&dev->dev, &status, slot_reset_iter); return status; }
static int each_smmu(struct device *dev, void *data) { int found; struct smmu_ctx_search_result *res = data; struct smmu_device *s = dev->platform_data; struct smmu_driver *drv = dev_get_drvdata(dev); if (!res || !s || !drv || !res->name) return -1; found = device_for_each_child(dev, res, each_ctx); if (found == 1) { res->smmu_device = s; res->drv = drv; } return found; }
static int omap_ocp2scp_probe(struct platform_device *pdev) { int ret; u32 reg; void __iomem *regs; struct resource *res; struct device_node *np = pdev->dev.of_node; if (np) { ret = of_platform_populate(np, NULL, NULL, &pdev->dev); if (ret) { dev_err(&pdev->dev, "failed to add resources for ocp2scp child\n"); goto err0; } } res = platform_get_resource(pdev, IORESOURCE_MEM, 0); regs = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(regs)) return PTR_ERR(regs); pm_runtime_enable(&pdev->dev); /* * Read path of OCP2SCP is not working properly due to low reset value * of SYNC2 parameter in OCP2SCP. Suggested reset value is 0x6. */ pm_runtime_get_sync(&pdev->dev); reg = readl(regs + OCP2SCP_TIMING); reg &= ~(SYNC2_MASK); reg |= 0x6; writel(reg, regs + OCP2SCP_TIMING); pm_runtime_put_sync(&pdev->dev); return 0; err0: device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices); return ret; }
static void __devexit rpmsg_remove(struct virtio_device *vdev) { struct virtproc_info *vrp = vdev->priv; int ret; vdev->config->reset(vdev); ret = device_for_each_child(&vdev->dev, NULL, rpmsg_remove_device); if (ret) dev_warn(&vdev->dev, "can't remove rpmsg device: %d\n", ret); idr_remove_all(&vrp->endpoints); idr_destroy(&vrp->endpoints); vdev->config->del_vqs(vrp->vdev); dma_free_coherent(vdev->dev.parent, RPMSG_TOTAL_BUF_SPACE, vrp->rbufs, vrp->bufs_dma); kfree(vrp); }
struct device *msm_iommu_get_ctx(const char *ctx_name) { struct iommu_ctx_iter_data r; int found; if (!msm_iommu_root_dev) { pr_err("No root IOMMU device.\n"); goto fail; } r.name = ctx_name; found = device_for_each_child(&msm_iommu_root_dev->dev, &r, each_iommu); if (found <= 0 || !dev_get_drvdata(r.dev)) { pr_err("Could not find context <%s>\n", ctx_name); goto fail; } return r.dev; fail: return NULL; }