system_ARMCA7.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /******************************************************************************
  2. * @file system_ARMCA7.h
  3. * @brief CMSIS Device System Header File for Arm Cortex-A7 Device Series
  4. * @version V1.00
  5. * @date 10. January 2018
  6. *
  7. * @note
  8. *
  9. ******************************************************************************/
  10. /*
  11. * Copyright (c) 2009-2018 Arm Limited. All rights reserved.
  12. *
  13. * SPDX-License-Identifier: Apache-2.0
  14. *
  15. * Licensed under the Apache License, Version 2.0 (the License); you may
  16. * not use this file except in compliance with the License.
  17. * You may obtain a copy of the License at
  18. *
  19. * www.apache.org/licenses/LICENSE-2.0
  20. *
  21. * Unless required by applicable law or agreed to in writing, software
  22. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  23. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  24. * See the License for the specific language governing permissions and
  25. * limitations under the License.
  26. */
  27. #ifndef __SYSTEM_ARMCA7_H
  28. #define __SYSTEM_ARMCA7_H
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. #include <stdint.h>
  33. extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */
  34. /**
  35. \brief Setup the microcontroller system.
  36. Initialize the System and update the SystemCoreClock variable.
  37. */
  38. extern void SystemInit (void);
  39. /**
  40. \brief Update SystemCoreClock variable.
  41. Updates the SystemCoreClock with current core Clock retrieved from cpu registers.
  42. */
  43. extern void SystemCoreClockUpdate (void);
  44. /**
  45. \brief Create Translation Table.
  46. Creates Memory Management Unit Translation Table.
  47. */
  48. extern void MMU_CreateTranslationTable(void);
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif /* __SYSTEM_ARMCA7_H */