mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 07:15:19 +07:00
2874c5fd28
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 3029 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070032.746973796@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Freescale General-purpose Timers Module
|
|
*
|
|
* Copyright 2006 Freescale Semiconductor, Inc.
|
|
* Shlomi Gridish <gridish@freescale.com>
|
|
* Jerry Huang <Chang-Ming.Huang@freescale.com>
|
|
* Copyright (c) MontaVista Software, Inc. 2008.
|
|
* Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
*/
|
|
|
|
#ifndef __ASM_FSL_GTM_H
|
|
#define __ASM_FSL_GTM_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct gtm;
|
|
|
|
struct gtm_timer {
|
|
unsigned int irq;
|
|
|
|
struct gtm *gtm;
|
|
bool requested;
|
|
u8 __iomem *gtcfr;
|
|
__be16 __iomem *gtmdr;
|
|
__be16 __iomem *gtpsr;
|
|
__be16 __iomem *gtcnr;
|
|
__be16 __iomem *gtrfr;
|
|
__be16 __iomem *gtevr;
|
|
};
|
|
|
|
extern struct gtm_timer *gtm_get_timer16(void);
|
|
extern struct gtm_timer *gtm_get_specific_timer16(struct gtm *gtm,
|
|
unsigned int timer);
|
|
extern void gtm_put_timer16(struct gtm_timer *tmr);
|
|
extern int gtm_set_timer16(struct gtm_timer *tmr, unsigned long usec,
|
|
bool reload);
|
|
extern int gtm_set_exact_timer16(struct gtm_timer *tmr, u16 usec,
|
|
bool reload);
|
|
extern void gtm_stop_timer16(struct gtm_timer *tmr);
|
|
extern void gtm_ack_timer16(struct gtm_timer *tmr, u16 events);
|
|
|
|
#endif /* __ASM_FSL_GTM_H */
|