aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pwm.h
AgeCommit message (Expand)AuthorFilesLines
2024-04-30pwm: Make pwmchip_[sg]et_drvdata() a wrapper around dev_set_drvdata()Uwe Kleine-König1-12/+2
2024-04-26pwm: Add a struct device to struct pwm_chipUwe Kleine-König1-2/+3
2024-04-26pwm: Ensure a struct pwm has the same lifetime as its pwm_chipUwe Kleine-König1-1/+1
2024-04-26pwm: Move contents of sysfs.c into core.cUwe Kleine-König1-13/+0
2024-04-26pwm: Ensure that pwm_chips are allocated using pwmchip_alloc()Uwe Kleine-König1-0/+2
2024-02-15pwm: Provide pwmchip_alloc() function and a devm variant of itUwe Kleine-König1-0/+22
2024-02-15pwm: Provide wrappers for storing and getting driver private dataUwe Kleine-König1-0/+20
2024-02-15pwm: Provide an inline function to get the parent device of a given chipUwe Kleine-König1-0/+5
2024-02-15pwm: Drop useless member .of_pwm_n_cells of struct pwm_chipUwe Kleine-König1-2/+0
2024-01-05pwm: linux/pwm.h: fix Excess kernel-doc description warningRandy Dunlap1-1/+0
2024-01-05pwm: Add pwm_apply_state() compatibility stubThierry Reding1-0/+7
2023-12-20pwm: Drop two unused API functionsUwe Kleine-König1-12/+0
2023-12-20pwm: Make it possible to apply PWM changes in atomic contextSean Young1-0/+25
2023-12-20pwm: Replace ENOTSUPP with EOPNOTSUPPSean Young1-2/+2
2023-12-20pwm: Rename pwm_apply_state() to pwm_apply_might_sleep()Sean Young1-14/+14
2023-12-20pwm: Update kernel doc for struct pwm_chipUwe Kleine-König1-2/+1
2023-12-20pwm: Replace PWM chip unique base by unique IDUwe Kleine-König1-2/+1
2023-12-20pwm: Drop unused member "pwm" from struct pwm_deviceUwe Kleine-König1-1/+0
2023-11-10pwm: Fix double shift bugDan Carpenter1-2/+2
2023-10-13pwm: Drop pwm_[sg]et_chip_data()Uwe Kleine-König1-14/+0
2023-10-13pwm: Manage owner assignment implicitly for driversUwe Kleine-König1-4/+6
2023-07-20pwm: Use a consistent name for pwm_chip pointers in the coreUwe Kleine-König1-3/+3
2023-04-13pwm: Delete deprecated functions pwm_request() and pwm_free()Uwe Kleine-König1-13/+0
2023-01-30pwm: Move pwm_capture() dummy to restore orderGeert Uytterhoeven1-7/+7
2022-12-21Merge tag 'pwm/for-6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-2/+2
2022-12-06pwm: Make .get_state() callback return an error codeUwe Kleine-König1-2/+2
2022-11-22pwm: Add a stub for devm_pwmchip_add()Andy Shevchenko1-0/+5
2022-09-19pwm: core: Make of_pwm_get() staticAndy Shevchenko1-10/+0
2022-09-19pwm: core: Get rid of unused devm_of_pwm_get()Andy Shevchenko1-10/+0
2022-06-22pwm: Drop unused forward declaration from pwm.hUwe Kleine-König1-2/+0
2022-06-22pwm: Reorder header file to get rid of struct pwm_capture forward declarationUwe Kleine-König1-11/+10
2022-06-22pwm: Drop support for legacy driversUwe Kleine-König1-12/+0
2021-11-18Merge drm/drm-next into drm-misc-nextThomas Zimmermann1-0/+13
2021-11-05pwm: Make it explicit that pwm_apply_state() might sleepUwe Kleine-König1-0/+4
2021-11-05pwm: Add might_sleep() annotations for !CONFIG_PWM API functionsUwe Kleine-König1-0/+9
2021-10-27pwm: Introduce single-PWM of_xlate functionBjorn Andersson1-0/+2
2021-09-02pwm: Make pwmchip_remove() return voidUwe Kleine-König1-1/+1
2021-06-30pwm: core: Remove unused devm_pwm_put()Andy Shevchenko1-5/+0
2021-06-28pwm: Add a device-managed function to add PWM chipsUwe Kleine-König1-0/+3
2021-06-04pwm: core: Support new usage_power setting in PWM stateClemens Gruber1-0/+7
2021-04-09pwm: Clarify which state pwm_get_state() returnsUwe Kleine-König1-0/+5
2021-03-22pwm: Drop function pwmchip_add_with_polarity()Uwe Kleine-König1-2/+0
2020-12-17pwm: Remove unused function pwmchip_add_inversed()Uwe Kleine-König1-5/+0
2020-06-17pwm: Convert period and duty cycle to u64Guru Das Srinagesh1-6/+6
2020-03-30pwm: Implement some checks for lowlevel driversUwe Kleine-König1-1/+3
2019-10-21pwm: Update comment on struct pwm_ops::applyRasmus Villemoes1-4/+1
2019-09-21pwm: Ensure pwm_apply_state() doesn't modify the state argumentUwe Kleine-König1-2/+2
2019-06-26pwm: Add support referencing PWMs from ACPINikolaus Voss1-0/+10
2019-06-25pwm: Add consumer device linkFabrice Gasnier1-2/+4
2019-03-20pwm: Fix deadlock warning when removing PWM devicePhong Hoang1-5/+0
2019-01-10pwm: Rearrange structures to group members by purposeUwe Kleine-König1-15/+18
2019-01-10pwm: Drop per-chip dbg_show callbackUwe Kleine-König1-4/+0
2018-12-12pwm: Drop legacy wrapper for changing polarityUwe Kleine-König1-42/+0
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman1-0/+1
2017-01-30pwm: Try to load modules during pwm_get()Hans de Goede1-8/+15
2017-01-04pwm: Remove .can_sleep from struct pwm_chipThierry Reding1-3/+0
2017-01-04pwm: Remove pwm_can_sleep()Thierry Reding1-7/+0
2016-09-05pwm: Unexport children before chip removalDavid Hsu1-0/+5
2016-07-25Merge branch 'for-4.8/capture' into for-nextThierry Reding1-0/+24
2016-07-25Merge branch 'for-4.8/core' into for-nextThierry Reding1-1/+88
2016-07-08pwm: Remove gratuitous blank lineThierry Reding1-1/+0
2016-07-08pwm: Add relative duty cycle manipulation helpersBoris Brezillon1-0/+55
2016-07-08pwm: Add a helper to prepare a new PWM stateBoris Brezillon1-0/+33
2016-06-23pwm: Fix pwm_apply_args()Boris Brezillon1-6/+10
2016-06-10pwm: Add PWM capture supportLee Jones1-0/+24
2016-06-10pwm: Improve args checking in pwm_apply_state()Brian Norris1-0/+3
2016-05-17pwm: Add core infrastructure to allow atomic updatesBoris Brezillon1-85/+184
2016-05-17pwm: Add hardware readout infrastructureBoris Brezillon1-0/+28
2016-05-17pwm: Move the enabled/disabled info into pwm_stateBoris Brezillon1-3/+8
2016-05-17pwm: Introduce the pwm_state conceptBoris Brezillon1-12/+42
2016-05-17pwm: Keep PWM state in sync with hardware stateBoris Brezillon1-1/+0
2016-05-17pwm: Get rid of pwm->lockBoris BREZILLON1-2/+0
2016-05-03pwm: Introduce the pwm_args conceptBoris Brezillon1-0/+33
2015-11-10pwm: Set enable state properly on failed call to enableJonathan Richardson1-0/+3
2015-08-17pwm: Clean up kerneldocThierry Reding1-0/+14
2015-08-17pwm: Remove useless whitespaceThierry Reding1-39/+32
2015-07-20pwm: Add pwm_get_polarity() helper functionBoris Brezillon1-0/+5
2015-07-20pwm: Constify PWM device where possibleBoris Brezillon1-2/+2
2015-07-20pwm: Add the pwm_is_enabled() helperBoris Brezillon1-0/+5
2015-06-12pwm: Add pwmchip_add_with_polarity() APITim Kryger1-0/+7
2015-05-06pwm: Add support to remove registered consumer lookup tablesShobhit Kumar1-0/+5
2014-05-21pwm: modify PWM_LOOKUP to initialize all struct pwm_lookup membersAlexandre Belloni1-1/+3
2014-05-21pwm: add period and polarity to struct pwm_lookupAlexandre Belloni1-0/+2
2014-02-10pwm: Remove obsolete HAVE_PWM Kconfig symbolSascha Hauer1-1/+1
2013-06-21pwm: Add sysfs interfaceH Hartley Sweeten1-1/+28
2013-02-26Merge tag 'for-3.9-rc1' of git://gitorious.org/linux-pwm/linux-pwmLinus Torvalds1-0/+10
2013-02-01pwm: Add devm_of_pwm_get() as exported API for usersPeter Ujfalusi1-0/+9
2013-02-01pwm: core: Rename of_pwm_request() to of_pwm_get() and export itPeter Ujfalusi1-0/+7
2013-02-01pwm: Correct parameter name in header for *pwm_get() functionsPeter Ujfalusi1-2/+2
2013-01-30pwm: Add pwm_can_sleep() as exported API to usersFlorian Vaussard1-0/+10
2012-11-22pwm: Device tree support for PWM polarityPhilip, Avinash1-0/+3
2012-09-20pwm: Fix compilation error when CONFIG_PWM is not definedTushar Behera1-2/+80
2012-09-10pwm: add devm_pwm_get() and devm_pwm_put()Alexandre Courbot1-0/+3
2012-09-10pwm: Add support for configuring the PWM polarityPhilip, Avinash1-0/+23
2012-06-15pwm: Add device tree supportThierry Reding1-0/+6
2012-06-15pwm: Add table-based lookup for static mappingsThierry Reding1-0/+22
2012-06-15pwm: Add debugfs interfaceThierry Reding1-0/+6
2012-06-15pwm: Allow chips to support multiple PWMsThierry Reding1-13/+58
2012-06-15pwm: Add PWM framework supportSascha Hauer1-0/+38
2009-03-30trivial: PWM: fix of #endif commentMark Vels1-1/+1
2008-05-19[ARM] pxa: Add bare bones PWM APIRussell King1-0/+31