1 /* 2 * SoC-specific code for tms320dm365 and similar chips 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #include <common.h> 8 #include <asm/arch/hardware.h> 9 10 void davinci_enable_uart0(void) 11 { 12 lpsc_on(DAVINCI_LPSC_UART0); 13 } 14 15 #ifdef CONFIG_SYS_I2C_DAVINCI 16 void davinci_enable_i2c(void) 17 { 18 lpsc_on(DAVINCI_LPSC_I2C); 19 } 20 #endif 21