Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c722839c authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville
Browse files

bcma: implement disabling PLLs

parent 93ecbd64
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -104,7 +104,13 @@ void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status, bool on)
		if (i)
			bcma_err(core->bus, "PLL enable timeout\n");
	} else {
		bcma_warn(core->bus, "Disabling PLL not supported yet!\n");
		/*
		 * Mask the PLL but don't wait for it to be disabled. PLL may be
		 * shared between cores and will be still up if there is another
		 * core using it.
		 */
		bcma_mask32(core, BCMA_CLKCTLST, ~req);
		bcma_read32(core, BCMA_CLKCTLST);
	}
}
EXPORT_SYMBOL_GPL(bcma_core_pll_ctl);