iw_cxgb4: Support ib_alloc_mr verb
[linux-2.6/btrfs-unstable.git] / drivers / pwm / pwm-lpss.c
blobe9798253a16fcfb76117c219c1c7212e171f8fe5
1 /*
2 * Intel Low Power Subsystem PWM controller driver
4 * Copyright (C) 2014, Intel Corporation
5 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
6 * Author: Chew Kean Ho <kean.ho.chew@intel.com>
7 * Author: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
8 * Author: Chew Chiau Ee <chiau.ee.chew@intel.com>
9 * Author: Alan Cox <alan@linux.intel.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/io.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
20 #include "pwm-lpss.h"
22 #define PWM 0x00000000
23 #define PWM_ENABLE BIT(31)
24 #define PWM_SW_UPDATE BIT(30)
25 #define PWM_BASE_UNIT_SHIFT 8
26 #define PWM_BASE_UNIT_MASK 0x00ffff00
27 #define PWM_ON_TIME_DIV_MASK 0x000000ff
28 #define PWM_DIVISION_CORRECTION 0x2
29 #define PWM_LIMIT (0x8000 + PWM_DIVISION_CORRECTION)
30 #define NSECS_PER_SEC 1000000000UL
32 struct pwm_lpss_chip {
33 struct pwm_chip chip;
34 void __iomem *regs;
35 unsigned long clk_rate;
38 /* BayTrail */
39 const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
40 .clk_rate = 25000000
42 EXPORT_SYMBOL_GPL(pwm_lpss_byt_info);
44 /* Braswell */
45 const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
46 .clk_rate = 19200000
48 EXPORT_SYMBOL_GPL(pwm_lpss_bsw_info);
50 static inline struct pwm_lpss_chip *to_lpwm(struct pwm_chip *chip)
52 return container_of(chip, struct pwm_lpss_chip, chip);
55 static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm,
56 int duty_ns, int period_ns)
58 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
59 u8 on_time_div;
60 unsigned long c;
61 unsigned long long base_unit, freq = NSECS_PER_SEC;
62 u32 ctrl;
64 do_div(freq, period_ns);
66 /* The equation is: base_unit = ((freq / c) * 65536) + correction */
67 base_unit = freq * 65536;
69 c = lpwm->clk_rate;
70 if (!c)
71 return -EINVAL;
73 do_div(base_unit, c);
74 base_unit += PWM_DIVISION_CORRECTION;
75 if (base_unit > PWM_LIMIT)
76 return -EINVAL;
78 if (duty_ns <= 0)
79 duty_ns = 1;
80 on_time_div = 255 - (255 * duty_ns / period_ns);
82 ctrl = readl(lpwm->regs + PWM);
83 ctrl &= ~(PWM_BASE_UNIT_MASK | PWM_ON_TIME_DIV_MASK);
84 ctrl |= (u16) base_unit << PWM_BASE_UNIT_SHIFT;
85 ctrl |= on_time_div;
86 /* request PWM to update on next cycle */
87 ctrl |= PWM_SW_UPDATE;
88 writel(ctrl, lpwm->regs + PWM);
90 return 0;
93 static int pwm_lpss_enable(struct pwm_chip *chip, struct pwm_device *pwm)
95 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
96 u32 ctrl;
98 ctrl = readl(lpwm->regs + PWM);
99 writel(ctrl | PWM_ENABLE, lpwm->regs + PWM);
101 return 0;
104 static void pwm_lpss_disable(struct pwm_chip *chip, struct pwm_device *pwm)
106 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
107 u32 ctrl;
109 ctrl = readl(lpwm->regs + PWM);
110 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
113 static const struct pwm_ops pwm_lpss_ops = {
114 .config = pwm_lpss_config,
115 .enable = pwm_lpss_enable,
116 .disable = pwm_lpss_disable,
117 .owner = THIS_MODULE,
120 struct pwm_lpss_chip *pwm_lpss_probe(struct device *dev, struct resource *r,
121 const struct pwm_lpss_boardinfo *info)
123 struct pwm_lpss_chip *lpwm;
124 int ret;
126 lpwm = devm_kzalloc(dev, sizeof(*lpwm), GFP_KERNEL);
127 if (!lpwm)
128 return ERR_PTR(-ENOMEM);
130 lpwm->regs = devm_ioremap_resource(dev, r);
131 if (IS_ERR(lpwm->regs))
132 return ERR_CAST(lpwm->regs);
134 lpwm->clk_rate = info->clk_rate;
135 lpwm->chip.dev = dev;
136 lpwm->chip.ops = &pwm_lpss_ops;
137 lpwm->chip.base = -1;
138 lpwm->chip.npwm = 1;
140 ret = pwmchip_add(&lpwm->chip);
141 if (ret) {
142 dev_err(dev, "failed to add PWM chip: %d\n", ret);
143 return ERR_PTR(ret);
146 return lpwm;
148 EXPORT_SYMBOL_GPL(pwm_lpss_probe);
150 int pwm_lpss_remove(struct pwm_lpss_chip *lpwm)
152 u32 ctrl;
154 ctrl = readl(lpwm->regs + PWM);
155 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
157 return pwmchip_remove(&lpwm->chip);
159 EXPORT_SYMBOL_GPL(pwm_lpss_remove);
161 MODULE_DESCRIPTION("PWM driver for Intel LPSS");
162 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
163 MODULE_LICENSE("GPL v2");