blob: c395238d09222ad13da610a9765f16dfdd9eaa20 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tomasz Figaf1189982013-04-20 23:22:13 +02002/*
3 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
Tomasz Figaf1189982013-04-20 23:22:13 +02004 */
5#ifndef __CLOCKSOURCE_SAMSUNG_PWM_H
6#define __CLOCKSOURCE_SAMSUNG_PWM_H
7
8#include <linux/spinlock.h>
9
10#define SAMSUNG_PWM_NUM 5
11
Tomasz Figa11ad39e2013-04-06 02:40:36 +020012/*
13 * Following declaration must be in an ifdef due to this symbol being static
14 * in pwm-samsung driver if the clocksource driver is not compiled in and the
15 * spinlock is not shared between both drivers.
16 */
17#ifdef CONFIG_CLKSRC_SAMSUNG_PWM
Tomasz Figa7aac4822013-04-23 17:46:24 +020018extern spinlock_t samsung_pwm_lock;
Tomasz Figa11ad39e2013-04-06 02:40:36 +020019#endif
Tomasz Figa7aac4822013-04-23 17:46:24 +020020
Tomasz Figaf1189982013-04-20 23:22:13 +020021struct samsung_pwm_variant {
22 u8 bits;
23 u8 div_base;
24 u8 tclk_mask;
25 u8 output_mask;
26 bool has_tint_cstat;
27};
28
Tomasz Figaf9bb48a22013-04-23 17:46:27 +020029void samsung_pwm_clocksource_init(void __iomem *base,
30 unsigned int *irqs, struct samsung_pwm_variant *variant);
31
Tomasz Figaf1189982013-04-20 23:22:13 +020032#endif /* __CLOCKSOURCE_SAMSUNG_PWM_H */