Home
last modified time | relevance | path

Searched refs:hrt (Results 1 – 13 of 13) sorted by relevance

/drivers/message/i2o/
Di2o_proc.c300 i2o_hrt *hrt = (i2o_hrt *) c->hrt.virt; in i2o_seq_show_hrt() local
304 if (hrt->hrt_version) { in i2o_seq_show_hrt()
311 hrt->num_entries, hrt->entry_len << 2); in i2o_seq_show_hrt()
313 for (i = 0; i < hrt->num_entries; i++) { in i2o_seq_show_hrt()
316 hrt->hrt_entry[i].adapter_id); in i2o_seq_show_hrt()
318 hrt->hrt_entry[i].parent_tid); in i2o_seq_show_hrt()
320 if (hrt->hrt_entry[i].bus_type != 0x80) { in i2o_seq_show_hrt()
321 bus = hrt->hrt_entry[i].bus_type; in i2o_seq_show_hrt()
328 hrt->hrt_entry[i].bus.local_bus. in i2o_seq_show_hrt()
331 hrt->hrt_entry[i].bus.local_bus. in i2o_seq_show_hrt()
[all …]
Diop.c978 i2o_hrt *hrt = c->hrt.virt; in i2o_hrt_get() local
993 msg->body[0] = cpu_to_le32(0xd0000000 | c->hrt.len); in i2o_hrt_get()
994 msg->body[1] = cpu_to_le32(c->hrt.phys); in i2o_hrt_get()
996 rc = i2o_msg_post_wait_mem(c, msg, 20, &c->hrt); in i2o_hrt_get()
1004 size = hrt->num_entries * hrt->entry_len << 2; in i2o_hrt_get()
1005 if (size > c->hrt.len) { in i2o_hrt_get()
1006 if (i2o_dma_realloc(dev, &c->hrt, size)) in i2o_hrt_get()
1009 hrt = c->hrt.virt; in i2o_hrt_get()
Ddebug.c392 u32 *rows = (u32 *) c->hrt.virt; in i2o_dump_hrt()
393 u8 *p = (u8 *) c->hrt.virt; in i2o_dump_hrt()
Di2o_config.c92 i2o_hrt *hrt; in i2o_cfg_gethrt() local
110 hrt = (i2o_hrt *) c->hrt.virt; in i2o_cfg_gethrt()
112 len = 8 + ((hrt->entry_len * hrt->num_entries) << 2); in i2o_cfg_gethrt()
118 if (copy_to_user(kcmd.resbuf, (void *)hrt, len)) in i2o_cfg_gethrt()
DREADME.ioctl59 ioctl(fd, I2OHRTGET, struct i2o_cmd_hrt *hrt);
71 by hrt->iop in the buffer pointed to by hrt->resbuf. The actual size of
72 the data is written into *(hrt->reslen).
82 buffer length is written into *(hrt->reslen)
Dpci.c63 i2o_dma_free(dev, &c->hrt); in i2o_pci_free()
194 if (i2o_dma_alloc(dev, &c->hrt, sizeof(i2o_hrt))) { in i2o_pci_alloc()
/drivers/pci/hotplug/
Dcpqphp.h180 struct hrt { struct
195 SIG0 = offsetof(struct hrt, sig0), argument
196 SIG1 = offsetof(struct hrt, sig1),
197 SIG2 = offsetof(struct hrt, sig2),
198 SIG3 = offsetof(struct hrt, sig3),
199 UNUSED_IRQ = offsetof(struct hrt, unused_IRQ),
200 PCIIRQ = offsetof(struct hrt, PCIIRQ),
201 NUMBER_OF_ENTRIES = offsetof(struct hrt, number_of_entries),
202 REVISION = offsetof(struct hrt, revision),
203 HRT_RESERVED1 = offsetof(struct hrt, reserved1),
[all …]
Dcpqphp_pci.c61 endp = (end - sizeof(struct hrt) + 1); in detect_HRT_floating_pointer()
1239 one_slot = rom_resource_table + sizeof (struct hrt); in cpqhp_find_available_resources()
/drivers/lguest/
Dinterrupts_and_traps.c494 hrtimer_cancel(&cpu->hrt); in guest_set_clockevent()
502 hrtimer_start(&cpu->hrt, expires, HRTIMER_MODE_ABS); in guest_set_clockevent()
508 struct lg_cpu *cpu = container_of(timer, struct lg_cpu, hrt); in clockdev_fn()
521 hrtimer_init(&cpu->hrt, CLOCK_REALTIME, HRTIMER_MODE_ABS); in init_clockdev()
522 cpu->hrt.function = clockdev_fn; in init_clockdev()
Dlg.h72 struct hrtimer hrt; member
Dlguest_user.c299 hrtimer_cancel(&lg->cpus[i].hrt); in close()
/drivers/scsi/
Ddpt_i2o.c1120 pHba->hrt = NULL; in adpt_install_hba()
1198 if(pHba->hrt) { in adpt_i2o_delete_hba()
1200 pHba->hrt->num_entries * pHba->hrt->entry_len << 2, in adpt_i2o_delete_hba()
1201 pHba->hrt, pHba->hrt_pa); in adpt_i2o_delete_hba()
3344 if (pHba->hrt == NULL) { in adpt_i2o_hrt_get()
3345 pHba->hrt = dma_alloc_coherent(&pHba->pDev->dev, in adpt_i2o_hrt_get()
3347 if (pHba->hrt == NULL) { in adpt_i2o_hrt_get()
3365 if (pHba->hrt->num_entries * pHba->hrt->entry_len << 2 > size) { in adpt_i2o_hrt_get()
3366 int newsize = pHba->hrt->num_entries * pHba->hrt->entry_len << 2; in adpt_i2o_hrt_get()
3368 pHba->hrt, pHba->hrt_pa); in adpt_i2o_hrt_get()
[all …]
Ddpti.h240 i2o_hrt* hrt; member