aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-pcf2127.c
AgeCommit message (Expand)AuthorFilesLines
2023-08-27rtc: pcf2127: remove useless checkAlexandre Belloni1-9/+0
2023-08-17rtc: pcf2127: remove unused function argumentHugo Villeneuve1-6/+3
2023-08-17rtc: pcf2127: add error checking when disabling POR0Hugo Villeneuve1-1/+3
2023-08-17rtc: pcf2127: fix error code in pcf2127_enable_ts()Dan Carpenter1-1/+1
2023-07-27rtc: pcf2127: add UIE support for PCF2131Hugo Villeneuve1-2/+10
2023-07-27rtc: pcf2127: add flag for watchdog register value read supportHugo Villeneuve1-6/+14
2023-07-27rtc: pcf2127: support generic watchdog timing configurationHugo Villeneuve1-9/+55
2023-07-27rtc: pcf2127: adapt time/date registers write sequence for PCF2131Hugo Villeneuve1-1/+34
2023-07-27rtc: pcf2127: add support for PCF2131 interrupts on output INT_AHugo Villeneuve1-0/+35
2023-07-27rtc: pcf2127: add support for PCF2131 RTCHugo Villeneuve1-21/+213
2023-07-27rtc: pcf2127: add support for multiple TS functionsHugo Villeneuve1-67/+201
2023-07-27rtc: pcf2127: adapt for CLKOUT register at any offsetHugo Villeneuve1-2/+5
2023-07-27rtc: pcf2127: adapt for WD registers at any offsetHugo Villeneuve1-4/+10
2023-07-27rtc: pcf2127: adapt for alarm registers at any offsetHugo Villeneuve1-9/+8
2023-07-27rtc: pcf2127: adapt for time/date registers at any offsetHugo Villeneuve1-4/+7
2023-07-27rtc: pcf2127: add variant-specific configuration structureHugo Villeneuve1-19/+79
2023-07-27rtc: pcf2127: remove superfluous commentsHugo Villeneuve1-2/+2
2023-07-27rtc: pcf2127: lower message severity if setting time failsHugo Villeneuve1-2/+1
2023-07-27rtc: pcf2127: improve timestamp reading performanceHugo Villeneuve1-21/+11
2023-07-27rtc: pcf2127: improve rtc_read_time() performanceHugo Villeneuve1-28/+14
2023-06-06rtc: Switch i2c drivers back to use .probe()Uwe Kleine-König1-1/+1
2022-11-15rtc: pcf2127: Convert to .probe_new()Uwe Kleine-König1-11/+11
2022-03-23rtc: pcf2127: set RTC_FEATURE_ALARM_RES_2SAlexandre Belloni1-0/+1
2022-03-23rtc: pcf2127: switch to RTC_FEATURE_UPDATE_INTERRUPTAlexandre Belloni1-1/+1
2022-02-15rtc: pcf2127: fix bug when reading alarm registersHugo Villeneuve1-1/+2
2022-02-15rtc: pcf2127: use IRQ flags obtained from device tree if availableHugo Villeneuve1-1/+12
2022-01-05rtc: pcf2127: Fix typo in commentHugo Villeneuve1-1/+1
2021-07-10rtc: pcf2127: handle timestamp interruptsMian Yousaf Kaukab1-59/+133
2021-06-20rtc: pcf2127: Fix the datasheet URLFabio Estevam1-1/+1
2021-02-13rtc: pcf2127: properly set flag WD_CD for rtc chips(pcf2129, pca2129)Biwen Li1-3/+7
2021-01-26rtc: pcf2127: Run a OTP refresh if not done beforePhilipp Rosenberger1-0/+17
2021-01-26rtc: pcf2127: Disable Power-On Reset OverridePhilipp Rosenberger1-0/+8
2021-01-16rtc: pcf2127: remove pcf2127_rtc_alrm_opsAlexandre Belloni1-8/+3
2020-12-19rtc: pcf2127: only use watchdog when explicitly availableUwe Kleine-König1-1/+2
2020-11-19rtc: rework rtc_register_device() resource managementBartosz Golaszewski1-1/+1
2020-11-19rtc: add devm_ prefix to rtc_nvmem_register()Bartosz Golaszewski1-1/+1
2020-10-27rtc: pcf2127: fix pcf2127_nvmem_read/write() returnsDan Carpenter1-8/+4
2020-10-27rtc: pcf2127: move watchdog initialisation to a separate functionUwe Kleine-König1-25/+31
2020-09-15rtc: pcf2127: fix a bug when not specify interrupts propertyBiwen Li1-2/+2
2020-08-12rtc: pcf2127: fix alarm handlingAlexandre Belloni1-18/+19
2020-08-12rtc: pcf2127: add alarm supportLiam Beguin1-0/+134
2020-08-12rtc: pcf2127: add pca2129 device idLiam Beguin1-0/+3
2020-06-06rtc: pcf2127: watchdog: handle nowayout featureBruno Thomsen1-0/+1
2020-05-11rtc: pcf2127: report battery switch overAlexandre Belloni1-4/+12
2020-05-11rtc: pcf2127: set regmap max_registerAlexandre Belloni1-0/+2
2020-05-11rtc: pcf2127: remove unnecessary #ifdefAlexandre Belloni1-4/+0
2020-05-11rtc: pcf2127: let the core handle rtc rangeAlexandre Belloni1-3/+5
2019-12-18rtc: pcf2127: return meaningful value for RTC_VL_READAlexandre Belloni1-4/+2
2019-10-21rtc: pcf2127: handle boot-enabled watchdog featureMartin Hundebøll1-1/+9
2019-08-27rtc: pcf2127: bugfix: watchdog build dependencyBruno Thomsen1-0/+2
2019-08-27rtc: pcf2127: add tamper detection supportBruno Thomsen1-0/+160
2019-08-27rtc: pcf2127: add watchdog feature supportBruno Thomsen1-0/+118
2019-08-23rtc: pcf2127: bugfix: read rtc disables watchdogBruno Thomsen1-20/+12
2019-08-23rtc: pcf2127: cleanup register and bit definesBruno Thomsen1-26/+33
2019-08-23rtc: pcf2127: convert to devm_rtc_allocate_deviceBruno Thomsen1-3/+4
2019-06-19treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500Thomas Gleixner1-4/+1
2018-11-07rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_writeXulin Sun1-0/+3
2018-07-11rtc: pcf2127: add support for accessing internal static RAMUwe Kleine-König1-6/+62
2018-03-02rtc: stop validating rtc_time in .read_timeAlexandre Belloni1-1/+1
2017-02-23rtc: pcf2127: bulk read only date and time registers.Sean Nyekjaer1-2/+13
2016-03-14rtc: pcf2127: add pcf2129 device idAkinobu Mita1-3/+6
2016-03-14rtc: pcf2127: add support for spi interfaceAkinobu Mita1-2/+116
2016-03-14rtc: pcf2127: convert to use regmapAkinobu Mita1-70/+144
2015-11-08rtc: pcf2127: remove useless driver versionUwe Kleine-König1-5/+0
2015-11-08rtc: pcf2127: fix reading uninitialized value on RTC_READ_VL ioctlUwe Kleine-König1-18/+22
2015-11-03rtc: pcf2127: make module license match the file headerUwe Kleine-König1-1/+1
2015-09-05rtc: Drop owner assignment from i2c_driverKrzysztof Kozlowski1-1/+0
2015-09-05rtc: pcf2127: use OFS flag to detect unreliable date and warn the userAndrea Scian1-3/+23
2015-09-05rtc: use rtc_valid_tm() error code when reading date/timeAndrea Scian1-7/+1
2014-01-23drivers/rtc/rtc-pcf2127.c: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERODuan Jiong1-4/+1
2013-09-11drivers/rtc/rtc-pcf2127.c: remove empty functionSachin Kamat1-6/+0
2013-07-03rtc: add NXP PCF2127 support (i2c)Renaud Cerrato1-0/+241