Searched refs:gpio_en (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/bhnd/bhndb/ |
H A D | bhndb_pci.c | 1048 uint32_t gpio_in, gpio_out, gpio_en; in bhndb_enable_pci_clocks() local 1065 gpio_en = pci_read_config(pci_dev, BHNDB_PCI_GPIO_OUTEN, 4); in bhndb_enable_pci_clocks() 1070 gpio_en |= gpio_flags; in bhndb_enable_pci_clocks() 1073 pci_write_config(pci_dev, BHNDB_PCI_GPIO_OUTEN, gpio_en, 4); in bhndb_enable_pci_clocks() 1101 uint32_t gpio_out, gpio_en; in bhndb_disable_pci_clocks() local 1111 gpio_en = pci_read_config(pci_dev, BHNDB_PCI_GPIO_OUTEN, 4); in bhndb_disable_pci_clocks() 1119 gpio_en |= (BHNDB_PCI_GPIO_PLL_OFF|BHNDB_PCI_GPIO_XTAL_ON); in bhndb_disable_pci_clocks() 1120 pci_write_config(pci_dev, BHNDB_PCI_GPIO_OUTEN, gpio_en, 4); in bhndb_disable_pci_clocks()
|
/freebsd/sys/dev/bwi/ |
H A D | if_bwi.c | 647 uint32_t gpio_in, gpio_out, gpio_en; in bwi_power_on() local 655 gpio_en = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, 4); in bwi_power_on() 658 gpio_en |= BWI_PCIM_GPIO_PWR_ON; in bwi_power_on() 662 gpio_en |= BWI_PCIM_GPIO_PLL_PWR_OFF; in bwi_power_on() 666 pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, gpio_en, 4); in bwi_power_on() 686 uint32_t gpio_out, gpio_en; in bwi_power_off() local 690 gpio_en = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, 4); in bwi_power_off() 693 gpio_en |= BWI_PCIM_GPIO_PWR_ON; in bwi_power_off() 696 gpio_en |= BWI_PCIM_GPIO_PLL_PWR_OFF; in bwi_power_off() 700 pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, gpio_en, 4); in bwi_power_off()
|