Home
last modified time | relevance | path

Searched refs:pwm_chip (Results 1 – 25 of 65) sorted by relevance

123

/linux/drivers/pwm/
A Dpwm-hibvt.c36 struct pwm_chip chip;
192 struct hibvt_pwm_chip *pwm_chip; in hibvt_pwm_probe() local
195 pwm_chip = devm_kzalloc(&pdev->dev, sizeof(*pwm_chip), GFP_KERNEL); in hibvt_pwm_probe()
196 if (pwm_chip == NULL) in hibvt_pwm_probe()
200 if (IS_ERR(pwm_chip->clk)) { in hibvt_pwm_probe()
202 PTR_ERR(pwm_chip->clk)); in hibvt_pwm_probe()
203 return PTR_ERR(pwm_chip->clk); in hibvt_pwm_probe()
207 pwm_chip->chip.dev = &pdev->dev; in hibvt_pwm_probe()
209 pwm_chip->soc = soc; in hibvt_pwm_probe()
212 if (IS_ERR(pwm_chip->base)) in hibvt_pwm_probe()
[all …]
A Dpwm-img.c63 struct pwm_chip chip;
101 if (period_ns < pwm_chip->min_period_ns || in img_pwm_config()
102 period_ns > pwm_chip->max_period_ns) { in img_pwm_config()
211 clk_disable_unprepare(pwm_chip->pwm_clk); in img_pwm_runtime_suspend()
212 clk_disable_unprepare(pwm_chip->sys_clk); in img_pwm_runtime_suspend()
334 pwmchip_remove(&pwm_chip->chip); in img_pwm_remove()
352 pwm_chip->suspend_ch_cfg[i] = img_pwm_readl(pwm_chip, in img_pwm_suspend()
355 pwm_chip->suspend_ctrl_cfg = img_pwm_readl(pwm_chip, PWM_CTRL_CFG); in img_pwm_suspend()
373 img_pwm_writel(pwm_chip, PWM_CH_CFG(i), in img_pwm_resume()
374 pwm_chip->suspend_ch_cfg[i]); in img_pwm_resume()
[all …]
A Dpwm-sl28cpld.c83 struct pwm_chip pwm_chip; member
88 container_of(_chip, struct sl28cpld_pwm, pwm_chip)
90 static void sl28cpld_pwm_get_state(struct pwm_chip *chip, in sl28cpld_pwm_get_state()
120 static int sl28cpld_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in sl28cpld_pwm_apply()
203 struct pwm_chip *chip; in sl28cpld_pwm_probe()
229 chip = &priv->pwm_chip; in sl28cpld_pwm_probe()
234 ret = devm_pwmchip_add(&pdev->dev, &priv->pwm_chip); in sl28cpld_pwm_probe()
A Dpwm-twl-led.c49 struct pwm_chip chip;
53 static inline struct twl_pwmled_chip *to_twl(struct pwm_chip *chip) in to_twl()
58 static int twl4030_pwmled_config(struct pwm_chip *chip, struct pwm_device *pwm, in twl4030_pwmled_config()
92 static int twl4030_pwmled_enable(struct pwm_chip *chip, struct pwm_device *pwm) in twl4030_pwmled_enable()
116 static void twl4030_pwmled_disable(struct pwm_chip *chip, in twl4030_pwmled_disable()
140 static int twl6030_pwmled_config(struct pwm_chip *chip, struct pwm_device *pwm, in twl6030_pwmled_config()
157 static int twl6030_pwmled_enable(struct pwm_chip *chip, struct pwm_device *pwm) in twl6030_pwmled_enable()
183 static void twl6030_pwmled_disable(struct pwm_chip *chip, in twl6030_pwmled_disable()
209 static int twl6030_pwmled_request(struct pwm_chip *chip, struct pwm_device *pwm) in twl6030_pwmled_request()
235 static void twl6030_pwmled_free(struct pwm_chip *chip, struct pwm_device *pwm) in twl6030_pwmled_free()
A Dpwm-cros-ec.c25 struct pwm_chip chip;
36 static inline struct cros_ec_pwm_device *pwm_to_cros_ec_pwm(struct pwm_chip *c) in pwm_to_cros_ec_pwm()
41 static int cros_ec_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in cros_ec_pwm_request()
54 static void cros_ec_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in cros_ec_pwm_free()
115 static int cros_ec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in cros_ec_pwm_apply()
145 static void cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm, in cros_ec_pwm_get_state()
177 cros_ec_pwm_xlate(struct pwm_chip *pc, const struct of_phandle_args *args) in cros_ec_pwm_xlate()
240 struct pwm_chip *chip; in cros_ec_pwm_probe()
281 struct pwm_chip *chip = &ec_pwm->chip; in cros_ec_pwm_remove()
A Dpwm-clps711x.c15 struct pwm_chip chip;
21 static inline struct clps711x_chip *to_clps711x_chip(struct pwm_chip *chip) in to_clps711x_chip()
49 static int clps711x_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in clps711x_pwm_request()
63 static int clps711x_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in clps711x_pwm_config()
78 static int clps711x_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in clps711x_pwm_enable()
89 static void clps711x_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in clps711x_pwm_disable()
104 static struct pwm_device *clps711x_pwm_xlate(struct pwm_chip *chip, in clps711x_pwm_xlate()
A Dcore.c53 static void free_pwms(struct pwm_chip *chip) in free_pwms()
71 struct pwm_chip *chip; in pwmchip_find_by_name()
242 int pwmchip_add(struct pwm_chip *chip) in pwmchip_add()
326 struct pwm_chip *chip = data; in devm_pwmchip_remove()
428 struct pwm_chip *chip = pwm->chip; in pwm_apply_state_debug()
532 struct pwm_chip *chip; in pwm_apply_state()
711 struct pwm_chip *chip; in fwnode_to_pwmchip()
778 struct pwm_chip *pc; in of_pwm_get()
858 struct pwm_chip *chip; in acpi_pwm_get()
941 struct pwm_chip *chip; in pwm_get()
[all …]
A Dpwm-imx1.c32 struct pwm_chip chip;
37 static int pwm_imx1_clk_prepare_enable(struct pwm_chip *chip) in pwm_imx1_clk_prepare_enable()
55 static void pwm_imx1_clk_disable_unprepare(struct pwm_chip *chip) in pwm_imx1_clk_disable_unprepare()
63 static int pwm_imx1_config(struct pwm_chip *chip, in pwm_imx1_config()
94 static int pwm_imx1_enable(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_imx1_enable()
111 static void pwm_imx1_disable(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_imx1_disable()
A Dpwm-berlin.c49 struct pwm_chip chip;
54 static inline struct berlin_pwm_chip *to_berlin_pwm_chip(struct pwm_chip *chip) in to_berlin_pwm_chip()
72 static int berlin_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in berlin_pwm_request()
83 static void berlin_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in berlin_pwm_free()
90 static int berlin_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in berlin_pwm_config()
128 static int berlin_pwm_set_polarity(struct pwm_chip *chip, in berlin_pwm_set_polarity()
147 static int berlin_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in berlin_pwm_enable()
159 static void berlin_pwm_disable(struct pwm_chip *chip, in berlin_pwm_disable()
170 static int berlin_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in berlin_pwm_apply()
A Dpwm-twl.c49 struct pwm_chip chip;
55 static inline struct twl_pwm_chip *to_twl(struct pwm_chip *chip) in to_twl()
60 static int twl_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in twl_pwm_config()
94 static int twl4030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in twl4030_pwm_enable()
124 static void twl4030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in twl4030_pwm_disable()
153 static int twl4030_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in twl4030_pwm_request()
191 static void twl4030_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in twl4030_pwm_free()
221 static int twl6030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in twl6030_pwm_enable()
244 static void twl6030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in twl6030_pwm_disable()
A Dpwm-ntxec.c29 struct pwm_chip chip;
32 static struct ntxec_pwm *ntxec_pwm_from_chip(struct pwm_chip *chip) in ntxec_pwm_from_chip()
58 static int ntxec_pwm_set_raw_period_and_duty_cycle(struct pwm_chip *chip, in ntxec_pwm_set_raw_period_and_duty_cycle()
84 static int ntxec_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm_dev, in ntxec_pwm_apply()
142 struct pwm_chip *chip; in ntxec_pwm_probe()
A Dpwm-pxa.c44 struct pwm_chip chip;
51 static inline struct pxa_pwm_chip *to_pxa_pwm_chip(struct pwm_chip *chip) in to_pxa_pwm_chip()
60 static int pxa_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in pxa_pwm_config()
104 static int pxa_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in pxa_pwm_enable()
111 static void pxa_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in pxa_pwm_disable()
152 pxa_pwm_of_xlate(struct pwm_chip *pc, const struct of_phandle_args *args) in pxa_pwm_of_xlate()
A Dpwm-jz4740.c28 struct pwm_chip chip;
32 static inline struct jz4740_pwm_chip *to_jz4740(struct pwm_chip *chip) in to_jz4740()
50 static int jz4740_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in jz4740_pwm_request()
78 static void jz4740_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in jz4740_pwm_free()
86 static int jz4740_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in jz4740_pwm_enable()
100 static void jz4740_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in jz4740_pwm_disable()
123 static int jz4740_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in jz4740_pwm_apply()
A Dpwm-sifive.c45 struct pwm_chip chip;
56 struct pwm_sifive_ddata *pwm_sifive_chip_to_ddata(struct pwm_chip *c) in pwm_sifive_chip_to_ddata()
61 static int pwm_sifive_request(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_sifive_request()
72 static void pwm_sifive_free(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_sifive_free()
109 static void pwm_sifive_get_state(struct pwm_chip *chip, struct pwm_device *pwm, in pwm_sifive_get_state()
130 static int pwm_sifive_enable(struct pwm_chip *chip, bool enable) in pwm_sifive_enable()
149 static int pwm_sifive_apply(struct pwm_chip *chip, struct pwm_device *pwm, in pwm_sifive_apply()
234 struct pwm_chip *chip; in pwm_sifive_probe()
A Dpwm-lpc18xx-sct.c93 struct pwm_chip chip;
107 to_lpc18xx_pwm_chip(struct pwm_chip *chip) in to_lpc18xx_pwm_chip()
145 static void lpc18xx_pwm_config_period(struct pwm_chip *chip, int period_ns) in lpc18xx_pwm_config_period()
162 static void lpc18xx_pwm_config_duty(struct pwm_chip *chip, in lpc18xx_pwm_config_duty()
181 static int lpc18xx_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in lpc18xx_pwm_config()
226 static int lpc18xx_pwm_set_polarity(struct pwm_chip *chip, in lpc18xx_pwm_set_polarity()
233 static int lpc18xx_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in lpc18xx_pwm_enable()
268 static void lpc18xx_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in lpc18xx_pwm_disable()
279 static int lpc18xx_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in lpc18xx_pwm_request()
300 static void lpc18xx_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in lpc18xx_pwm_free()
A Dpwm-lp3943.c23 struct pwm_chip chip;
28 static inline struct lp3943_pwm *to_lp3943_pwm(struct pwm_chip *_chip) in to_lp3943_pwm()
61 static int lp3943_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in lp3943_pwm_request()
87 static void lp3943_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in lp3943_pwm_free()
95 static int lp3943_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in lp3943_pwm_config()
153 static int lp3943_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in lp3943_pwm_enable()
172 static void lp3943_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in lp3943_pwm_disable()
A Dpwm-ep93xx.c39 struct pwm_chip chip;
42 static inline struct ep93xx_pwm *to_ep93xx_pwm(struct pwm_chip *chip) in to_ep93xx_pwm()
47 static int ep93xx_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in ep93xx_pwm_request()
54 static void ep93xx_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in ep93xx_pwm_free()
61 static int ep93xx_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in ep93xx_pwm_apply()
A Dpwm-mediatek.c54 struct pwm_chip chip;
67 to_pwm_mediatek_chip(struct pwm_chip *chip) in to_pwm_mediatek_chip()
72 static int pwm_mediatek_clk_enable(struct pwm_chip *chip, in pwm_mediatek_clk_enable()
100 static void pwm_mediatek_clk_disable(struct pwm_chip *chip, in pwm_mediatek_clk_disable()
117 static int pwm_mediatek_config(struct pwm_chip *chip, struct pwm_device *pwm, in pwm_mediatek_config()
172 static int pwm_mediatek_enable(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_mediatek_enable()
189 static void pwm_mediatek_disable(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_mediatek_disable()
A Dpwm-spear.c56 struct pwm_chip chip;
59 static inline struct spear_pwm_chip *to_spear_pwm_chip(struct pwm_chip *chip) in to_spear_pwm_chip()
77 static int spear_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in spear_pwm_config()
137 static int spear_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in spear_pwm_enable()
154 static void spear_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in spear_pwm_disable()
166 static int spear_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in spear_pwm_apply()
A Dpwm-imx-tpm.c60 struct pwm_chip chip;
76 to_imx_tpm_pwm_chip(struct pwm_chip *chip) in to_imx_tpm_pwm_chip()
87 static int pwm_imx_tpm_round_state(struct pwm_chip *chip, in pwm_imx_tpm_round_state()
135 static void pwm_imx_tpm_get_state(struct pwm_chip *chip, in pwm_imx_tpm_get_state()
170 static int pwm_imx_tpm_apply_hw(struct pwm_chip *chip, in pwm_imx_tpm_apply_hw()
288 static int pwm_imx_tpm_apply(struct pwm_chip *chip, in pwm_imx_tpm_apply()
308 static int pwm_imx_tpm_request(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_imx_tpm_request()
319 static void pwm_imx_tpm_free(struct pwm_chip *chip, struct pwm_device *pwm) in pwm_imx_tpm_free()
A Dpwm-tiecap.c35 struct pwm_chip chip;
41 static inline struct ecap_pwm_chip *to_ecap_pwm_chip(struct pwm_chip *chip) in to_ecap_pwm_chip()
50 static int ecap_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in ecap_pwm_config()
108 static int ecap_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm, in ecap_pwm_set_polarity()
132 static int ecap_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in ecap_pwm_enable()
151 static void ecap_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in ecap_pwm_disable()
168 static int ecap_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in ecap_pwm_apply()
A Dpwm-bcm2835.c27 struct pwm_chip chip;
33 static inline struct bcm2835_pwm *to_bcm2835_pwm(struct pwm_chip *chip) in to_bcm2835_pwm()
38 static int bcm2835_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in bcm2835_pwm_request()
51 static void bcm2835_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in bcm2835_pwm_free()
61 static int bcm2835_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm, in bcm2835_pwm_apply()
A Dsysfs.c314 struct pwm_chip *chip = dev_get_drvdata(parent); in export_store()
342 struct pwm_chip *chip = dev_get_drvdata(parent); in unexport_store()
362 const struct pwm_chip *chip = dev_get_drvdata(parent); in npwm_show()
374 ATTRIBUTE_GROUPS(pwm_chip);
414 struct pwm_chip *chip = dev_get_drvdata(parent); in pwm_class_resume_npwm()
438 struct pwm_chip *chip = dev_get_drvdata(parent); in pwm_class_suspend()
469 struct pwm_chip *chip = dev_get_drvdata(parent); in pwm_class_resume()
488 void pwmchip_sysfs_export(struct pwm_chip *chip) in pwmchip_sysfs_export()
504 void pwmchip_sysfs_unexport(struct pwm_chip *chip) in pwmchip_sysfs_unexport()
/linux/include/linux/
A Dpwm.h12 struct pwm_chip;
87 struct pwm_chip *chip;
274 int (*apply)(struct pwm_chip *chip, struct pwm_device *pwm,
300 struct pwm_chip { struct
306 struct pwm_device * (*of_xlate)(struct pwm_chip *pc, argument
406 int pwmchip_add(struct pwm_chip *chip);
407 void pwmchip_remove(struct pwm_chip *chip);
488 static inline int pwmchip_add(struct pwm_chip *chip) in pwmchip_add()
493 static inline int pwmchip_remove(struct pwm_chip *chip) in pwmchip_remove()
624 void pwmchip_sysfs_export(struct pwm_chip *chip);
[all …]
/linux/drivers/staging/greybus/
A Dpwm.c21 struct pwm_chip chip;
22 struct pwm_chip *pwm;
190 static int gb_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm) in gb_pwm_request()
197 static void gb_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm) in gb_pwm_free()
207 static int gb_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, in gb_pwm_config()
215 static int gb_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm, in gb_pwm_set_polarity()
223 static int gb_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) in gb_pwm_enable()
230 static void gb_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) in gb_pwm_disable()
252 struct pwm_chip *pwm; in gb_pwm_probe()

Completed in 32 milliseconds

123