xref: /openbmc/u-boot/arch/arm/include/asm/arch-am33xx/clocks_am33xx.h (revision 1a4596601fd395f3afb8f82f3f840c5e00bdd57a)
1 /*
2  * clocks_am33xx.h
3  *
4  * AM33xx clock define
5  *
6  * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #ifndef _CLOCKS_AM33XX_H_
12 #define _CLOCKS_AM33XX_H_
13 
14 /* MAIN PLL Fdll = 550 MHz, by default */
15 #ifndef CONFIG_SYS_MPUCLK
16 #define CONFIG_SYS_MPUCLK	550
17 #endif
18 
19 extern void pll_init(void);
20 extern void enable_emif_clocks(void);
21 extern void enable_dmm_clocks(void);
22 
23 #endif	/* endif _CLOCKS_AM33XX_H_ */
24