78 lines
2.3 KiB
C
78 lines
2.3 KiB
C
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <device.h>
|
|
#include <init.h>
|
|
#include "soc.h"
|
|
|
|
#if CONFIG_IPM_QUARK_SE
|
|
#include <ipm.h>
|
|
#include <ipm/ipm_quark_se.h>
|
|
|
|
static int arc_quark_se_ipm_init(void)
|
|
{
|
|
IRQ_CONNECT(QUARK_SE_IPM_INTERRUPT, QUARK_SE_IPM_INTERRUPT_PRI,
|
|
quark_se_ipm_isr, NULL, 0);
|
|
irq_enable(QUARK_SE_IPM_INTERRUPT);
|
|
return 0;
|
|
}
|
|
|
|
static struct quark_se_ipm_controller_config_info ipm_controller_config = {
|
|
.controller_init = arc_quark_se_ipm_init
|
|
};
|
|
DEVICE_AND_API_INIT(quark_se_ipm, "", quark_se_ipm_controller_initialize,
|
|
NULL, &ipm_controller_config,
|
|
SECONDARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT,
|
|
&ipm_quark_se_api_funcs);
|
|
|
|
#if CONFIG_IPM_CONSOLE_SENDER
|
|
#include <console/ipm_console.h>
|
|
QUARK_SE_IPM_DEFINE(quark_se_ipm4, 4, QUARK_SE_IPM_OUTBOUND);
|
|
|
|
struct ipm_console_sender_config_info quark_se_ipm_sender_config = {
|
|
.bind_to = "quark_se_ipm4",
|
|
.flags = IPM_CONSOLE_PRINTK | IPM_CONSOLE_STDOUT,
|
|
};
|
|
DEVICE_INIT(ipm_console, "ipm_console", ipm_console_sender_init,
|
|
NULL, &quark_se_ipm_sender_config,
|
|
SECONDARY, CONFIG_IPM_CONSOLE_INIT_PRIORITY);
|
|
|
|
#endif /* CONFIG_IPM_CONSOLE_SENDER */
|
|
#endif /* CONFIG_IPM_QUARK_SE */
|
|
|
|
#ifdef CONFIG_UART_NS16550
|
|
|
|
static int uart_ns16550_init(struct device *dev)
|
|
{
|
|
ARG_UNUSED(dev);
|
|
|
|
#ifdef CONFIG_UART_NS16550_PORT_0
|
|
sys_clear_bit((SCSS_REGISTER_BASE + UART_NS16550_PORT_0_INT_MASK),
|
|
INT_ENABLE_ARC_BIT_POS);
|
|
#endif /* CONFIG_UART_NS16550_PORT_0 */
|
|
|
|
#ifdef CONFIG_UART_NS16550_PORT_1
|
|
sys_clear_bit((SCSS_REGISTER_BASE + UART_NS16550_PORT_1_INT_MASK),
|
|
INT_ENABLE_ARC_BIT_POS);
|
|
#endif /* CONFIG_UART_NS16550_PORT_1 */
|
|
|
|
return 0;
|
|
}
|
|
|
|
SYS_INIT(uart_ns16550_init, PRIMARY, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
|
|
|
|
#endif /* CONFIG_UART_NS16550 */
|