2019-06-04 08:11:33 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2014-08-19 16:17:35 +00: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>
|
2024-02-20 00:15:21 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2024-02-20 00:15:25 +00:00
|
|
|
#include <linux/platform_data/x86/pwm-lpss.h>
|
2014-08-19 16:17:35 +00:00
|
|
|
|
2024-02-20 00:15:15 +00:00
|
|
|
#define LPSS_MAX_PWMS 4
|
2018-10-12 10:12:26 +00:00
|
|
|
|
|
|
|
struct pwm_lpss_chip {
|
|
|
|
struct pwm_chip chip;
|
|
|
|
void __iomem *regs;
|
|
|
|
const struct pwm_lpss_boardinfo *info;
|
|
|
|
};
|
2014-08-19 16:17:35 +00:00
|
|
|
|
2024-02-20 00:15:03 +00: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 16:17:35 +00:00
|
|
|
#endif /* __PWM_LPSS_H */
|