source: rtems/bsps/powerpc/psim/include/tm27.h @ bc696482

5
Last change on this file since bc696482 was 5da1593, checked in by Joel Sherrill <joel@…>, on 08/29/18 at 17:39:17

psim/include/tm27.h: Fix not a prototype warnings

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[62f529f]1/*
[e327e69]2 * @file
3 * @ingroup powerpc_psim
4 * @brief Implementations for interrupt mechanisms for Time Test 27
5 */
6
7/*
[62f529f]8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
[c499856]10 *  http://www.rtems.org/license/LICENSE.
[62f529f]11 */
12
[3defec6]13#ifndef _RTEMS_TMTEST27
[62f529f]14#error "This is an RTEMS internal file you must not include directly."
15#endif
16
17#ifndef __tm27_h
18#define __tm27_h
19
[270ce1ff]20#include <bsp/irq.h>
21
[62f529f]22/*
23 *  Stuff for Time Test 27
24 */
25
26#define MUST_WAIT_FOR_INTERRUPT 1
27
[5da1593]28static void nullFunc(void) {}
[270ce1ff]29static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
30                                              0,
31                                              (rtems_irq_enable)nullFunc,
32                                              (rtems_irq_disable)nullFunc,
33                                              (rtems_irq_is_enabled) nullFunc};
34
[5da1593]35RTEMS_INLINE_ROUTINE void Install_tm27_vector(void (*_handler)())
[270ce1ff]36{
37  clockIrqData.hdl = _handler;
38  if (!BSP_install_rtems_irq_handler (&clockIrqData)) {
[5da1593]39    printk("Error installing clock interrupt handler!\n");
40    rtems_fatal_error_occurred(1);
[270ce1ff]41  }
42}
[62f529f]43
44#define Cause_tm27_intr()  \
45  do { \
[3851080]46    uint32_t _clicks = 1; \
[4ac74d01]47    __asm__ volatile( "mtdec %0" : "=r" ((_clicks)) : "r" ((_clicks)) ); \
[62f529f]48  } while (0)
49
[270ce1ff]50
[62f529f]51#define Clear_tm27_intr() \
52  do { \
[3851080]53    uint32_t _clicks = 0xffffffff; \
[4ac74d01]54    __asm__ volatile( "mtdec %0" : "=r" ((_clicks)) : "r" ((_clicks)) ); \
[62f529f]55  } while (0)
56
57#define Lower_tm27_intr() \
58  do { \
[3851080]59    uint32_t _msr = 0; \
[62f529f]60    _ISR_Set_level( 0 ); \
[4ac74d01]61    __asm__ volatile( "mfmsr %0 ;" : "=r" (_msr) : "r" (_msr) ); \
[62f529f]62    _msr |=  0x8002; \
[4ac74d01]63    __asm__ volatile( "mtmsr %0 ;" : "=r" (_msr) : "r" (_msr) ); \
[62f529f]64  } while (0)
65
66#endif
Note: See TracBrowser for help on using the repository browser.