#include <sys/ddi.h> #include <sys/sunddi.h> int ddi_pokec(dev_info_t *dip, char *addr, char value);int ddi_pokes(dev_info_t *dip, short *addr, short value);int ddi_pokel(dev_info_t *dip, long *addr, long value);int ddi_poked(dev_info_t *dip, longlong_t *addr, longlong_t value);
These routines cautiously attempt to write a value to a specified virtual address, using the parent nexus driver to assist in the process where necessary.
If the address is not valid, or the value cannot be written without an error occurring, an error code is returned.
These routines are most useful when first trying to establish the presence of a given device on the system in a driver’s probe(9E) or attach(9E) routines.
On multiprocessing machines these routines can be extremely heavy-weight, so use the ddi_peek(9F) routines instead if possible.