nuttx/arch/arm/src/tms570/tms570_clockconfig.h

69 lines
2.4 KiB
C
Raw Normal View History

/****************************************************************************
2015-12-17 12:57:48 -06:00
* arch/arm/src/tms570/tms570_clockconfig.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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-12-17 12:57:48 -06:00
*
* http://www.apache.org/licenses/LICENSE-2.0
2015-12-17 12:57:48 -06: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-12-17 12:57:48 -06:00
*
****************************************************************************/
2015-12-17 12:57:48 -06:00
#ifndef __ARCH_ARM_SRC_TMS570_TMS570_CLOCKCONFIG_H
#define __ARCH_ARM_SRC_TMS570_TMS570_CLOCKCONFIG_H
/****************************************************************************
2015-12-17 12:57:48 -06:00
* Included Files
****************************************************************************/
2015-12-17 12:57:48 -06:00
#include <nuttx/config.h>
/****************************************************************************
* Public Data
****************************************************************************/
2015-12-17 12:57:48 -06:00
#ifndef __ASSEMBLY__
#undef EXTERN
#if defined(__cplusplus)
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
2015-12-17 12:57:48 -06:00
* Public Function Prototypes
****************************************************************************/
2015-12-17 12:57:48 -06:00
/****************************************************************************
2015-12-17 12:57:48 -06:00
* Name: tms570_clockconfig
*
* Description:
* Called to initialize TMS570 clocking.
* This does whatever setup is needed to put the SoC in a usable state.
* This includes, but is not limited to, theinitialization of clocking
* using the settings in the board.h header file.
2015-12-17 12:57:48 -06:00
*
****************************************************************************/
2015-12-17 12:57:48 -06:00
void tms570_clockconfig(void);
#undef EXTERN
#if defined(__cplusplus)
}
#endif
#endif /* __ASSEMBLY__ */
#endif /* __ARCH_ARM_SRC_TMS570_TMS570_CLOCKCONFIG_H */