2014-08-19 18:17:35 +02:00
|
|
|
/*
|
|
|
|
* Intel Low Power Subsystem PWM controller driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014, Intel Corporation
|
|
|
|
*
|
|
|
|
* Derived from the original pwm-lpss.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PWM_LPSS_H
|
|
|
|
#define __PWM_LPSS_H
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/pwm.h>
|
|
|
|
|
2018-10-12 12:12:26 +02:00
|
|
|
#define MAX_PWMS 4
|
|
|
|
|
|
|
|
struct pwm_lpss_chip {
|
|
|
|
struct pwm_chip chip;
|
|
|
|
void __iomem *regs;
|
|
|
|
const struct pwm_lpss_boardinfo *info;
|
|
|
|
u32 saved_ctrl[MAX_PWMS];
|
|
|
|
};
|
2014-08-19 18:17:35 +02:00
|
|
|
|
|
|
|
struct pwm_lpss_boardinfo {
|
|
|
|
unsigned long clk_rate;
|
2015-10-20 15:53:05 +02:00
|
|
|
unsigned int npwm;
|
2015-11-17 10:20:15 +01:00
|
|
|
unsigned long base_unit_bits;
|
2017-04-06 13:54:01 +02:00
|
|
|
bool bypass;
|
2018-10-14 17:12:01 +02:00
|
|
|
/*
|
|
|
|
* On some devices the _PS0/_PS3 AML code of the GPU (GFX0) device
|
|
|
|
* messes with the PWM0 controllers state,
|
|
|
|
*/
|
|
|
|
bool other_devices_aml_touches_pwm_regs;
|
2014-08-19 18:17:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pwm_lpss_chip *pwm_lpss_probe(struct device *dev, struct resource *r,
|
|
|
|
const struct pwm_lpss_boardinfo *info);
|
|
|
|
int pwm_lpss_remove(struct pwm_lpss_chip *lpwm);
|
2018-04-26 14:10:23 +02:00
|
|
|
int pwm_lpss_suspend(struct device *dev);
|
|
|
|
int pwm_lpss_resume(struct device *dev);
|
2014-08-19 18:17:35 +02:00
|
|
|
|
|
|
|
#endif /* __PWM_LPSS_H */
|