Home
last modified time | relevance | path

Searched refs:fc_arg (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/uts/sun4u/starcat/io/
H A Dfcgp2.c270 r.regspec_size = len = fc_cell2size(fc_arg(cp, 0)); in gfc_map_in()
271 r.regspec_bustype = fc_cell2uint(fc_arg(cp, 1)); in gfc_map_in()
272 r.regspec_addr = fc_cell2uint(fc_arg(cp, 2)); in gfc_map_in()
323 virt = fc_cell2ptr(fc_arg(cp, 1)); in gfc_map_out()
325 len = fc_cell2size(fc_arg(cp, 0)); in gfc_map_out()
379 virt = fc_cell2ptr(fc_arg(cp, 0)); in gfc_register_fetch()
483 virt = fc_cell2ptr(fc_arg(cp, 0)); in gfc_register_store()
490 case 'x': len = sizeof (x); x = fc_arg(cp, 1); break; in gfc_register_store()
491 case 'l': len = sizeof (l); l = fc_cell2uint32_t(fc_arg(cp, 1)); break; in gfc_register_store()
492 case 'w': len = sizeof (w); w = fc_cell2uint16_t(fc_arg(cp, 1)); break; in gfc_register_store()
[all …]
/titanic_41/usr/src/uts/sun4/io/efcode/
H A Dfc_ops.c221 h = fc_cell2phandle(fc_arg(cp, 0)); in fco_getproplen()
228 pnp = fc_cell2ptr(fc_arg(cp, 1)); in fco_getproplen()
268 h = fc_cell2phandle(fc_arg(cp, 0)); in fco_getprop()
275 pnp = fc_cell2ptr(fc_arg(cp, 2)); in fco_getprop()
285 char *up = fc_cell2ptr(fc_arg(cp, 1)); in fco_getprop()
333 h = fc_cell2phandle(fc_arg(cp, 0)); in fco_child()
365 h = fc_cell2phandle(fc_arg(cp, 0)); in fco_peer()
397 h = fc_cell2phandle(fc_arg(cp, 0)); in fco_parent()
485 ph = fc_cell2phandle(fc_arg(cp, 1)); in fco_new_device()
490 ch = fc_cell2phandle(fc_arg(cp, 0)); in fco_new_device()
[all …]
H A Dfcpci.c314 virt = fc_cell2ptr(fc_arg(cp, 2)); in pfc_dma_map_in()
315 len = fc_cell2size(fc_arg(cp, 1)); in pfc_dma_map_in()
317 cacheable = fc_cell2int(fc_arg(cp, 0)); /* XXX: do what? */ in pfc_dma_map_in()
393 virt = fc_cell2ptr(fc_arg(cp, 2)); in pfc_dma_sync()
394 devaddr = fc_cell2uint32_t(fc_arg(cp, 1)); in pfc_dma_sync()
395 len = fc_cell2size(fc_arg(cp, 0)); in pfc_dma_sync()
447 virt = fc_cell2ptr(fc_arg(cp, 2)); in pfc_dma_map_out()
448 devaddr = fc_cell2uint32_t(fc_arg(cp, 1)); in pfc_dma_map_out()
449 len = fc_cell2size(fc_arg(cp, 0)); in pfc_dma_map_out()
561 p.pci_size_low = len = fc_cell2size(fc_arg(cp, 0)); in pfc_map_in()
[all …]
/titanic_41/usr/src/uts/sun4u/io/
H A Dopl_cfg.c1288 rspec.regspec_size = len = fc_cell2size(fc_arg(cp, 0)); in opl_map_in()
1289 rspec.regspec_bustype = fc_cell2uint(fc_arg(cp, 1)); in opl_map_in()
1290 rspec.regspec_addr = fc_cell2uint(fc_arg(cp, 2)); in opl_map_in()
1341 virt = fc_cell2ptr(fc_arg(cp, 1)); in opl_map_out()
1343 len = fc_cell2size(fc_arg(cp, 0)); in opl_map_out()
1398 virt = fc_cell2ptr(fc_arg(cp, 0)); in opl_register_fetch()
1512 virt = fc_cell2ptr(fc_arg(cp, 0)); in opl_register_store()
1521 x = fc_arg(cp, 1); in opl_register_store()
1526 l = fc_cell2uint32_t(fc_arg(cp, 1)); in opl_register_store()
1531 w = fc_cell2uint16_t(fc_arg(cp, 1)); in opl_register_store()
[all …]
/titanic_41/usr/src/lib/efcode/fcdriver/
H A Dioctl.c71 fc_arg(cip, i) = va_arg(ap, fc_cell_t); in fc_run_priv()
96 (uint64_t)fc_arg(cip, i)); in fc_run_priv()
/titanic_41/usr/src/uts/sun4/sys/
H A Dfcode.h153 #define fc_arg(cp, i) (cp->v[(i)]) macro