summaryrefslogtreecommitdiff
path: root/arch/arm/include
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <[email protected]>2015-08-19 16:16:26 +0530
committerTom Rini <[email protected]>2015-08-28 12:33:21 -0400
commit09cc14f4bcbf9df264cc3d23ee19a7233357945f (patch)
tree55dc6037e965477a5c24886311997fabefaae2c7 /arch/arm/include
parentca5a0f172ebd907cfc21fe7c8744b0b1752bc66f (diff)
ARM: AM43xx: Add functions to enable and disable USB clocks
Added functions to enable and disable USB clocks which can be invoked during USB init and USB exit respectively. Cc: Roger Quadros <[email protected]> Cc: Tero Kristo <[email protected]> Cc: Nishanth Menon <[email protected]> Signed-off-by: Kishon Vijay Abraham I <[email protected]> Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'arch/arm/include')
-rw-r--r--arch/arm/include/asm/arch-am33xx/sys_proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-am33xx/sys_proto.h b/arch/arm/include/asm/arch-am33xx/sys_proto.h
index 91b614ad207..8f573d2d02a 100644
--- a/arch/arm/include/asm/arch-am33xx/sys_proto.h
+++ b/arch/arm/include/asm/arch-am33xx/sys_proto.h
@@ -42,3 +42,6 @@ void am33xx_spl_board_init(void);
int am335x_get_efuse_mpu_max_freq(struct ctrl_dev *cdev);
int am335x_get_tps65910_mpu_vdd(int sil_rev, int frequency);
#endif
+
+void enable_usb_clocks(int index);
+void disable_usb_clocks(int index);