2015-07-28 00:09:43 +08:00
|
|
|
/* system.c - system/hardware module for ti_lm3s6965 platform */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2015 Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* 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
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* 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.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2015-10-21 00:42:33 +08:00
|
|
|
* DESCRIPTION
|
|
|
|
* This module provides routines to initialize and support board-level hardware
|
|
|
|
* for the ti_lm3s6965 platform.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#include <nanokernel.h>
|
2015-07-15 01:28:51 +08:00
|
|
|
#include <device.h>
|
|
|
|
#include <init.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <board.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_RUNTIME_NMI
|
|
|
|
extern void _NmiInit(void);
|
|
|
|
#define NMI_INIT() _NmiInit()
|
|
|
|
#else
|
|
|
|
#define NMI_INIT()
|
|
|
|
#endif
|
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Perform basic hardware initialization
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* Initialize the interrupt controller device drivers and the
|
|
|
|
* integrated 16550-compatible UART device driver.
|
|
|
|
* Also initialize the timer device driver, if required.
|
|
|
|
*
|
2015-07-15 01:28:51 +08:00
|
|
|
* @return 0
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-07-15 01:28:51 +08:00
|
|
|
static int ti_lm3s6965_init(struct device *arg)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
2015-07-15 01:28:51 +08:00
|
|
|
ARG_UNUSED(arg);
|
2015-04-21 15:52:13 +08:00
|
|
|
|
|
|
|
/* Install default handler that simply resets the CPU
|
|
|
|
* if configured in the kernel, NOP otherwise
|
|
|
|
*/
|
|
|
|
NMI_INIT();
|
2015-07-15 01:28:51 +08:00
|
|
|
return 0;
|
2015-04-11 07:44:37 +08:00
|
|
|
}
|
2015-07-15 01:28:51 +08:00
|
|
|
|
|
|
|
DECLARE_DEVICE_INIT_CONFIG(ti_lm3_0, "", ti_lm3s6965_init, NULL);
|
2015-09-26 04:02:12 +08:00
|
|
|
pre_kernel_core_init(ti_lm3_0, NULL);
|