Home
last modified time | relevance | path

Searched refs:dev_info (Results 1 – 25 of 2825) sorted by relevance

12345678910>>...113

/linux/drivers/s390/block/
H A Ddcssblk.c112 struct dcssblk_dev_info *dev_info; in dcssblk_release_segment() local
115 dev_info = container_of(dev, struct dcssblk_dev_info, dev); in dcssblk_release_segment()
116 list_for_each_entry_safe(entry, temp, &dev_info->seg_list, lh) { in dcssblk_release_segment()
120 kfree(dev_info); in dcssblk_release_segment()
131 dcssblk_assign_free_minor(struct dcssblk_dev_info *dev_info) in dcssblk_assign_free_minor() argument
136 if (dev_info == NULL) in dcssblk_assign_free_minor()
148 dev_info->gd->first_minor = minor; in dcssblk_assign_free_minor()
178 struct dcssblk_dev_info *dev_info; in dcssblk_get_segment_by_name() local
181 list_for_each_entry(dev_info, &dcssblk_devices, lh) { in dcssblk_get_segment_by_name()
182 list_for_each_entry(entry, &dev_info->seg_list, lh) { in dcssblk_get_segment_by_name()
[all …]
/linux/drivers/power/supply/
H A Dds2781_battery.c53 static inline int ds2781_battery_io(struct ds2781_device_info *dev_info, in ds2781_battery_io() argument
56 return w1_ds2781_io(dev_info->w1_dev, buf, addr, count, io); in ds2781_battery_io()
59 static int w1_ds2781_read(struct ds2781_device_info *dev_info, char *buf, in w1_ds2781_read() argument
62 return ds2781_battery_io(dev_info, buf, addr, count, 0); in w1_ds2781_read()
65 static inline int ds2781_read8(struct ds2781_device_info *dev_info, u8 *val, in ds2781_read8() argument
68 return ds2781_battery_io(dev_info, val, addr, sizeof(u8), 0); in ds2781_read8()
71 static int ds2781_read16(struct ds2781_device_info *dev_info, s16 *val, in ds2781_read16() argument
77 ret = ds2781_battery_io(dev_info, raw, addr, sizeof(raw), 0); in ds2781_read16()
86 static inline int ds2781_read_block(struct ds2781_device_info *dev_info, in ds2781_read_block() argument
89 return ds2781_battery_io(dev_info, val, addr, count, 0); in ds2781_read_block()
[all …]
H A Dds2780_battery.c55 static inline int ds2780_battery_io(struct ds2780_device_info *dev_info, in ds2780_battery_io() argument
58 return w1_ds2780_io(dev_info->w1_dev, buf, addr, count, io); in ds2780_battery_io()
61 static inline int ds2780_read8(struct ds2780_device_info *dev_info, u8 *val, in ds2780_read8() argument
64 return ds2780_battery_io(dev_info, val, addr, sizeof(u8), 0); in ds2780_read8()
67 static int ds2780_read16(struct ds2780_device_info *dev_info, s16 *val, in ds2780_read16() argument
73 ret = ds2780_battery_io(dev_info, raw, addr, sizeof(raw), 0); in ds2780_read16()
82 static inline int ds2780_read_block(struct ds2780_device_info *dev_info, in ds2780_read_block() argument
85 return ds2780_battery_io(dev_info, val, addr, count, 0); in ds2780_read_block()
88 static inline int ds2780_write(struct ds2780_device_info *dev_info, u8 *val, in ds2780_write() argument
91 return ds2780_battery_io(dev_info, val, addr, count, 1); in ds2780_write()
[all …]
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_debugfs.c28 dev_info(&pf->pdev->dev, "%d: bad seid\n", seid); in i40e_dbg_find_vsi()
67 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid()
71 dev_info(&pf->pdev->dev, "vsi seid %d\n", seid); in i40e_dbg_dump_vsi_seid()
75 dev_info(&pf->pdev->dev, " netdev: name = %s, state = %lu, flags = 0x%08x\n", in i40e_dbg_dump_vsi_seid()
77 dev_info(&pf->pdev->dev, " features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid()
79 dev_info(&pf->pdev->dev, " hw_features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid()
81 dev_info(&pf->pdev->dev, " vlan_features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid()
84 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid()
88 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid()
92 dev_info(&pf->pdev->dev, " MAC address: %pM Port MAC: %pM\n", in i40e_dbg_dump_vsi_seid()
[all …]
/linux/drivers/edac/
H A Dcpc925_edac.c278 void (*init)(struct cpc925_dev_info *dev_info);
279 void (*exit)(struct cpc925_dev_info *dev_info);
615 static void cpc925_cpu_init(struct cpc925_dev_info *dev_info) in cpc925_cpu_init() argument
620 apimask = __raw_readl(dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_init()
632 __raw_writel(apimask, dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_init()
636 static void cpc925_cpu_exit(struct cpc925_dev_info *dev_info) in cpc925_cpu_exit() argument
655 struct cpc925_dev_info *dev_info = edac_dev->pvt_info; in cpc925_cpu_check() local
660 apiexcp = __raw_readl(dev_info->vbase + REG_APIEXCP_OFFSET); in cpc925_cpu_check()
667 apimask = __raw_readl(dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_check()
678 static void cpc925_htlink_init(struct cpc925_dev_info *dev_info) in cpc925_htlink_init() argument
[all …]
/linux/drivers/net/ethernet/intel/ice/
H A Dice_parser.c136 dev_info(dev, "boost main:\n"); in ice_imem_bst_bm_dump()
137 dev_info(dev, "\talu0 = %d\n", bm->alu0); in ice_imem_bst_bm_dump()
138 dev_info(dev, "\talu1 = %d\n", bm->alu1); in ice_imem_bst_bm_dump()
139 dev_info(dev, "\talu2 = %d\n", bm->alu2); in ice_imem_bst_bm_dump()
140 dev_info(dev, "\tpg = %d\n", bm->pg); in ice_imem_bst_bm_dump()
148 dev_info(dev, "boost key builder:\n"); in ice_imem_bst_kb_dump()
149 dev_info(dev, "\tpriority = %d\n", kb->prio); in ice_imem_bst_kb_dump()
150 dev_info(dev, "\ttsr_ctrl = %d\n", kb->tsr_ctrl); in ice_imem_bst_kb_dump()
158 dev_info(dev, "next proto key builder:\n"); in ice_imem_np_kb_dump()
159 dev_info(dev, "\topc = %d\n", kb->opc); in ice_imem_np_kb_dump()
[all …]
/linux/drivers/net/ethernet/emulex/benet/
H A Dbe_roce.c28 struct be_dev_info dev_info; in _be_roce_dev_add() local
45 dev_info.dpp_unmapped_addr = pci_resource_start(pdev, 2); in _be_roce_dev_add()
46 dev_info.dpp_unmapped_len = pci_resource_len(pdev, 2); in _be_roce_dev_add()
48 dev_info.dpp_unmapped_addr = 0; in _be_roce_dev_add()
49 dev_info.dpp_unmapped_len = 0; in _be_roce_dev_add()
51 dev_info.pdev = adapter->pdev; in _be_roce_dev_add()
52 dev_info.db = adapter->db; in _be_roce_dev_add()
53 dev_info.unmapped_db = adapter->roce_db.io_addr; in _be_roce_dev_add()
54 dev_info.db_page_size = adapter->roce_db.size; in _be_roce_dev_add()
55 dev_info.db_total_size = adapter->roce_db.total_size; in _be_roce_dev_add()
[all …]
/linux/include/net/caif/
H A Dcfsrvl.h22 struct dev_info dev_info; member
28 struct cflayer *cfvei_create(u8 linkid, struct dev_info *dev_info);
29 struct cflayer *cfdgml_create(u8 linkid, struct dev_info *dev_info);
30 struct cflayer *cfutill_create(u8 linkid, struct dev_info *dev_info);
31 struct cflayer *cfvidl_create(u8 linkid, struct dev_info *dev_info);
32 struct cflayer *cfrfml_create(u8 linkid, struct dev_info *dev_info,
34 struct cflayer *cfdbgl_create(u8 linkid, struct dev_info *dev_info);
40 struct dev_info *dev_info,
/linux/drivers/staging/iio/addac/
H A Dadt7316.c216 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_enabled() local
217 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_enabled()
247 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_store_enabled() local
248 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_store_enabled()
271 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_select_ex_temp() local
272 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_select_ex_temp()
285 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_store_select_ex_temp() local
286 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_store_select_ex_temp()
315 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_mode() local
316 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_mode()
[all …]
/linux/drivers/platform/x86/x86-android-tablets/
H A Dcore.c204 static __init int x86_instantiate_i2c_client(const struct x86_dev_info *dev_info, in x86_instantiate_i2c_client() argument
207 const struct x86_i2c_client_info *client_info = &dev_info->i2c_client_info[idx]; in x86_instantiate_i2c_client()
215 if (dev_info->use_pci) in x86_instantiate_i2c_client()
234 static __init int x86_instantiate_spi_dev(const struct x86_dev_info *dev_info, int idx) in x86_instantiate_spi_dev() argument
236 const struct x86_spi_dev_info *spi_dev_info = &dev_info->spi_dev_info[idx]; in x86_instantiate_spi_dev()
288 static __init int x86_instantiate_serdev(const struct x86_dev_info *dev_info, int idx) in x86_instantiate_serdev() argument
290 const struct x86_serdev_info *info = &dev_info->serdev_info[idx]; in x86_instantiate_serdev()
296 if (dev_info->use_pci) in x86_instantiate_serdev()
399 const struct x86_dev_info *dev_info; in x86_android_tablet_probe() local
407 dev_info = id->driver_data; in x86_android_tablet_probe()
[all …]
/linux/drivers/mfd/
H A Dstw481x.c95 dev_info(&stw481x->client->dev, "voltages %s\n", in stw481x_startup()
97 dev_info(&stw481x->client->dev, "MMC level shifter %s\n", in stw481x_startup()
99 dev_info(&stw481x->client->dev, "VMMC: %s\n", in stw481x_startup()
102 dev_info(&stw481x->client->dev, "STw481x power control registers:\n"); in stw481x_startup()
120 dev_info(&stw481x->client->dev, "VCORE: %u.%uV %s\n", in stw481x_startup()
124 dev_info(&stw481x->client->dev, "VPLL: %u.%uV %s\n", in stw481x_startup()
128 dev_info(&stw481x->client->dev, "VAUX: %u.%uV %s\n", in stw481x_startup()
136 dev_info(&stw481x->client->dev, "TWARN: %s threshold, %s\n", in stw481x_startup()
140 dev_info(&stw481x->client->dev, "VMMC: %s\n", in stw481x_startup()
142 dev_info(&stw481x->client->dev, "IT WAKE UP: %s\n", in stw481x_startup()
[all …]
/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_rap.c76 dev_info(adev->dev, "RAP L0 validate test success.\n"); in amdgpu_rap_debugfs_write()
82 dev_info(adev->dev, "RAP test failed, the output is:\n"); in amdgpu_rap_debugfs_write()
83 dev_info(adev->dev, "\tlast_subsection: 0x%08x.\n", in amdgpu_rap_debugfs_write()
85 dev_info(adev->dev, "\tnum_total_validate: 0x%08x.\n", in amdgpu_rap_debugfs_write()
87 dev_info(adev->dev, "\tnum_valid: 0x%08x.\n", in amdgpu_rap_debugfs_write()
89 dev_info(adev->dev, "\tlast_validate_addr: 0x%08x.\n", in amdgpu_rap_debugfs_write()
91 dev_info(adev->dev, "\tlast_validate_val: 0x%08x.\n", in amdgpu_rap_debugfs_write()
93 dev_info(adev->dev, "\tlast_validate_val_exptd: 0x%08x.\n", in amdgpu_rap_debugfs_write()
98 dev_info(adev->dev, "Unsupported op id: %d, ", op); in amdgpu_rap_debugfs_write()
99 dev_info(adev->dev, "Only support op 2(L0 validate test).\n"); in amdgpu_rap_debugfs_write()
H A Damdgpu_kms.c941 struct drm_amdgpu_info_device *dev_info; in amdgpu_info_ioctl() local
945 dev_info = kzalloc_obj(*dev_info); in amdgpu_info_ioctl()
946 if (!dev_info) in amdgpu_info_ioctl()
949 dev_info->device_id = adev->pdev->device; in amdgpu_info_ioctl()
950 dev_info->chip_rev = adev->rev_id; in amdgpu_info_ioctl()
951 dev_info->external_rev = adev->external_rev_id; in amdgpu_info_ioctl()
952 dev_info->pci_rev = adev->pdev->revision; in amdgpu_info_ioctl()
953 dev_info->family = adev->family; in amdgpu_info_ioctl()
954 dev_info->num_shader_engines = adev->gfx.config.max_shader_engines; in amdgpu_info_ioctl()
955 dev_info->num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se; in amdgpu_info_ioctl()
[all …]
/linux/samples/rust/
H A Drust_driver_platform.rs116 dev_info!(dev, "Probed with info: '{}'.\n", info.0); in probe()
132 dev_info!(dev, "matched compatible string idx = {}\n", idx); in properties_parse()
137 dev_info!(dev, "'{name}'='{prop:?}'\n"); in properties_parse()
141 dev_info!(dev, "'{name}'='{prop}'\n"); in properties_parse()
144 dev_info!(dev, "'test,u32-prop' is present\n"); in properties_parse()
149 dev_info!(dev, "'{name}'='{prop:#x}' (default = 0x12)\n"); in properties_parse()
158 dev_info!(dev, "'{name}'='{prop:#x}'\n"); in properties_parse()
162 dev_info!(dev, "'{name}'='{prop:?}'\n"); in properties_parse()
164 dev_info!(dev, "'{name}' length is {len}\n"); in properties_parse()
168 dev_info!(dev, "'{name}'='{prop:?}' (KVec)\n"); in properties_parse()
[all …]
/linux/drivers/net/ethernet/amd/pds_core/
H A Ddev.c251 pdsc->dev_info.asic_type = ioread8(&pdsc->info_regs->asic_type); in pdsc_init_devinfo()
252 pdsc->dev_info.asic_rev = ioread8(&pdsc->info_regs->asic_rev); in pdsc_init_devinfo()
256 memcpy_fromio(pdsc->dev_info.fw_version, in pdsc_init_devinfo()
259 pdsc->dev_info.fw_version[PDS_CORE_DEVINFO_FWVERS_BUFLEN] = 0; in pdsc_init_devinfo()
261 memcpy_fromio(pdsc->dev_info.serial_num, in pdsc_init_devinfo()
264 pdsc->dev_info.serial_num[PDS_CORE_DEVINFO_SERIAL_BUFLEN] = 0; in pdsc_init_devinfo()
266 dev_dbg(pdsc->dev, "fw_version %s\n", pdsc->dev_info.fw_version); in pdsc_init_devinfo()
307 if (isprint(pdsc->dev_info.fw_version[0]) && in pdsc_identify()
308 isascii(pdsc->dev_info.fw_version[0])) in pdsc_identify()
309 dev_info(pdsc->dev, "FW: %.*s\n", in pdsc_identify()
[all …]
/linux/drivers/crypto/intel/qat/qat_common/
H A Dadf_ctl_drv.c215 dev_info(&GET_DEV(dev), in adf_ctl_is_device_in_use()
301 dev_info(&GET_DEV(accel_dev), in adf_ctl_ioctl_dev_start()
333 struct adf_dev_status_info dev_info; in adf_ctl_ioctl_get_status() local
336 if (copy_from_user(&dev_info, (void __user *)arg, in adf_ctl_ioctl_get_status()
342 accel_dev = adf_devmgr_get_dev_by_id(dev_info.accel_id); in adf_ctl_ioctl_get_status()
347 dev_info.state = adf_dev_started(accel_dev) ? DEV_UP : DEV_DOWN; in adf_ctl_ioctl_get_status()
348 dev_info.num_ae = hw_data->get_num_aes(hw_data); in adf_ctl_ioctl_get_status()
349 dev_info.num_accel = hw_data->get_num_accels(hw_data); in adf_ctl_ioctl_get_status()
350 dev_info.num_logical_accel = hw_data->num_logical_accel; in adf_ctl_ioctl_get_status()
351 dev_info.banks_per_accel = hw_data->num_banks in adf_ctl_ioctl_get_status()
[all …]
/linux/drivers/scsi/fnic/
H A Dfnic_res.c62 dev_info(&fnic->pdev->dev, "vNIC role not defined (def role: FC Init)\n"); in fnic_get_vnic_config()
144 dev_info(&fnic->pdev->dev, "fNIC MAC addr %p wq/wq_copy/rq %d/%d/%d\n", in fnic_get_vnic_config()
148 dev_info(&fnic->pdev->dev, "fNIC node wwn 0x%llx port wwn 0x%llx\n", in fnic_get_vnic_config()
150 dev_info(&fnic->pdev->dev, "fNIC ed_tov %d ra_tov %d\n", in fnic_get_vnic_config()
152 dev_info(&fnic->pdev->dev, "fNIC mtu %d intr timer %d\n", in fnic_get_vnic_config()
154 dev_info(&fnic->pdev->dev, "fNIC flags 0x%x luns per tgt %d\n", in fnic_get_vnic_config()
156 dev_info(&fnic->pdev->dev, "fNIC flogi_retries %d flogi timeout %d\n", in fnic_get_vnic_config()
158 dev_info(&fnic->pdev->dev, "fNIC plogi retries %d plogi timeout %d\n", in fnic_get_vnic_config()
160 dev_info(&fnic->pdev->dev, "fNIC io throttle count %d link dn timeout %d\n", in fnic_get_vnic_config()
162 dev_info(&fnic->pdev->dev, "fNIC port dn io retries %d port dn timeout %d\n", in fnic_get_vnic_config()
[all …]
/linux/sound/soc/sof/
H A Dfw-file-profile.c228 dev_info(dev, "Supported default profiles\n"); in sof_print_missing_firmware_info()
244 dev_info(dev, "- ipc type %d (%s):\n", i, marker); in sof_print_missing_firmware_info()
246 dev_info(dev, " Firmware file: %s/%s/%s\n", in sof_print_missing_firmware_info()
251 dev_info(dev, " Firmware file: %s/%s\n", in sof_print_missing_firmware_info()
255 dev_info(dev, " Topology file: %s/%s\n", in sof_print_missing_firmware_info()
262 dev_info(dev, "Verify the path/name override module parameters.\n"); in sof_print_missing_firmware_info()
264 dev_info(dev, "Check if you have 'sof-firmware' package installed.\n"); in sof_print_missing_firmware_info()
265 dev_info(dev, "Optionally it can be manually downloaded from:\n"); in sof_print_missing_firmware_info()
266 dev_info(dev, " https://github.com/thesofproject/sof-bin/\n"); in sof_print_missing_firmware_info()
277 dev_info(dev, in sof_print_profile_info()
[all …]
/linux/drivers/perf/hisilicon/
H A Dhisi_uncore_mn_pmu.c58 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_counter_flush()
76 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_read_counter()
84 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_write_counter()
91 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_write_evtype()
107 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_start_counters()
117 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_stop_counters()
130 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_enable_counter()
141 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_disable_counter()
152 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_enable_counter_int()
163 struct hisi_mn_pmu_regs *reg_info = mn_pmu->dev_info->private; in hisi_mn_pmu_disable_counter_int()
[all …]
/linux/drivers/acpi/x86/
H A Ds2idle.c143 struct lpi_device_constraint_amd dev_info = {}; in lpi_device_get_constraints_amd() local
154 dev_info.enabled = obj->integer.value; in lpi_device_get_constraints_amd()
157 dev_info.name = obj->string.pointer; in lpi_device_get_constraints_amd()
160 dev_info.function_states = obj->integer.value; in lpi_device_get_constraints_amd()
163 dev_info.min_dstate = obj->integer.value; in lpi_device_get_constraints_amd()
170 dev_info.name, in lpi_device_get_constraints_amd()
171 dev_info.enabled, in lpi_device_get_constraints_amd()
172 dev_info.function_states, in lpi_device_get_constraints_amd()
173 dev_info.min_dstate); in lpi_device_get_constraints_amd()
175 if (!dev_info.enabled || !dev_info.name || in lpi_device_get_constraints_amd()
[all …]
/linux/drivers/gpu/drm/ast/
H A Dast_drv.c221 dev_info(dev, "Using default configuration\n"); in ast_detect_chip()
224 dev_info(dev, "Using device-tree for configuration\n"); in ast_detect_chip()
227 dev_info(dev, "Using P2A bridge for configuration\n"); in ast_detect_chip()
237 dev_info(dev, "AST 2600 detected\n"); in ast_detect_chip()
242 dev_info(dev, "AST 2510 detected\n"); in ast_detect_chip()
246 dev_info(dev, "AST 2500 detected\n"); in ast_detect_chip()
253 dev_info(dev, "AST 1400 detected\n"); in ast_detect_chip()
257 dev_info(dev, "AST 2400 detected\n"); in ast_detect_chip()
264 dev_info(dev, "AST 1300 detected\n"); in ast_detect_chip()
268 dev_info(dev, "AST 2300 detected\n"); in ast_detect_chip()
[all …]
/linux/drivers/net/ethernet/marvell/octeon_ep/
H A Doctep_cn9k_pf.c44 dev_info(dev, "IQ-%d register dump\n", qno); in cn93_dump_regs()
45 dev_info(dev, "R[%d]_IN_INSTR_DBELL[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
48 dev_info(dev, "R[%d]_IN_CONTROL[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
51 dev_info(dev, "R[%d]_IN_ENABLE[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
54 dev_info(dev, "R[%d]_IN_INSTR_BADDR[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
57 dev_info(dev, "R[%d]_IN_INSTR_RSIZE[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
60 dev_info(dev, "R[%d]_IN_CNTS[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
63 dev_info(dev, "R[%d]_IN_INT_LEVELS[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
66 dev_info(dev, "R[%d]_IN_PKT_CNT[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
69 dev_info(dev, "R[%d]_IN_BYTE_CNT[0x%llx]: 0x%016llx\n", in cn93_dump_regs()
[all …]
H A Doctep_cnxk_pf.c65 dev_info(dev, "IQ-%d register dump\n", qno); in cnxk_dump_regs()
66 dev_info(dev, "R[%d]_IN_INSTR_DBELL[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
69 dev_info(dev, "R[%d]_IN_CONTROL[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
72 dev_info(dev, "R[%d]_IN_ENABLE[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
75 dev_info(dev, "R[%d]_IN_INSTR_BADDR[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
78 dev_info(dev, "R[%d]_IN_INSTR_RSIZE[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
81 dev_info(dev, "R[%d]_IN_CNTS[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
84 dev_info(dev, "R[%d]_IN_INT_LEVELS[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
87 dev_info(dev, "R[%d]_IN_PKT_CNT[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
90 dev_info(dev, "R[%d]_IN_BYTE_CNT[0x%llx]: 0x%016llx\n", in cnxk_dump_regs()
[all …]
/linux/net/caif/
H A Dcfsrvl.c46 if (phyid != service->dev_info.id) in cfservl_ctrlcmd()
54 if (phyid != service->dev_info.id) in cfservl_ctrlcmd()
123 info->dev_info = &service->dev_info; in cfservl_modemcmd()
144 info->dev_info = &service->dev_info; in cfservl_modemcmd()
162 struct dev_info *dev_info, in cfsrvl_init() argument
172 service->dev_info = *dev_info; in cfsrvl_init()
189 return servl->dev_info.id == phyid; in cfsrvl_phyid_match()
/linux/drivers/pci/controller/
H A Dpcie-hisi-error.c166 dev_info(device, "Fail to get root port %04x:%02x:%02x.%d device\n", in hisi_pcie_port_do_recovery()
206 dev_info(dev, "\nHISI : HIP : PCIe controller error\n"); in hisi_pcie_handle_error()
208 dev_info(dev, "Table version = %d\n", edata->version); in hisi_pcie_handle_error()
210 dev_info(dev, "Socket ID = %d\n", edata->socket_id); in hisi_pcie_handle_error()
212 dev_info(dev, "Nimbus ID = %d\n", edata->nimbus_id); in hisi_pcie_handle_error()
214 dev_info(dev, "Sub Module = %s\n", in hisi_pcie_handle_error()
219 dev_info(dev, "Core ID = core%d\n", edata->core_id); in hisi_pcie_handle_error()
221 dev_info(dev, "Port ID = port%d\n", edata->port_id); in hisi_pcie_handle_error()
223 dev_info(dev, "Error severity = %s\n", in hisi_pcie_handle_error()
228 dev_info(dev, "Error type = 0x%x\n", edata->err_type); in hisi_pcie_handle_error()
[all …]

12345678910>>...113