2015-07-07 04:20:19 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-07-07 04:20:19 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Initialize system clock driver
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* Initializing the timer driver is done in this module to reduce code
|
2016-12-20 07:41:17 +08:00
|
|
|
* duplication.
|
2015-12-04 23:09:39 +08:00
|
|
|
*/
|
2015-07-07 04:20:19 +08:00
|
|
|
|
2016-12-05 04:59:37 +08:00
|
|
|
#include <kernel.h>
|
2015-07-07 04:20:19 +08:00
|
|
|
#include <init.h>
|
|
|
|
#include <drivers/system_timer.h>
|
|
|
|
|
2016-12-20 07:41:17 +08:00
|
|
|
SYS_DEVICE_DEFINE("sys_clock", _sys_clock_driver_init, sys_clock_device_ctrl,
|
2017-06-28 05:51:57 +08:00
|
|
|
PRE_KERNEL_2, CONFIG_SYSTEM_CLOCK_INIT_PRIORITY);
|