2019-06-04 04:11:33 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2014-08-19 12:17:35 -04:00
|
|
|
/*
|
|
|
|
* Intel Low Power Subsystem PWM controller driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014, Intel Corporation
|
|
|
|
*
|
|
|
|
* Derived from the original pwm-lpss.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PWM_LPSS_H
|
|
|
|
#define __PWM_LPSS_H
|
|
|
|
|
|
|
|
#include <linux/pwm.h>
|
2022-11-17 06:08:02 -05:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2022-11-17 06:08:03 -05:00
|
|
|
#include <linux/platform_data/x86/pwm-lpss.h>
|
2014-08-19 12:17:35 -04:00
|
|
|
|
2022-11-17 06:08:01 -05:00
|
|
|
#define LPSS_MAX_PWMS 4
|
2018-10-12 06:12:26 -04:00
|
|
|
|
|
|
|
struct pwm_lpss_chip {
|
|
|
|
void __iomem *regs;
|
|
|
|
const struct pwm_lpss_boardinfo *info;
|
|
|
|
};
|
2014-08-19 12:17:35 -04:00
|
|
|
|
2022-09-27 12:24:15 -04:00
|
|
|
extern const struct pwm_lpss_boardinfo pwm_lpss_byt_info;
|
|
|
|
extern const struct pwm_lpss_boardinfo pwm_lpss_bsw_info;
|
|
|
|
extern const struct pwm_lpss_boardinfo pwm_lpss_bxt_info;
|
|
|
|
extern const struct pwm_lpss_boardinfo pwm_lpss_tng_info;
|
|
|
|
|
2014-08-19 12:17:35 -04:00
|
|
|
#endif /* __PWM_LPSS_H */
|