66 lines
2.6 KiB
C
66 lines
2.6 KiB
C
/****************************************************************************
|
|
* arch/arm/src/tiva/hardware/tiva_sysctrl.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
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM_SRC_TIVA_HARDWARE_TIVA_SYSCTRL_H
|
|
#define __ARCH_ARM_SRC_TIVA_HARDWARE_TIVA_SYSCTRL_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
/* Include the system control header file for the specific Tiva/Stellaris
|
|
* chip
|
|
*/
|
|
|
|
#if defined(CONFIG_ARCH_CHIP_LM3S)
|
|
# include "hardware/lm/lm3s_sysctrl.h"
|
|
#elif defined(CONFIG_ARCH_CHIP_LM4F)
|
|
# include "hardware/lm/lm4f_sysctrl.h"
|
|
#elif defined(CONFIG_ARCH_CHIP_TM4C123)
|
|
# include "hardware/tm4c/tm4c123_sysctrl.h"
|
|
#elif defined(CONFIG_ARCH_CHIP_TM4C129)
|
|
# include "hardware/tm4c/tm4c129_sysctrl.h"
|
|
#elif defined(CONFIG_ARCH_CHIP_CC13X0) || defined(CONFIG_ARCH_CHIP_CC13X2)
|
|
|
|
/* These MCUs have no SYSCTL block */
|
|
#else
|
|
# error "Unsupported Tiva/Stellaris system control module"
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
#endif /* __ARCH_ARM_SRC_TIVA_HARDWARE_TIVA_SYSCTRL_H */
|