| /linux/drivers/power/supply/ |
| H A D | ds2781_battery.c | 53 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 D | ds2780_battery.c | 55 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 D | i40e_debugfs.c | 28 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 D | cpc925_edac.c | 278 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 D | ice_parser.c | 136 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 D | be_roce.c | 28 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/drivers/staging/iio/addac/ |
| H A D | adt7316.c | 216 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/mfd/ |
| H A D | stw481x.c | 95 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/samples/rust/ |
| H A D | rust_driver_platform.rs | 112 dev_info!(dev, "Probed with info: '{}'.\n", info.0); in probe() 130 dev_info!(dev, "matched compatible string idx = {}\n", idx); in properties_parse() 135 dev_info!(dev, "'{name}'='{prop:?}'\n"); in properties_parse() 139 dev_info!(dev, "'{name}'='{prop}'\n"); in properties_parse() 142 dev_info!(dev, "'test,u32-prop' is present\n"); in properties_parse() 147 dev_info!(dev, "'{name}'='{prop:#x}' (default = 0x12)\n"); in properties_parse() 156 dev_info!(dev, "'{name}'='{prop:#x}'\n"); in properties_parse() 160 dev_info!(dev, "'{name}'='{prop:?}'\n"); in properties_parse() 162 dev_info!(dev, "'{name}' length is {len}\n"); in properties_parse() 166 dev_info!(dev, "'{name}'='{prop:?}' (KVec)\n"); in properties_parse() [all …]
|
| /linux/drivers/scsi/fnic/ |
| H A D | fnic_res.c | 62 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/drivers/net/ethernet/amd/pds_core/ |
| H A D | dev.c | 251 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/perf/hisilicon/ |
| H A D | hisi_uncore_mn_pmu.c | 58 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 …]
|
| H A D | hisi_uncore_noc_pmu.c | 69 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_write_evtype() 95 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_read_counter() 103 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_write_counter() 111 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_enable_counter() 122 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_disable_counter() 143 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_start_counters() 153 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_stop_counters() 163 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_get_int_status() 170 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_clear_int_status() 181 struct hisi_noc_pmu_regs *reg_info = noc_pmu->dev_info->private; in hisi_noc_pmu_enable_filter() [all …]
|
| H A D | hisi_uncore_ddrc_pmu.c | 89 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_read_counter() 100 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_write_counter() 116 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_write_evtype() 143 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_get_event_idx() 153 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_start_counters() 163 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_stop_counters() 174 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_enable_counter() 185 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_disable_counter() 196 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_enable_counter_int() 207 struct hisi_ddrc_pmu_regs *regs = ddrc_pmu->dev_info->private; in hisi_ddrc_pmu_disable_counter_int() [all …]
|
| H A D | hisi_uncore_sllc_pmu.c | 95 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_enable_tracetag() 110 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_disable_tracetag() 125 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_config_tgtid() 144 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_clear_tgtid() 162 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_config_srcid() 182 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_clear_srcid() 217 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_read_counter() 225 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_write_counter() 233 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_write_evtype() 254 struct hisi_sllc_pmu_regs *regs = sllc_pmu->dev_info->private; in hisi_sllc_pmu_start_counters() [all …]
|
| /linux/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_benchmark.c | 69 dev_info(adev->dev, "amdgpu: %s %u bo moves of %u kB from" in amdgpu_benchmark_log_results() 113 dev_info(adev->dev, "Error while benchmarking BO move.\n"); in amdgpu_benchmark_move() 148 dev_info(adev->dev, in amdgpu_benchmark() 162 dev_info(adev->dev, in amdgpu_benchmark() 172 dev_info(adev->dev, in amdgpu_benchmark() 185 dev_info(adev->dev, in amdgpu_benchmark() 198 dev_info(adev->dev, in amdgpu_benchmark() 211 dev_info(adev->dev, in amdgpu_benchmark() 224 dev_info(adev->dev, in amdgpu_benchmark() 237 dev_info(adev->dev, in amdgpu_benchmark() [all …]
|
| H A D | amdgpu_kms.c | 899 struct drm_amdgpu_info_device *dev_info; in amdgpu_info_ioctl() local 903 dev_info = kzalloc(sizeof(*dev_info), GFP_KERNEL); in amdgpu_info_ioctl() 904 if (!dev_info) in amdgpu_info_ioctl() 907 dev_info->device_id = adev->pdev->device; in amdgpu_info_ioctl() 908 dev_info->chip_rev = adev->rev_id; in amdgpu_info_ioctl() 909 dev_info->external_rev = adev->external_rev_id; in amdgpu_info_ioctl() 910 dev_info->pci_rev = adev->pdev->revision; in amdgpu_info_ioctl() 911 dev_info->family = adev->family; in amdgpu_info_ioctl() 912 dev_info->num_shader_engines = adev->gfx.config.max_shader_engines; in amdgpu_info_ioctl() 913 dev_info->num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se; in amdgpu_info_ioctl() [all …]
|
| /linux/drivers/net/ethernet/marvell/octeon_ep/ |
| H A D | octep_cnxk_pf.c | 64 dev_info(dev, "IQ-%d register dump\n", qno); in cnxk_dump_regs() 65 dev_info(dev, "R[%d]_IN_INSTR_DBELL[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 68 dev_info(dev, "R[%d]_IN_CONTROL[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 71 dev_info(dev, "R[%d]_IN_ENABLE[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 74 dev_info(dev, "R[%d]_IN_INSTR_BADDR[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 77 dev_info(dev, "R[%d]_IN_INSTR_RSIZE[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 80 dev_info(dev, "R[%d]_IN_CNTS[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 83 dev_info(dev, "R[%d]_IN_INT_LEVELS[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 86 dev_info(dev, "R[%d]_IN_PKT_CNT[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() 89 dev_info(dev, "R[%d]_IN_BYTE_CNT[0x%llx]: 0x%016llx\n", in cnxk_dump_regs() [all …]
|
| H A D | octep_cn9k_pf.c | 44 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 …]
|
| /linux/sound/soc/sof/ |
| H A D | fw-file-profile.c | 228 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"); 265 dev_info(dev, "Optionally it can be manually downloaded from:\n"); in sof_print_profile_info() 266 dev_info(dev, " https://github.com/thesofproject/sof-bin/\n"); in sof_print_profile_info() 277 dev_info(de in sof_print_profile_info() [all...] |
| /linux/drivers/net/ethernet/dec/tulip/ |
| H A D | 21142.c | 43 dev_info(&dev->dev, "21143 negotiation status %08x, %s\n", in t21142_media_task() 56 dev_info(&dev->dev, in t21142_media_task() 64 dev_info(&dev->dev, in t21142_media_task() 73 dev_info(&dev->dev, in t21142_media_task() 93 dev_info(&dev->dev, "Testing new 21143 media %s\n", in t21142_media_task() 150 dev_info(&dev->dev, in t21142_lnk_change() 175 dev_info(&dev->dev, in t21142_lnk_change() 181 dev_info(&dev->dev, in t21142_lnk_change() 225 dev_info(&dev->dev, "21143 %s link beat %s\n", in t21142_lnk_change() 237 dev_info(&dev->dev, "21143 10baseT link beat good\n"); in t21142_lnk_change() [all …]
|
| /linux/drivers/net/ethernet/marvell/octeon_ep_vf/ |
| H A D | octep_vf_cn9k.c | 21 dev_info(dev, "IQ-%d register dump\n", qno); in cn93_vf_dump_q_regs() 22 dev_info(dev, "R[%d]_IN_INSTR_DBELL[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 25 dev_info(dev, "R[%d]_IN_CONTROL[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 28 dev_info(dev, "R[%d]_IN_ENABLE[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 31 dev_info(dev, "R[%d]_IN_INSTR_BADDR[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 34 dev_info(dev, "R[%d]_IN_INSTR_RSIZE[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 37 dev_info(dev, "R[%d]_IN_CNTS[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 40 dev_info(dev, "R[%d]_IN_INT_LEVELS[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 43 dev_info(dev, "R[%d]_IN_PKT_CNT[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() 46 dev_info(dev, "R[%d]_IN_BYTE_CNT[0x%llx]: 0x%016llx\n", in cn93_vf_dump_q_regs() [all …]
|
| H A D | octep_vf_cnxk.c | 21 dev_info(dev, "IQ-%d register dump\n", qno); in cnxk_vf_dump_q_regs() 22 dev_info(dev, "R[%d]_IN_INSTR_DBELL[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 25 dev_info(dev, "R[%d]_IN_CONTROL[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 28 dev_info(dev, "R[%d]_IN_ENABLE[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 31 dev_info(dev, "R[%d]_IN_INSTR_BADDR[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 34 dev_info(dev, "R[%d]_IN_INSTR_RSIZE[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 37 dev_info(dev, "R[%d]_IN_CNTS[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 40 dev_info(dev, "R[%d]_IN_INT_LEVELS[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 43 dev_info(dev, "R[%d]_IN_PKT_CNT[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() 46 dev_info(dev, "R[%d]_IN_BYTE_CNT[0x%llx]: 0x%016llx\n", in cnxk_vf_dump_q_regs() [all …]
|
| /linux/sound/soc/codecs/ |
| H A D | es83xx-dsm-common.c | 57 dev_info(dev, "PLATFORM_MAINMIC_TYPE %#x\n", value); in es83xx_dsm_dump() 62 dev_info(dev, "PLATFORM_HPMIC_TYPE %#x\n", value); in es83xx_dsm_dump() 67 dev_info(dev, "PLATFORM_SPK_TYPE %#x\n", value); in es83xx_dsm_dump() 72 dev_info(dev, "PLATFORM_HPDET_INV %#x\n", value); in es83xx_dsm_dump() 77 dev_info(dev, "PLATFORM_PCM_TYPE %#x\n", value); in es83xx_dsm_dump() 82 dev_info(dev, "PLATFORM_MIC_DE_POP %#x\n", value); in es83xx_dsm_dump()
|
| /linux/drivers/ufs/core/ |
| H A D | ufs-rpmb.c | 144 if (!hba->ufs_rpmb_wlun || hba->dev_info.b_advanced_rpmb_en) { in ufs_rpmb_probe() 145 dev_info(hba->dev, "Skip OP-TEE RPMB registration\n"); in ufs_rpmb_probe() 150 if (!hba->dev_info.device_id) { in ufs_rpmb_probe() 160 .reliable_wr_count = hba->dev_info.rpmb_io_size, in ufs_rpmb_probe() 163 for (region = 0; region < ARRAY_SIZE(hba->dev_info.rpmb_region_size); region++) { in ufs_rpmb_probe() 164 cap = hba->dev_info.rpmb_region_size[region]; in ufs_rpmb_probe() 191 cid = kasprintf(GFP_KERNEL, "%s-R%d", hba->dev_info.device_id, region); in ufs_rpmb_probe() 219 dev_info(hba->dev, "UFS RPMB region %d registered (capacity=%u)\n", region, cap); in ufs_rpmb_probe() 243 dev_info(hba->dev, "Removing UFS RPMB region %d\n", ufs_rpmb->region_id); in ufs_rpmb_remove() 250 dev_info(hba->dev, "All UFS RPMB devices unregistered\n"); in ufs_rpmb_remove()
|