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 #define UART_RESET (0x1 << 1) 20 #define UART_CLK_RUNNING_MASK 0x1 21 #define UART_SMART_IDLE_EN (0x1 << 0x3) 22 23 extern void enable_dmm_clocks(void); 24 25 #endif /* endif _CLOCKS_AM33XX_H_ */ 26