2015-08-06 03:13:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Intel Corporation.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-08-06 03:13:36 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file Board config file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <device.h>
|
|
|
|
#include <init.h>
|
|
|
|
|
2016-12-23 21:35:34 +08:00
|
|
|
#include <kernel.h>
|
2015-08-06 03:13:36 +08:00
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#include "soc.h"
|
2015-08-06 03:13:36 +08:00
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
#ifdef CONFIG_UART_STELLARIS
|
2015-10-15 14:48:03 +08:00
|
|
|
#include <uart.h>
|
2015-08-11 06:02:04 +08:00
|
|
|
|
2017-04-21 02:30:33 +08:00
|
|
|
#define RCGC1 (*((volatile u32_t *)0x400FE104))
|
2015-08-11 06:02:04 +08:00
|
|
|
|
|
|
|
#define RCGC1_UART0_EN 0x00000001
|
|
|
|
#define RCGC1_UART1_EN 0x00000002
|
|
|
|
#define RCGC1_UART2_EN 0x00000004
|
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
static int uart_stellaris_init(struct device *dev)
|
2015-08-11 06:02:04 +08:00
|
|
|
{
|
2015-12-02 00:42:19 +08:00
|
|
|
#ifdef CONFIG_UART_STELLARIS_PORT_0
|
2015-08-11 06:02:04 +08:00
|
|
|
RCGC1 |= RCGC1_UART0_EN;
|
|
|
|
#endif
|
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
#ifdef CONFIG_UART_STELLARIS_PORT_1
|
2015-08-11 06:02:04 +08:00
|
|
|
RCGC1 |= RCGC1_UART1_EN;
|
|
|
|
#endif
|
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
#ifdef CONFIG_UART_STELLARIS_PORT_2
|
2015-08-11 06:02:04 +08:00
|
|
|
RCGC1 |= RCGC1_UART2_EN;
|
|
|
|
#endif
|
2015-08-14 00:51:10 +08:00
|
|
|
|
2016-03-22 04:33:24 +08:00
|
|
|
return 0;
|
2015-12-02 00:42:19 +08:00
|
|
|
}
|
2015-08-11 06:02:04 +08:00
|
|
|
|
2016-11-09 03:06:55 +08:00
|
|
|
SYS_INIT(uart_stellaris_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
|
2015-08-11 06:02:04 +08:00
|
|
|
|
2015-12-02 00:42:19 +08:00
|
|
|
#endif /* CONFIG_UART_STELLARIS */
|