Home
last modified time | relevance | path

Searched refs:pwms (Results 1 – 25 of 539) sorted by relevance

12345678910>>...22

/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pwm/
H A Dpwm.txt16 PWM properties should be named "pwms". The exact meaning of each pwms
19 each of the PWM devices listed in the "pwms" property. If no "pwm-names"
24 pwm_get() call to an index into the list given by the "pwms" property.
36 pwms = <&pwm 0 5000000>;
53 pwms = <&pwm 0 5000000 PWM_POLARITY_INVERTED>;
H A Datmel-pwm.txt26 pwms = <&pwm0 3 5000 0>
32 pwms = <&pwm0 1 5000 1>
H A Dpwm-lp3943.txt44 pwms = <&pwm3943 0 10000>;
55 pwms = <&pwm3943 1 10000>;
/OK3568_Linux_fs/u-boot/doc/device-tree-bindings/pwm/
H A Dpwm.txt16 PWM properties should be named "pwms". The exact meaning of each pwms
19 each of the PWM devices listed in the "pwms" property. If no "pwm-names"
24 pwm_get() call to an index into the list given by the "pwms" property.
36 pwms = <&pwm 0 5000000>;
53 pwms = <&pwm 0 5000000 PWM_POLARITY_INVERTED>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/leds/
H A Dleds-pwm.txt10 - pwms : PWM property to point to the PWM device (phandle)/port (id) and to
13 For the pwms and pwm-names property please refer to:
41 pwms = <&twl_pwm 0 7812500>;
47 pwms = <&twl_pwmled 0 7812500>;
/OK3568_Linux_fs/kernel/arch/riscv/boot/dts/sifive/
H A Dhifive-unleashed-a00.dts56 pwms = <&pwm0 0 7812500 PWM_POLARITY_INVERTED>;
64 pwms = <&pwm0 1 7812500 PWM_POLARITY_INVERTED>;
72 pwms = <&pwm0 2 7812500 PWM_POLARITY_INVERTED>;
80 pwms = <&pwm0 3 7812500 PWM_POLARITY_INVERTED>;
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dat91-kizbox.dts56 pwms = <&tcb_pwm 2 10000000 PWM_POLARITY_INVERTED>;
63 pwms = <&tcb_pwm 4 10000000 PWM_POLARITY_INVERTED>;
70 pwms = <&tcb_pwm 0 10000000 PWM_POLARITY_INVERTED>;
77 pwms = <&tcb_pwm 1 10000000 PWM_POLARITY_INVERTED>;
H A Dat91-kizboxmini-common.dtsi62 pwms = <&pwm0 2 10000000 0>;
70 pwms = <&pwm0 0 10000000 0>;
77 pwms = <&pwm0 1 10000000 0>;
H A Dstm32mp157c-lxa-mc1.dts29 pwms = <&backlight_pwm 1 100000 PWM_POLARITY_INVERTED>;
54 pwms = <&leds_pwm 1 1000000 0>;
61 pwms = <&leds_pwm 2 1000000 0>;
68 pwms = <&leds_pwm 3 1000000 0>;
H A Dexynos54xx-odroidxu-leds.dtsi19 pwms = <&pwm 1 2000000 0>;
31 pwms = <&pwm 2 2000000 0>;
H A Dbcm53016-meraki-mr32.dts67 pwms = <&pwm 0 50000 0>;
75 pwms = <&pwm 1 50000 0>;
83 pwms = <&pwm 2 50000 0>;
H A Dat91-kizbox3_common.dtsi76 pwms = <&pwm0 0 10000000 0>;
84 pwms = <&pwm0 1 10000000 0>;
92 pwms = <&pwm0 2 10000000 0>;
99 pwms = <&pwm0 3 10000000 0>;
/OK3568_Linux_fs/kernel/drivers/pwm/
H A Dpwm-gpio.c50 enum pwm_polarity polarity = pwm_get_polarity(pc->chip.pwms); in gpio_pwm_off()
57 enum pwm_polarity polarity = pwm_get_polarity(pc->chip.pwms); in gpio_pwm_on()
67 if (!pwm_is_enabled(pc->chip.pwms)) { in gpio_pwm_timer()
114 if (pwm_is_enabled(pc->chip.pwms)) in gpio_pwm_enable()
H A Dpwm-lpc32xx.c124 val = readl(lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); in lpc32xx_pwm_probe()
126 writel(val, lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); in lpc32xx_pwm_probe()
145 pwm_disable(&lpc32xx->chip.pwms[i]); in lpc32xx_pwm_remove()
H A Dpwm-atmel-tcb.c52 struct atmel_tcb_pwm_device *pwms[NPWM]; member
125 tcbpwmc->pwms[pwm->hwpwm] = tcbpwm; in atmel_tcb_pwm_request()
137 tcbpwmc->pwms[pwm->hwpwm] = NULL; in atmel_tcb_pwm_free()
334 atcbpwm = tcbpwmc->pwms[pwm->hwpwm + 1]; in atmel_tcb_pwm_config()
336 atcbpwm = tcbpwmc->pwms[pwm->hwpwm - 1]; in atmel_tcb_pwm_config()
H A Dcore.c68 struct pwm_device *pwm = &chip->pwms[i]; in free_pwms()
75 kfree(chip->pwms); in free_pwms()
76 chip->pwms = NULL; in free_pwms()
292 chip->pwms = kcalloc(chip->npwm, sizeof(*pwm), GFP_KERNEL); in pwmchip_add_with_polarity()
293 if (!chip->pwms) { in pwmchip_add_with_polarity()
301 pwm = &chip->pwms[i]; in pwmchip_add_with_polarity()
366 struct pwm_device *pwm = &chip->pwms[i]; in pwmchip_remove()
445 pwm = &chip->pwms[index]; in pwm_request_from_chip()
1278 struct pwm_device *pwm = &chip->pwms[i]; in pwm_dbg_show()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/hwmon/
H A Dpwm-fan.txt5 - pwms : the PWM that is used to control the PWM fan
30 pwms = <&pwm 0 10000 0>;
57 pwms = <&pwm 0 40000 0>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/
H A Dnokia,n900-ir5 - pwms: specifies PWM used for IR signal transmission.
19 pwms = <&pwm9 0 26316 0>; /* 38000 Hz */
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/leds/irled/
H A Dpwm-ir-tx.txt6 - pwms : PWM property to point to the PWM device (phandle)/port (id)
12 pwms = <&pwm0 0 10000000>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/input/
H A Dpwm-beeper.txt7 - pwms: phandle to the physical PWM device
22 pwms = <&pwm0>;
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/amlogic/
H A Dmeson-g12b-odroid-n2-plus.dts22 pwms = <&pwm_ab 0 1500 0>;
29 pwms = <&pwm_AO_cd 1 1500 0>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/clock/
H A Dpwm-clock.txt11 - pwms : from common PWM binding; this determines the clock frequency
25 pwms = <&pwm2 0 40>; /* 1 / 40 ns = 25 MHz */
/OK3568_Linux_fs/kernel/drivers/hwmon/
H A Dabituguru.c177 static int pwms; variable
178 module_param(pwms, int, 0);
179 MODULE_PARM_DESC(pwms, "Number of PWMs on the uGuru "
246 u8 pwms; /* actual number of pwms found */ member
689 if (pwms > 0 && pwms <= ABIT_UGURU_MAX_PWMS) { in abituguru_detect_no_pwms()
690 data->pwms = pwms; in abituguru_detect_no_pwms()
692 "\"pwms\" module param\n", (int)data->pwms); in abituguru_detect_no_pwms()
776 data->pwms = i; in abituguru_detect_no_pwms()
777 ABIT_UGURU_DEBUG(2, " found: %d PWM outputs\n", (int)data->pwms); in abituguru_detect_no_pwms()
1379 for (i = 0; i < data->pwms; i++) { in abituguru_probe()
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3588-vehicle-maxim-serdes.dtsi21 pwms = <&pwm6 0 1000000 0>;
29 pwms = <&pwm10 0 1000000 0>;
37 pwms = <&pwm12 0 1000000 0>;
45 pwms = <&pwm13 0 1000000 0>;
53 pwms = <&pwm11 0 1000000 0>;
61 pwms = <&pwm14 0 1000000 0>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/regulator/
H A Dpwm-regulator.txt30 - pwms: PWM specification (See: ../pwm/pwm.txt)
63 pwms = <&pwm1 0 8448 0>;
80 pwms = <&pwm1 0 8448 0>;

12345678910>>...22