blob: d33e4149be172601bad79b817635fa147cfc094c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +08002/*
3 * arch/powerpc/include/asm/mpic_timer.h
4 *
5 * Header file for Mpic Global Timer
6 *
7 * Copyright 2013 Freescale Semiconductor, Inc.
8 *
9 * Author: Wang Dongsheng <Dongsheng.Wang@freescale.com>
10 * Li Yang <leoli@freescale.com>
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +080011 */
12
13#ifndef __MPIC_TIMER__
14#define __MPIC_TIMER__
15
16#include <linux/interrupt.h>
17#include <linux/time.h>
18
19struct mpic_timer {
20 void *dev;
21 struct cascade_priv *cascade_handle;
22 unsigned int num;
23 unsigned int irq;
24};
25
26#ifdef CONFIG_MPIC_TIMER
27struct mpic_timer *mpic_request_timer(irq_handler_t fn, void *dev,
Arnd Bergmann11ed8c52018-01-16 18:01:50 +010028 time64_t time);
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +080029void mpic_start_timer(struct mpic_timer *handle);
30void mpic_stop_timer(struct mpic_timer *handle);
Arnd Bergmann11ed8c52018-01-16 18:01:50 +010031void mpic_get_remain_time(struct mpic_timer *handle, time64_t *time);
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +080032void mpic_free_timer(struct mpic_timer *handle);
33#else
34struct mpic_timer *mpic_request_timer(irq_handler_t fn, void *dev,
Arnd Bergmann11ed8c52018-01-16 18:01:50 +010035 time64_t time) { return NULL; }
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +080036void mpic_start_timer(struct mpic_timer *handle) { }
37void mpic_stop_timer(struct mpic_timer *handle) { }
Arnd Bergmann11ed8c52018-01-16 18:01:50 +010038void mpic_get_remain_time(struct mpic_timer *handle, time64_t *time) { }
Dongsheng.wang@freescale.com36ca09b2013-04-09 10:22:30 +080039void mpic_free_timer(struct mpic_timer *handle) { }
40#endif
41
42#endif