]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/arm926ejs/davinci/dm365.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / arm926ejs / davinci / dm365.c
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_DRIVER_DAVINCI_I2C
16 void davinci_enable_i2c(void)
17 {
18 lpsc_on(DAVINCI_LPSC_I2C);
19 }
20 #endif