Lines Matching refs:softsp
395 pmubus_devstate_t *softsp = pmubus_mapreqp->mapreq_softsp; in pmubus_get8() local
416 value = pci_config_get8(softsp->pmubus_reghdl, offset) & mask; in pmubus_get8()
438 pmubus_devstate_t *softsp = pmubus_mapreqp->mapreq_softsp; in pmubus_get32() local
459 value = pci_config_get32(softsp->pmubus_reghdl, offset) & mask; in pmubus_get32()
480 pmubus_devstate_t *softsp = pmubus_mapreqp->mapreq_softsp; in pmubus_put8() local
502 mutex_enter(&softsp->pmubus_reg_access_lock); in pmubus_put8()
503 tmp = pci_config_get8(softsp->pmubus_reghdl, offset); in pmubus_put8()
507 pci_config_put8(softsp->pmubus_reghdl, offset, tmp); in pmubus_put8()
508 mutex_exit(&softsp->pmubus_reg_access_lock); in pmubus_put8()
515 pci_config_put8(softsp->pmubus_reghdl, offset, value); in pmubus_put8()
519 tmp = pci_config_get8(softsp->pmubus_reghdl, offset); in pmubus_put8()
534 pmubus_devstate_t *softsp = pmubus_mapreqp->mapreq_softsp; in pmubus_put32() local
556 mutex_enter(&softsp->pmubus_reg_access_lock); in pmubus_put32()
557 tmp = pci_config_get32(softsp->pmubus_reghdl, offset); in pmubus_put32()
561 pci_config_put32(softsp->pmubus_reghdl, offset, tmp); in pmubus_put32()
562 mutex_exit(&softsp->pmubus_reg_access_lock); in pmubus_put32()
569 pci_config_put32(softsp->pmubus_reghdl, offset, value); in pmubus_put32()
573 tmp = pci_config_get32(softsp->pmubus_reghdl, offset); in pmubus_put32()