/openbmc/linux/arch/arm64/boot/dts/freescale/ |
H A D | imx8mp-verdin-nonwifi-dev.dts | 10 #include "imx8mp-verdin-dev.dtsi" 14 compatible = "toradex,verdin-imx8mp-nonwifi-dev",
|
H A D | imx8mp-verdin-wifi-dev.dts | 10 #include "imx8mp-verdin-dev.dtsi" 14 compatible = "toradex,verdin-imx8mp-wifi-dev",
|
/openbmc/linux/drivers/iio/imu/bno055/ |
H A D | bno055_i2c.c | 25 return dev_err_probe(&client->dev, PTR_ERR(regmap), in bno055_i2c_probe() 28 return bno055_probe(&client->dev, regmap, in bno055_i2c_probe()
|
/openbmc/linux/drivers/iio/accel/ |
H A D | mma7455_spi.c | 22 return mma7455_core_probe(&spi->dev, regmap, id->name); in mma7455_spi_probe() 27 mma7455_core_remove(&spi->dev); in mma7455_spi_remove()
|
/openbmc/linux/drivers/media/platform/renesas/ |
H A D | rcar_fdp1.c | 565 struct device *dev; member 2053 src_vq->dev = ctx->fdp1->dev; in queue_init() 2067 dst_vq->dev = ctx->fdp1->dev; in queue_init() 2175 pm_runtime_put(fdp1->dev); in fdp1_release() 2281 fdp1->dev = &pdev->dev; in fdp1_probe() 2296 dev_name(&pdev->dev), fdp1); in fdp1_probe() 2315 clk = clk_get(&pdev->dev, NULL); in fdp1_probe() 2357 pm_runtime_enable(&pdev->dev); in fdp1_probe() 2385 pm_runtime_put(fdp1->dev); in fdp1_probe() 2390 pm_runtime_disable(fdp1->dev); in fdp1_probe() [all …]
|
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/pcie/ |
H A D | rx.c | 684 dma_free_coherent(trans->dev, in iwl_pcie_free_rxq_dma() 694 dma_free_coherent(trans->dev, in iwl_pcie_free_rxq_dma() 718 struct device *dev = trans->dev; in iwl_pcie_alloc_rxq_dma() local 740 rxq->used_bd = dma_alloc_coherent(dev, in iwl_pcie_alloc_rxq_dma() 797 dma_alloc_coherent(trans->dev, in iwl_pcie_rx_alloc() 818 dma_free_coherent(trans->dev, in iwl_pcie_rx_alloc() 1220 dma_free_coherent(trans->dev, in iwl_pcie_rx_free() 1714 trace_iwlwifi_dev_irq(trans->dev); in iwl_pcie_int_cause_non_ict() 1743 trace_iwlwifi_dev_irq(trans->dev); in iwl_pcie_int_cause_ict() 2095 dma_free_coherent(trans->dev, ICT_SIZE, in iwl_pcie_free_ict() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/pm/swsmu/smu11/ |
H A D | navi10_ppt.c | 915 dev_err(adev->dev, "Failed to get smu version!\n"); in navi1x_get_smu_metrics_data() 2183 dev_err(smu->adev->dev, "Failed to update WMTABLE!"); in navi10_set_watermarks_table() 2590 dev_warn(smu->adev->dev, "OverDrive is not enabled!\n"); in navi10_od_edit_dpm_table() 2595 dev_err(smu->adev->dev, "OD board limits are not set!\n"); in navi10_od_edit_dpm_table() 2608 dev_err(smu->adev->dev, "Overdrive is not initialized\n"); in navi10_od_edit_dpm_table() 2650 dev_warn(smu->adev->dev, "UCLK_MAX not supported!\n"); in navi10_od_edit_dpm_table() 2659 dev_info(smu->adev->dev, "Supported indices: [1:max]\n"); in navi10_od_edit_dpm_table() 2760 dev_err(smu->adev->dev, "RunBtc failed!\n"); in navi10_run_btc() 2870 dev_err(adev->dev, "Failed to get smu version!\n"); in navi10_run_umc_cdr_workaround() 3095 control->dev.parent = &adev->pdev->dev; in navi10_i2c_control_init() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/netdata/netdata/ |
H A D | netdata.conf | 49 [plugin:proc:/proc/net/dev] 195 [plugin:proc:/proc/net/dev:lo] 198 [plugin:proc:/proc/net/dev:fireqos_monitor] 225 [plugin:proc:/proc/net/dev:eth1-ifb] 228 [plugin:proc:/proc/net/dev:eth0] 238 [plugin:proc:/proc/net/dev:eth1] 248 [plugin:proc:/proc/net/dev:eth0-ifb]
|
/openbmc/qemu/hw/i2c/ |
H A D | omap_i2c.c | 138 static void omap_i2c_reset(DeviceState *dev) in omap_i2c_reset() argument 140 OMAPI2CState *s = OMAP_I2C(dev); in omap_i2c_reset() 475 DeviceState *dev = DEVICE(obj); in omap_i2c_init() local 483 s->bus = i2c_init_bus(dev, NULL); in omap_i2c_init() 486 static void omap_i2c_realize(DeviceState *dev, Error **errp) in omap_i2c_realize() argument 488 OMAPI2CState *s = OMAP_I2C(dev); in omap_i2c_realize() 490 memory_region_init_io(&s->iomem, OBJECT(dev), &omap_i2c_ops, s, "omap.i2c", in omap_i2c_realize()
|
/openbmc/u-boot/drivers/crypto/ |
H A D | aspeed_hace.c | 389 static int aspeed_hace_probe(struct udevice *dev) in aspeed_hace_probe() argument 391 struct aspeed_hace *hace = dev_get_priv(dev); in aspeed_hace_probe() 394 ret = clk_get_by_index(dev, 0, &hace->clk); in aspeed_hace_probe() 396 debug("Can't get clock for %s: %d\n", dev->name, ret); in aspeed_hace_probe() 407 base = devfdt_get_addr(dev); in aspeed_hace_probe() 412 static int aspeed_hace_remove(struct udevice *dev) in aspeed_hace_remove() argument 414 struct aspeed_hace *hace = dev_get_priv(dev); in aspeed_hace_remove()
|
/openbmc/qemu/hw/pci-host/ |
H A D | pnv_phb4_pec.c | 200 static void pnv_pec_realize(DeviceState *dev, Error **errp) in pnv_pec_realize() argument 202 PnvPhb4PecState *pec = PNV_PHB4_PEC(dev); in pnv_pec_realize() 225 pnv_xscom_region_init(&pec->nest_regs_mr, OBJECT(dev), in pnv_pec_realize() 231 pnv_xscom_region_init(&pec->pci_regs_mr, OBJECT(dev), in pnv_pec_realize() 236 static int pnv_pec_dt_xscom(PnvXScomInterface *dev, void *fdt, in pnv_pec_dt_xscom() argument 239 PnvPhb4PecState *pec = PNV_PHB4_PEC(dev); in pnv_pec_dt_xscom() 240 PnvPhb4PecClass *pecc = PNV_PHB4_PEC_GET_CLASS(dev); in pnv_pec_dt_xscom()
|
/openbmc/linux/sound/soc/sof/intel/ |
H A D | cnl.c | 80 dev_dbg_ratelimited(sdev->dev, in cnl_ipc4_irq_thread() 102 dev_dbg_ratelimited(sdev->dev, "nothing to do in IPC IRQ thread\n"); in cnl_ipc4_irq_thread() 153 dev_dbg_ratelimited(sdev->dev, "IPC reply before FW_READY: %#x\n", in cnl_ipc_irq_thread() 199 dev_dbg_ratelimited(sdev->dev, in cnl_ipc_irq_thread() 350 dev_err(sdev->dev, in cnl_ipc_dump() 371 dev_err(sdev->dev, in cnl_ipc4_dump() 405 sdev->private = devm_kzalloc(sdev->dev, sizeof(*ipc4_data), GFP_KERNEL); in sof_cnl_ops_init()
|
/openbmc/linux/drivers/platform/chrome/ |
H A D | cros_ec_chardev.c | 181 dev_err(ec_dev->dev, "failed to register event notifier\n"); in cros_ec_chardev_open() 379 struct cros_ec_dev *ec_dev = dev_get_drvdata(pdev->dev.parent); in cros_ec_chardev_probe() 380 struct cros_ec_platform *ec_platform = dev_get_platdata(ec_dev->dev); in cros_ec_chardev_probe() 384 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); in cros_ec_chardev_probe() 392 data->misc.parent = pdev->dev.parent; in cros_ec_chardev_probe() 394 dev_set_drvdata(&pdev->dev, data); in cros_ec_chardev_probe() 401 struct chardev_data *data = dev_get_drvdata(&pdev->dev); in cros_ec_chardev_remove()
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | pci_dn.c | 68 if (pdev->dev.archdata.pci_data) in pci_get_pdn_by_devfn() 69 return pdev->dev.archdata.pci_data; in pci_get_pdn_by_devfn() 101 if (pdev->dev.archdata.pci_data) in pci_get_pdn() 102 return pdev->dev.archdata.pci_data; in pci_get_pdn() 199 dev_warn(&pdev->dev, "%s: Cannot create firmware data for VF#%d\n", in add_sriov_vf_pdns() 489 if (pdev->dev.archdata.pci_data) in pci_dev_pdn_setup() 494 pdev->dev.archdata.pci_data = pdn; in pci_dev_pdn_setup()
|
/openbmc/linux/drivers/spi/ |
H A D | spi-sh.c | 398 dev_err(&pdev->dev, "invalid resource\n"); in spi_sh_probe() 406 host = devm_spi_alloc_host(&pdev->dev, sizeof(struct spi_sh_data)); in spi_sh_probe() 408 dev_err(&pdev->dev, "devm_spi_alloc_host error.\n"); in spi_sh_probe() 423 dev_err(&pdev->dev, "No support width\n"); in spi_sh_probe() 428 ss->addr = devm_ioremap(&pdev->dev, res->start, resource_size(res)); in spi_sh_probe() 430 dev_err(&pdev->dev, "ioremap error.\n"); in spi_sh_probe() 437 dev_err(&pdev->dev, "request_irq error\n"); in spi_sh_probe()
|
/openbmc/linux/drivers/media/i2c/ |
H A D | lm3560.c | 54 struct device *dev; member 352 struct i2c_client *client = to_i2c_client(flash->dev); in lm3560_subdev_init() 397 struct lm3560_platform_data *pdata = dev_get_platdata(&client->dev); in lm3560_probe() 400 flash = devm_kzalloc(&client->dev, sizeof(*flash), GFP_KERNEL); in lm3560_probe() 412 pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL); in lm3560_probe() 425 flash->dev = &client->dev; in lm3560_probe()
|
/openbmc/linux/drivers/accel/habanalabs/common/mmu/ |
H A D | mmu_v2_hr.c | 103 dev_err(hdev->dev, "ctx %d is freed while it has pgts in use\n", in hl_mmu_v2_hr_ctx_fini() 107 dev_err_ratelimited(hdev->dev, in hl_mmu_v2_hr_ctx_fini() 163 dev_err(hdev->dev, "DRAM unmapping should use huge pages only\n"); in _hl_mmu_v2_hr_unmap() 185 dev_err(hdev->dev, "virt addr 0x%llx is not mapped to phys addr\n", virt_addr); in _hl_mmu_v2_hr_unmap() 234 dev_err(ctx->hdev->dev, "Invalid last HOP %d\n", hop_last); in _hl_mmu_v2_hr_map() 262 dev_err(hdev->dev, "mapping already exists for virt_addr 0x%llx\n", in _hl_mmu_v2_hr_map() 266 dev_dbg(hdev->dev, "hop%d pte: 0x%llx (0x%llx)\n", in _hl_mmu_v2_hr_map()
|
/openbmc/linux/drivers/dma-buf/heaps/ |
H A D | system_heap.c | 37 struct device *dev; member 100 a->dev = attachment->dev; in system_heap_attach() 135 ret = dma_map_sgtable(attachment->dev, table, direction, 0); in system_heap_map_dma_buf() 150 dma_unmap_sgtable(attachment->dev, table, direction, 0); in system_heap_unmap_dma_buf() 167 dma_sync_sgtable_for_cpu(a->dev, a->table, direction); in system_heap_dma_buf_begin_cpu_access() 188 dma_sync_sgtable_for_device(a->dev, a->table, direction); in system_heap_dma_buf_end_cpu_access()
|
/openbmc/linux/drivers/fpga/ |
H A D | socfpga.c | 407 dev_err(&mgr->dev, "Partial reconfiguration not supported.\n"); in socfpga_fpga_ops_configure_init() 545 struct device *dev = &pdev->dev; in socfpga_fpga_probe() local 550 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); in socfpga_fpga_probe() 566 ret = devm_request_irq(dev, priv->irq, socfpga_fpga_isr, 0, in socfpga_fpga_probe() 567 dev_name(dev), priv); in socfpga_fpga_probe() 571 mgr = devm_fpga_mgr_register(dev, "Altera SOCFPGA FPGA Manager", in socfpga_fpga_probe()
|
/openbmc/linux/drivers/regulator/ |
H A D | mc13783-regulator.c | 394 struct mc13xxx *mc13783 = dev_get_drvdata(pdev->dev.parent); in mc13783_regulator_probe() 396 dev_get_platdata(&pdev->dev); in mc13783_regulator_probe() 408 priv = devm_kzalloc(&pdev->dev, in mc13783_regulator_probe() 438 config.dev = &pdev->dev; in mc13783_regulator_probe() 443 priv->regulators[i] = devm_regulator_register(&pdev->dev, desc, in mc13783_regulator_probe() 446 dev_err(&pdev->dev, "failed to register regulator %s\n", in mc13783_regulator_probe()
|
/openbmc/linux/arch/arm64/kernel/ |
H A D | cpuinfo.c | 324 struct device *dev; in cpuid_cpu_online() local 327 dev = get_cpu_device(cpu); in cpuid_cpu_online() 328 if (!dev) { in cpuid_cpu_online() 332 rc = kobject_add(&info->kobj, &dev->kobj, "regs"); in cpuid_cpu_online() 346 struct device *dev; in cpuid_cpu_offline() local 349 dev = get_cpu_device(cpu); in cpuid_cpu_offline() 350 if (!dev) in cpuid_cpu_offline()
|
/openbmc/linux/drivers/pcmcia/ |
H A D | bcm63xx_pcmcia.c | 215 dev_err(&skt->socket.dev, "unsupported card type\n"); in __get_socket_status() 347 skt->pd = pdev->dev.platform_data; in bcm63xx_drv_pcmcia_probe() 381 sock->dev.parent = &pdev->dev; in bcm63xx_drv_pcmcia_probe() 465 static int bcm63xx_cb_probe(struct pci_dev *dev, in bcm63xx_cb_probe() argument 469 bcm63xx_cb_dev = dev; in bcm63xx_cb_probe() 473 static void bcm63xx_cb_exit(struct pci_dev *dev) in bcm63xx_cb_exit() argument
|
/openbmc/linux/drivers/iio/adc/ |
H A D | ad7791.c | 404 struct ad7791_platform_data *pdata = spi->dev.platform_data; in ad7791_probe() 410 dev_err(&spi->dev, "Missing IRQ.\n"); in ad7791_probe() 414 indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st)); in ad7791_probe() 420 st->reg = devm_regulator_get(&spi->dev, "refin"); in ad7791_probe() 428 ret = devm_add_action_or_reset(&spi->dev, ad7791_reg_disable, st->reg); in ad7791_probe() 444 ret = devm_ad_sd_setup_buffer_and_trigger(&spi->dev, indio_dev); in ad7791_probe() 452 return devm_iio_device_register(&spi->dev, indio_dev); in ad7791_probe()
|
/openbmc/linux/drivers/iio/dac/ |
H A D | ti-dac5571.c | 312 struct device *dev = &client->dev; in dac5571_probe() local 319 indio_dev = devm_iio_device_alloc(dev, sizeof(*data)); in dac5571_probe() 332 if (dev_fwnode(dev)) in dac5571_probe() 333 chip_id = (uintptr_t)device_get_match_data(dev); in dac5571_probe() 342 data->vref = devm_regulator_get(dev, "vref"); in dac5571_probe() 369 dev_err(dev, "failed to initialize channel %d to 0\n", i); in dac5571_probe()
|
/openbmc/linux/drivers/iio/light/ |
H A D | vl6180.c | 140 dev_err(&client->dev, "failed reading register 0x%04x\n", cmd); in vl6180_read() 182 dev_err(&client->dev, "failed writing register 0x%04x\n", cmd); in vl6180_write_byte() 201 dev_err(&client->dev, "failed writing register 0x%04x\n", cmd); in vl6180_write_word() 452 dev_err(&client->dev, "invalid model ID %02x\n", ret); in vl6180_init() 469 dev_info(&client->dev, "device is not fresh out of reset\n"); in vl6180_init() 502 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data)); in vl6180_probe() 521 return devm_iio_device_register(&client->dev, indio_dev); in vl6180_probe()
|