MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bus_space_write_4

Function bus_space_write_4

freebsd/x86/include/bus.h:503–512  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501}
502
503static __inline void
504bus_space_write_4(bus_space_tag_t tag, bus_space_handle_t bsh,
505 bus_size_t offset, u_int32_t value)
506{
507
508 if (tag == X86_BUS_SPACE_IO)
509 outl(bsh + offset, value);
510 else
511 *(volatile u_int32_t *)(bsh + offset) = value;
512}
513
514#ifdef __amd64__
515static __inline void

Callers 15

ccp_write_4Function · 0.85
jz4780_ohci_attachFunction · 0.85
jz4780_ohci_detachFunction · 0.85
ar71xx_ohci_attachFunction · 0.85
ar71xx_ohci_detachFunction · 0.85
thunder_pem_write_configFunction · 0.85
ti_wdt_reg_writeFunction · 0.85
ti_mbox_reg_writeFunction · 0.85
ti_prcm_write_4Function · 0.85
ti_prcm_modify_4Function · 0.85
ti_pruss_reg_writeFunction · 0.85
ti_scm_syscon_write_4Function · 0.85

Calls 1

outlFunction · 0.50

Tested by

no test coverage detected