blob: 82c61d774d39135f14fd9b8564bf5e65fd5c59f5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Heiko Schocherb2f97cf2014-07-18 06:07:19 +02002/*
3 * (C) Copyright 2014
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
5 *
Robert P. J. Day5052e812016-09-13 08:35:18 -04006 * Basic support for the pwm module on imx6.
Heiko Schocherb2f97cf2014-07-18 06:07:19 +02007 */
8
9#ifndef _pwm_imx_util_h_
10#define _pwm_imx_util_h_
11
12struct pwm_regs *pwm_id_to_reg(int pwm_id);
13int pwm_imx_get_parms(int period_ns, int duty_ns, unsigned long *period_c,
14 unsigned long *duty_c, unsigned long *prescale);
15#endif