Home
last modified time | relevance | path

Searched refs:hd (Results 1 – 65 of 65) sorted by relevance

/linux-4.1.27/arch/sh/drivers/
Dheartbeat.c35 static inline void heartbeat_toggle_bit(struct heartbeat_data *hd, in heartbeat_toggle_bit() argument
40 new = (1 << hd->bit_pos[bit]); in heartbeat_toggle_bit()
44 new &= hd->mask; in heartbeat_toggle_bit()
46 switch (hd->regsize) { in heartbeat_toggle_bit()
48 new |= ioread32(hd->base) & ~hd->mask; in heartbeat_toggle_bit()
49 iowrite32(new, hd->base); in heartbeat_toggle_bit()
52 new |= ioread16(hd->base) & ~hd->mask; in heartbeat_toggle_bit()
53 iowrite16(new, hd->base); in heartbeat_toggle_bit()
56 new |= ioread8(hd->base) & ~hd->mask; in heartbeat_toggle_bit()
57 iowrite8(new, hd->base); in heartbeat_toggle_bit()
[all …]
/linux-4.1.27/drivers/message/fusion/
Dmptspi.c108 mptspi_setTargetNegoParms(MPT_SCSI_HOST *hd, VirtTarget *target, in mptspi_setTargetNegoParms() argument
111 MPT_ADAPTER *ioc = hd->ioc; in mptspi_setTargetNegoParms()
254 mptspi_writeIOCPage4(MPT_SCSI_HOST *hd, u8 channel , u8 id) in mptspi_writeIOCPage4() argument
256 MPT_ADAPTER *ioc = hd->ioc; in mptspi_writeIOCPage4()
333 mptspi_initTarget(MPT_SCSI_HOST *hd, VirtTarget *vtarget, in mptspi_initTarget() argument
348 if ((sdev->type == TYPE_PROCESSOR) && (hd->ioc->spi_data.Saf_Te)) { in mptspi_initTarget()
352 mptspi_writeIOCPage4(hd, vtarget->channel, vtarget->id); in mptspi_initTarget()
363 mptspi_writeIOCPage4(hd, vtarget->channel, vtarget->id); in mptspi_initTarget()
367 mptspi_setTargetNegoParms(hd, vtarget, sdev); in mptspi_initTarget()
381 mptspi_is_raid(struct _MPT_SCSI_HOST *hd, u32 id) in mptspi_is_raid() argument
[all …]
Dmptscsih.c95 static void mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SC…
97 int mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel, u8 id,
108 static int mptscsih_do_cmd(MPT_SCSI_HOST *hd, INTERNAL_CMD *iocmd);
109 static void mptscsih_synchronize_cache(MPT_SCSI_HOST *hd, VirtDevice *vdevice);
591 MPT_SCSI_HOST *hd; in mptscsih_io_done() local
598 hd = shost_priv(ioc->sh); in mptscsih_io_done()
688 mptscsih_copy_sense_data(sc, hd, mf, pScsiReply); in mptscsih_io_done()
726 if (hd->sel_timeout[pScsiReq->TargetID] < 0xFFFF) in mptscsih_io_done()
727 hd->sel_timeout[pScsiReq->TargetID]++; in mptscsih_io_done()
1030 mptscsih_flush_running_cmds(MPT_SCSI_HOST *hd) in mptscsih_flush_running_cmds() argument
[all …]
Dmptscsih.h117 extern int mptscsih_IssueTaskMgmt(MPT_SCSI_HOST *hd, u8 type, u8 channel,
137 extern void mptscsih_flush_running_cmds(MPT_SCSI_HOST *hd);
Dmptfc.c191 MPT_SCSI_HOST *hd; in mptfc_block_error_handler() local
200 hd = shost_priv(SCpnt->device->host); in mptfc_block_error_handler()
201 ioc = hd->ioc; in mptfc_block_error_handler()
607 MPT_SCSI_HOST *hd; in mptfc_slave_alloc() local
620 hd = shost_priv(sdev->host); in mptfc_slave_alloc()
621 ioc = hd->ioc; in mptfc_slave_alloc()
1180 MPT_SCSI_HOST *hd; in mptfc_probe() local
1296 hd = shost_priv(sh); in mptfc_probe()
1297 hd->ioc = ioc; in mptfc_probe()
1312 hd->last_queue_full = 0; in mptfc_probe()
[all …]
Dmptsas.c338 MPT_SCSI_HOST *hd = shost_priv(ioc->sh); in mptsas_cleanup_fw_event_q() local
341 if (!list_empty(&hd->target_reset_list)) { in mptsas_cleanup_fw_event_q()
343 &hd->target_reset_list, list) { in mptsas_cleanup_fw_event_q()
1113 MPT_SCSI_HOST *hd = shost_priv(ioc->sh); in mptsas_target_reset_queue() local
1138 list_add_tail(&target_reset_list->list, &hd->target_reset_list); in mptsas_target_reset_queue()
1160 MPT_SCSI_HOST *hd = shost_priv(ioc->sh); in mptsas_schedule_target_reset() local
1161 struct list_head *head = &hd->target_reset_list; in mptsas_schedule_target_reset()
1168 head = &hd->target_reset_list; in mptsas_schedule_target_reset()
1196 MPT_SCSI_HOST *hd = shost_priv(ioc->sh); in mptsas_taskmgmt_complete() local
1197 struct list_head *head = &hd->target_reset_list; in mptsas_taskmgmt_complete()
[all …]
Dmptctl.c2552 MPT_SCSI_HOST *hd = shost_priv(ioc->sh); in mptctl_hp_hostinfo() local
2554 if (hd && (cim_rev == 1)) { in mptctl_hp_hostinfo()
2666 MPT_SCSI_HOST *hd = NULL; in mptctl_hp_targetinfo() local
2782 hd = shost_priv(ioc->sh); in mptctl_hp_targetinfo()
2783 if (hd != NULL) in mptctl_hp_targetinfo()
2784 karg.select_timeouts = hd->sel_timeout[karg.hdr.id]; in mptctl_hp_targetinfo()
Dmptbase.h598 typedef void (*MPT_FLUSH_RUNNING_CMDS)(MPT_SCSI_HOST *hd);
Dmptbase.c368 MPT_SCSI_HOST *hd; in mpt_fault_reset_work() local
387 hd = shost_priv(ioc->sh); in mpt_fault_reset_work()
388 ioc->schedule_dead_ioc_flush_running_cmds(hd); in mpt_fault_reset_work()
/linux-4.1.27/fs/dlm/
Dutil.c25 static void header_out(struct dlm_header *hd) in header_out() argument
27 hd->h_version = cpu_to_le32(hd->h_version); in header_out()
28 hd->h_lockspace = cpu_to_le32(hd->h_lockspace); in header_out()
29 hd->h_nodeid = cpu_to_le32(hd->h_nodeid); in header_out()
30 hd->h_length = cpu_to_le16(hd->h_length); in header_out()
33 static void header_in(struct dlm_header *hd) in header_in() argument
35 hd->h_version = le32_to_cpu(hd->h_version); in header_in()
36 hd->h_lockspace = le32_to_cpu(hd->h_lockspace); in header_in()
37 hd->h_nodeid = le32_to_cpu(hd->h_nodeid); in header_in()
38 hd->h_length = le16_to_cpu(hd->h_length); in header_in()
Dlock.c5020 struct dlm_header *hd = &p->header; in dlm_receive_buffer() local
5024 switch (hd->h_cmd) { in dlm_receive_buffer()
5034 log_print("invalid h_cmd %d from %u", hd->h_cmd, nodeid); in dlm_receive_buffer()
5038 if (hd->h_nodeid != nodeid) { in dlm_receive_buffer()
5040 hd->h_nodeid, nodeid, hd->h_lockspace); in dlm_receive_buffer()
5044 ls = dlm_find_lockspace_global(hd->h_lockspace); in dlm_receive_buffer()
5049 hd->h_lockspace, nodeid, hd->h_cmd, type); in dlm_receive_buffer()
5052 if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS) in dlm_receive_buffer()
5061 if (hd->h_cmd == DLM_MSG) in dlm_receive_buffer()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Dhdmi4.c546 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_startup() local
549 mutex_lock(&hd->lock); in hdmi_audio_startup()
551 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) { in hdmi_audio_startup()
556 hd->audio_abort_cb = abort_cb; in hdmi_audio_startup()
559 mutex_unlock(&hd->lock); in hdmi_audio_startup()
566 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_shutdown() local
568 mutex_lock(&hd->lock); in hdmi_audio_shutdown()
569 hd->audio_abort_cb = NULL; in hdmi_audio_shutdown()
570 mutex_unlock(&hd->lock); in hdmi_audio_shutdown()
577 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_start() local
[all …]
Dhdmi5.c574 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_startup() local
577 mutex_lock(&hd->lock); in hdmi_audio_startup()
579 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) { in hdmi_audio_startup()
584 hd->audio_abort_cb = abort_cb; in hdmi_audio_startup()
587 mutex_unlock(&hd->lock); in hdmi_audio_startup()
594 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_shutdown() local
596 mutex_lock(&hd->lock); in hdmi_audio_shutdown()
597 hd->audio_abort_cb = NULL; in hdmi_audio_shutdown()
598 mutex_unlock(&hd->lock); in hdmi_audio_shutdown()
605 struct omap_hdmi *hd = dev_get_drvdata(dev); in hdmi_audio_start() local
[all …]
/linux-4.1.27/drivers/scsi/
Deata_pio.c115 hostdata *hd = SD(sh); in eata_pio_release() local
125 if (hd->pdev) in eata_pio_release()
126 pci_dev_put(hd->pdev); in eata_pio_release()
162 hostdata *hd; in eata_pio_int_handler() local
181 hd = SD(sh); in eata_pio_int_handler()
183 cp = &hd->ccb[0]; in eata_pio_int_handler()
246 while ((stat & HA_SDRQ) || ((stat & HA_SMORE) && hd->moresupport)); in eata_pio_int_handler()
259 hd->devflags |= (1 << cp->cp_id); in eata_pio_int_handler()
260 } else if (hd->devflags & (1 << cp->cp_id)) in eata_pio_int_handler()
308 hostdata *hd; in eata_pio_queue_lck() local
[all …]
Dwd33c93.c1924 static inline void set_resync ( struct WD33C93_hostdata *hd, int mask ) in set_resync() argument
1929 hd->sync_stat[i] = SS_UNSET; in set_resync()
2062 struct WD33C93_hostdata *hd; in wd33c93_write_info() local
2065 hd = (struct WD33C93_hostdata *) instance->hostdata; in wd33c93_write_info()
2086 hd->args = simple_strtoul(bp+6, &bp, 0) & DB_MASK; in wd33c93_write_info()
2091 hd->disconnect = x; in wd33c93_write_info()
2094 hd->default_sx_per = in wd33c93_write_info()
2095 hd->sx_table[round_period((unsigned int) x, in wd33c93_write_info()
2096 hd->sx_table)].period_ns; in wd33c93_write_info()
2098 set_resync(hd, (int)simple_strtoul(bp+7, &bp, 0)); in wd33c93_write_info()
[all …]
Din2000.c2175 struct IN2000_hostdata *hd; in in2000_write_info() local
2178 hd = (struct IN2000_hostdata *) instance->hostdata; in in2000_write_info()
2184 hd->args = simple_strtoul(bp, NULL, 0) & DB_MASK; in in2000_write_info()
2190 hd->disconnect = x; in in2000_write_info()
2194 hd->default_sx_per = sx_table[round_period((unsigned int) x)].period_ns; in in2000_write_info()
2200 hd->sync_stat[i] = SS_UNSET; in in2000_write_info()
2203 hd->proc = simple_strtoul(bp, NULL, 0); in in2000_write_info()
2206 hd->level2 = simple_strtoul(bp, NULL, 0); in in2000_write_info()
2217 struct IN2000_hostdata *hd; in in2000_show_info() local
2221 hd = (struct IN2000_hostdata *) instance->hostdata; in in2000_show_info()
[all …]
Dsgiwd93.c66 void fill_hpc_entries(struct ip22_hostdata *hd, struct scsi_cmnd *cmd, int din) in fill_hpc_entries() argument
74 physaddr = dma_map_single(hd->dev, addr, len, DMA_DIR(din)); in fill_hpc_entries()
76 hcp = hd->cpu; in fill_hpc_entries()
98 dma_cache_sync(hd->dev, hd->cpu, in fill_hpc_entries()
99 (unsigned long)(hcp + 1) - (unsigned long)hd->cpu, in fill_hpc_entries()
Daha152x.c1312 struct aha152x_hostdata *hd; in run() local
1314 list_for_each_entry(hd, &aha152x_host_list, host_list) { in run()
1315 struct Scsi_Host *shost = container_of((void *)hd, struct Scsi_Host, hostdata); in run()
3352 struct aha152x_hostdata *hd, *tmp; in aha152x_exit() local
3354 list_for_each_entry_safe(hd, tmp, &aha152x_host_list, host_list) { in aha152x_exit()
3355 struct Scsi_Host *shost = container_of((void *)hd, struct Scsi_Host, hostdata); in aha152x_exit()
Dgdth.h993 } __attribute__((packed)) hd; member
Dgdth.c2375 mpd.hd.data_length = sizeof(gdth_modep_data); in gdth_internal_cache_cmd()
2376 mpd.hd.dev_par = (ha->hdr[t].devtype&2) ? 0x80:0; in gdth_internal_cache_cmd()
2377 mpd.hd.bd_length = sizeof(mpd.bd); in gdth_internal_cache_cmd()
/linux-4.1.27/block/partitions/
Dcheck.c114 static struct parsed_partitions *allocate_partitions(struct gendisk *hd) in allocate_partitions() argument
123 nr = disk_max_parts(hd); in allocate_partitions()
142 check_partition(struct gendisk *hd, struct block_device *bdev) in check_partition() argument
147 state = allocate_partitions(hd); in check_partition()
158 disk_name(hd, 0, state->name); in check_partition()
/linux-4.1.27/arch/x86/kernel/
Dhpet.c180 static void hpet_reserve_msi_timers(struct hpet_data *hd);
187 struct hpet_data hd; in hpet_reserve_platform_timers() local
191 memset(&hd, 0, sizeof(hd)); in hpet_reserve_platform_timers()
192 hd.hd_phys_address = hpet_address; in hpet_reserve_platform_timers()
193 hd.hd_address = hpet; in hpet_reserve_platform_timers()
194 hd.hd_nirqs = nrtimers; in hpet_reserve_platform_timers()
195 hpet_reserve_timer(&hd, 0); in hpet_reserve_platform_timers()
198 hpet_reserve_timer(&hd, 1); in hpet_reserve_platform_timers()
206 hd.hd_irq[0] = HPET_LEGACY_8254; in hpet_reserve_platform_timers()
207 hd.hd_irq[1] = HPET_LEGACY_RTC; in hpet_reserve_platform_timers()
[all …]
/linux-4.1.27/include/linux/
Dhpet.h102 static inline void hpet_reserve_timer(struct hpet_data *hd, int timer) in hpet_reserve_timer() argument
104 hd->hd_state |= (1 << timer); in hpet_reserve_timer()
Dgenhd.h604 extern char *disk_name (struct gendisk *hd, int partno, char *buf);
/linux-4.1.27/block/
Dgenhd.c1151 struct hd_struct *hd; in diskstats_show() local
1164 while ((hd = disk_part_iter_next(&piter))) { in diskstats_show()
1166 part_round_stats(cpu, hd); in diskstats_show()
1170 MAJOR(part_devt(hd)), MINOR(part_devt(hd)), in diskstats_show()
1171 disk_name(gp, hd->partno, buf), in diskstats_show()
1172 part_stat_read(hd, ios[READ]), in diskstats_show()
1173 part_stat_read(hd, merges[READ]), in diskstats_show()
1174 part_stat_read(hd, sectors[READ]), in diskstats_show()
1175 jiffies_to_msecs(part_stat_read(hd, ticks[READ])), in diskstats_show()
1176 part_stat_read(hd, ios[WRITE]), in diskstats_show()
[all …]
Dpartition-generic.c34 char *disk_name(struct gendisk *hd, int partno, char *buf) in disk_name() argument
37 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name); in disk_name()
38 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1])) in disk_name()
39 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno); in disk_name()
41 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno); in disk_name()
/linux-4.1.27/drivers/gpu/drm/radeon/
Dradeon_uvd.c803 unsigned *sd, unsigned *hd) in radeon_uvd_count_handles() argument
808 *hd = 0; in radeon_uvd_count_handles()
815 ++(*hd); in radeon_uvd_count_handles()
829 &rdev->pm.dpm.hd); in radeon_uvd_idle_work_handler()
848 unsigned hd = 0, sd = 0; in radeon_uvd_note_usage() local
849 radeon_uvd_count_handles(rdev, &sd, &hd); in radeon_uvd_note_usage()
851 (rdev->pm.dpm.hd != hd)) { in radeon_uvd_note_usage()
853 rdev->pm.dpm.hd = hd; in radeon_uvd_note_usage()
Dradeon_pm.c1132 enable |= rdev->pm.dpm.hd > 0; in radeon_dpm_enable_uvd()
1142 if ((rdev->pm.dpm.sd == 1) && (rdev->pm.dpm.hd == 0)) in radeon_dpm_enable_uvd()
1144 else if ((rdev->pm.dpm.sd == 2) && (rdev->pm.dpm.hd == 0)) in radeon_dpm_enable_uvd()
1146 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 1)) in radeon_dpm_enable_uvd()
1148 else if ((rdev->pm.dpm.sd == 0) && (rdev->pm.dpm.hd == 2)) in radeon_dpm_enable_uvd()
Dradeon.h1594 unsigned hd; member
/linux-4.1.27/Documentation/devicetree/bindings/clock/st/
Dst,clkgen-mux.txt13 "st,stih416-clkgenc-vcc-hd", "st,clkgen-mux"
16 "st,stih416-clkgenf-vcc-hd", "st,clkgen-mux"
Dst,clkgen-vcc.txt48 "clk-s-pix-hd",
/linux-4.1.27/drivers/media/platform/ti-vpe/
Dcsc.c31 u16 hd[12]; member
156 coeff = sd_hd_coeffs->hd; in csc_set_coeff()
/linux-4.1.27/drivers/video/fbdev/matrox/
Dmatroxfb_misc.c191 unsigned int hd, hs, he, hbe, ht; in matroxfb_vgaHWinit() local
239 hd = m->HDisplay >> 3; in matroxfb_vgaHWinit()
248 hd >>= 1; in matroxfb_vgaHWinit()
257 hd <<= 1; in matroxfb_vgaHWinit()
263 hd = hd - 1; in matroxfb_vgaHWinit()
289 ((hd & 0x100) >> 7) | /* blanking */ in matroxfb_vgaHWinit()
304 hw->CRTC[1] = hd; in matroxfb_vgaHWinit()
305 hw->CRTC[2] = hd; in matroxfb_vgaHWinit()
/linux-4.1.27/drivers/scsi/aacraid/
Daachba.c121 } __attribute__((packed)) hd; member
139 } __attribute__((packed)) hd; member
2595 mpd.hd.data_length = sizeof(mpd.hd) - 1; in aac_scsi_cmd()
2597 mpd.hd.med_type = 0; in aac_scsi_cmd()
2601 mpd.hd.dev_par = 0; in aac_scsi_cmd()
2604 mpd.hd.dev_par = 0x10; in aac_scsi_cmd()
2606 mpd.hd.bd_length = 0; /* Block descriptor length */ in aac_scsi_cmd()
2608 mpd.hd.bd_length = sizeof(mpd.bd); in aac_scsi_cmd()
2609 mpd.hd.data_length += mpd.hd.bd_length; in aac_scsi_cmd()
2622 mpd.hd.data_length = 23; in aac_scsi_cmd()
[all …]
/linux-4.1.27/drivers/gpu/drm/i2c/
Dch7006_mode.c105 #define __MODE(f, hd, vd, ht, vt, hsynp, vsynp, \ argument
108 .name = #hd "x" #vd, \
112 .hdisplay = hd, \
135 #define MODE(f, hd, vd, ht, vt, hsynp, vsynp, \ argument
137 __MODE(f, hd, vd, ht, vt, hsynp, vsynp, subc, scale, \
138 scale_mask, norm_mask, hd, vd)
/linux-4.1.27/tools/perf/util/
Dsort.c1412 static int __hpp_dimension__add(struct hpp_dimension *hd) in __hpp_dimension__add() argument
1414 if (!hd->taken) { in __hpp_dimension__add()
1415 hd->taken = 1; in __hpp_dimension__add()
1417 perf_hpp__register_sort_field(hd->fmt); in __hpp_dimension__add()
1434 static int __hpp_dimension__add_output(struct hpp_dimension *hd) in __hpp_dimension__add_output() argument
1436 if (!hd->taken) { in __hpp_dimension__add_output()
1437 hd->taken = 1; in __hpp_dimension__add_output()
1439 perf_hpp__column_register(hd->fmt); in __hpp_dimension__add_output()
1483 struct hpp_dimension *hd = &hpp_sort_dimensions[i]; in sort_dimension__add() local
1485 if (strncasecmp(tok, hd->name, strlen(tok))) in sort_dimension__add()
[all …]
Dheader.c1875 struct header_print_data *hd = data; in perf_file_section__fprintf_info() local
1889 if (!feat_ops[feat].full_only || hd->full) in perf_file_section__fprintf_info()
1890 feat_ops[feat].print(ph, fd, hd->fp); in perf_file_section__fprintf_info()
1892 fprintf(hd->fp, "# %s info available, use -I to display\n", in perf_file_section__fprintf_info()
1900 struct header_print_data hd; in perf_header__fprintf_info() local
1903 hd.fp = fp; in perf_header__fprintf_info()
1904 hd.full = full; in perf_header__fprintf_info()
1906 perf_header__process_sections(header, fd, &hd, in perf_header__fprintf_info()
/linux-4.1.27/include/drm/
Ddrm_modes.h83 #define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \ argument
85 .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \
/linux-4.1.27/drivers/infiniband/hw/ipath/
Dipath_intr.c542 unsigned long tl, hd, status, lengen; in handle_sdma_errors() local
544 hd = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmahead); in handle_sdma_errors()
550 "lengen 0x%lx\n", tl, hd, status, lengen); in handle_sdma_errors()
588 u32 hd, tl; in handle_hdrq_full() local
618 hd = ipath_read_ureg32(dd, ur_rcvhdrhead, i); in handle_hdrq_full()
619 if (hd == (tl + 1) || (!hd && tl == dd->ipath_hdrqlast)) { in handle_hdrq_full()
/linux-4.1.27/drivers/media/rc/keymaps/
DMakefile7 rc-ati-tv-wonder-hd-600.o \
71 rc-pinnacle-pctv-hd.o \
/linux-4.1.27/drivers/block/
DMakefile36 obj-$(CONFIG_BLK_DEV_HD) += hd.o
/linux-4.1.27/drivers/video/fbdev/
Dasiliantfb.c176 unsigned hd = p->var.xres / 8; in asiliant_set_timing() local
194 write_cr(0x01, hd - 1); in asiliant_set_timing()
195 write_cr(0x02, hd); in asiliant_set_timing()
Dtdfxfb.c568 u32 hd, hs, he, ht, hbs, hbe; in tdfxfb_set_par() local
598 hd = wd; in tdfxfb_set_par()
602 hbs = hd; in tdfxfb_set_par()
661 reg.crt[0x01] = hd; in tdfxfb_set_par()
686 ((hd & 0x100) >> 6) | in tdfxfb_set_par()
/linux-4.1.27/arch/arm/boot/dts/
Dstih416-clock.dtsi574 clk_s_vcc_hd: clk-s-vcc-hd@fe8308b8 {
576 compatible = "st,stih416-clkgenc-vcc-hd", "st,clkgen-mux";
605 "clk-s-pix-hd",
676 clk_m_f_vcc_hd: clk-m-f-vcc-hd@fd32086c {
678 compatible = "st,stih416-clkgenf-vcc-hd", "st,clkgen-mux";
/linux-4.1.27/arch/arm/mach-davinci/
Dboard-dm646x-evm.c428 static int set_vpif_clock(int mux_mode, int hd) in set_vpif_clock() argument
462 if (hd >= 1) in set_vpif_clock()
/linux-4.1.27/include/linux/mfd/
Dsi476x-core.h363 bool hd; member
/linux-4.1.27/Documentation/ide/
Dide-tape.txt40 Here are some words from the first releases of hd.c, which are quoted
Dide.txt54 This is the multiple IDE interface driver, as evolved from hd.c.
97 with hd.c but not with ide.c), then an command line option may be specified
DChangeLog.ide-tape.1995-2002230 * to /proc/ide/hd?/settings.
255 * Set the minimum /proc/ide/hd?/settings values for "pipeline",
/linux-4.1.27/drivers/mtd/
Dmtdswap.c1114 union swap_header *hd = (union swap_header *)(buf); in mtdswap_auto_header() local
1118 hd->info.version = 1; in mtdswap_auto_header()
1119 hd->info.last_page = d->mbd_dev->size - 1; in mtdswap_auto_header()
1120 hd->info.nr_badpages = 0; in mtdswap_auto_header()
/linux-4.1.27/drivers/mfd/
Dsi476x-cmd.c1151 (tuneargs->hd << 6), in si476x_core_cmd_am_tune_freq_a10()
1352 (tuneargs->hd << 6) | (tuneargs->tunemode << 4) in si476x_core_cmd_fm_tune_freq_a10()
1370 (tuneargs->hd << 6) | (tuneargs->tunemode << 4) in si476x_core_cmd_fm_tune_freq_a20()
/linux-4.1.27/drivers/media/radio/
Dradio-si476x.c537 .hd = false, in si476x_radio_pretune()
739 args.hd = false; in si476x_radio_s_frequency()
/linux-4.1.27/arch/ia64/include/asm/
Dpal.h412 hd : 1, /* Non-essential hw member
702 #define pmci_proc_hardware_damage pme_processor.hd
/linux-4.1.27/kernel/trace/
Dring_buffer.c906 struct list_head *hd; in rb_head_page_deactivate() local
911 list_for_each(hd, cpu_buffer->pages) in rb_head_page_deactivate()
912 rb_list_head_clear(hd); in rb_head_page_deactivate()
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt249 3.2) hd=
252 Syntax: hd=<cylinders>,<heads>,<sectors>
254 This option sets the disk geometry of an IDE disk. The first hd=
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio.txt556 The hd-audio driver reads the file via request_firmware(). Thus,
601 The hd-audio driver gives a few basic tracepoints.
/linux-4.1.27/drivers/infiniband/hw/qib/
Dqib_iba6120.c2086 static void qib_update_6120_usrhead(struct qib_ctxtdata *rcd, u64 hd, in qib_update_6120_usrhead() argument
2092 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); in qib_update_6120_usrhead()
Dqib_iba7322.c4481 static void qib_update_7322_usrhead(struct qib_ctxtdata *rcd, u64 hd, in qib_update_7322_usrhead() argument
4488 if (hd >> IBA7322_HDRHEAD_PKTINT_SHIFT) in qib_update_7322_usrhead()
4493 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); in qib_update_7322_usrhead()
4494 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); in qib_update_7322_usrhead()
Dqib_iba7220.c2732 static void qib_update_7220_usrhead(struct qib_ctxtdata *rcd, u64 hd, in qib_update_7220_usrhead() argument
2738 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); in qib_update_7220_usrhead()
/linux-4.1.27/Documentation/usb/
Dgadget-testing.txt196 $ hd my_report_desc
/linux-4.1.27/Documentation/
Ddevices.txt205 0 = /dev/hd? Whole disk
206 1 = /dev/hd?1 First partition
207 2 = /dev/hd?2 Second partition
209 63 = /dev/hd?63 63rd partition
Dkernel-parameters.txt1233 hd= [EIDE] (E)IDE hard drive subsystem geometry
/linux-4.1.27/drivers/ide/
DKconfig308 Note that, if you do this, the order of the hd* devices will be
/linux-4.1.27/Documentation/blockdev/
DREADME.DAC960198 http://www.mylex.com/support/hdcomp/hd-lists.html.
/linux-4.1.27/
DCREDITS2193 D: EIDE driver, hd.c support