summaryrefslogtreecommitdiffstats
path: root/drivers/clk/nxp/clk-lpc18xx-cgu.c
Commit message (Collapse)AuthorAgeFilesLines
* clk: nxp: Remove CLK_IS_ROOTStephen Boyd2016-03-031-1/+1
| | | | | | | This flag is a no-op now. Remove usage of the flag. Acked-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
* clk: lpc18xx-cgu: fix potential system hang when disabling unused clocksJoachim Eastwood2015-10-261-3/+39
| | | | | | | | | | | | | | | | The clock consumer (CCU) of the CGU must be able to check if a CGU base clock is really running since access to the CCU registers requires a running base clock. Access with a disabled base clock will cause the system to hang. Fix this issue by adding code that check if the parent clock is running in the is_enabled clk_ops callback. Since certain clocks can be cascaded this must be added to all clock gates. The hang would occur if the boot ROM or boot loader didn't setup and enable the USB0 clock. Then when the clk framework tried to access the CCU register it would hang the system. Signed-off-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
* clk: nxp: Remove clk.h includeStephen Boyd2015-07-201-1/+0Star
| | | | | | | | | Clock provider drivers generally shouldn't include clk.h because it's the consumer API. Remove the include here because this is a provider driver. Acked-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
* clk: add lpc18xx cgu clk driverJoachim Eastwood2015-06-191-0/+635
Add driver for NXP LPC18xx/43xx Clock Generation Unit (CGU). The CGU contains several clock generators and output stages that route the clocks either directly to peripherals or to a Clock Control Unit (CCU). Signed-off-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com>