Searched +full:aux +full:- +full:voltage +full:- +full:chargeable (Results 1 – 10 of 10) sorted by relevance
/linux/Documentation/devicetree/bindings/rtc/ |
H A D | rtc.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexandre Belloni <alexandre.belloni@bootlin.com> 18 pattern: "^rtc(@.*|-([0-9]|[1-9][0-9]+))?$" 20 aux-voltage-chargeable: 25 chargeable or not: 26 0: not chargeable 27 1: chargeable 29 quartz-load-femtofarads: [all …]
|
H A D | adi,max31335.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Antoniu Miclaus <antoniu.miclaus@analog.com> 13 Analog Devices MAX31335 I2C RTC ±2ppm Automotive Real-Time Clock with 17 - $ref: rtc.yaml# 29 "#clock-cells": 34 adi,tc-diode: 37 schottky - Schottky diode in series. 38 standard+schottky - standard diode + Schottky diode in series. [all …]
|
H A D | rtc-ds1307.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/rtc/rtc-ds1307.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexandre Belloni <alexandre.belloni@bootlin.com> 15 - enum: 16 - dallas,ds1307 17 - dallas,ds1308 18 - dallas,ds1337 19 - dallas,ds1338 [all …]
|
/linux/drivers/rtc/ |
H A D | rtc-sunplus.c | 1 // SPDX-License-Identifier: GPL-2.0 69 *secs = (unsigned long)readl(sp_rtc->reg_base + RTC_TIMER_OUT); in sp_get_seconds() 76 writel((u32)secs, sp_rtc->reg_base + RTC_TIMER_SET); in sp_set_seconds() 105 alarm_time = rtc_tm_to_time64(&alrm->time); in sp_rtc_set_alarm() 107 writel((u32)alarm_time, sp_rtc->reg_base + RTC_ALARM_SET); in sp_rtc_set_alarm() 117 alarm_time = readl(sp_rtc->reg_base + RTC_ALARM_SET); in sp_rtc_read_alarm() 121 alrm->enabled = 0; in sp_rtc_read_alarm() 123 alrm->enabled = 1; in sp_rtc_read_alarm() 125 rtc_time64_to_tm((unsigned long)(alarm_time), &alrm->time); in sp_rtc_read_alarm() 139 sp_rtc->reg_base + RTC_CTRL); in sp_rtc_alarm_irq_enable() [all …]
|
H A D | rtc-rv3028.c | 1 // SPDX-License-Identifier: GPL-2.0 11 #include <linux/clk-provider.h> 110 struct rv3028_data *rv3028 = dev_get_drvdata(dev->parent); in timestamp0_store() 112 regmap_update_bits(rv3028->regmap, RV3028_EVT_CTRL, RV3028_EVT_CTRL_TSR, in timestamp0_store() 121 struct rv3028_data *rv3028 = dev_get_drvdata(dev->parent); in timestamp0_show() 127 ret = regmap_read(rv3028->regmap, RV3028_TS_COUNT, &count); in timestamp0_show() 134 ret = regmap_bulk_read(rv3028->regmap, RV3028_TS_SEC, date, in timestamp0_show() 143 tm.tm_mon = bcd2bin(date[4]) - 1; in timestamp0_show() 159 struct rv3028_data *rv3028 = dev_get_drvdata(dev->parent); in timestamp0_count_show() 163 ret = regmap_read(rv3028->regmap, RV3028_TS_COUNT, &count); in timestamp0_count_show() [all …]
|
H A D | rtc-max31335.c | 1 // SPDX-License-Identifier: GPL-2.0 16 #include <linux/clk-provider.h> 230 ret = regmap_bulk_read(max31335->regmap, MAX31335_SECONDS, date, in max31335_read_time() 235 tm->tm_sec = bcd2bin(date[0] & 0x7f); in max31335_read_time() 236 tm->tm_min = bcd2bin(date[1] & 0x7f); in max31335_read_time() 237 tm->tm_hour = bcd2bin(date[2] & 0x3f); in max31335_read_time() 238 tm->tm_wday = bcd2bin(date[3] & 0x7) - 1; in max31335_read_time() 239 tm->tm_mday = bcd2bin(date[4] & 0x3f); in max31335_read_time() 240 tm->tm_mon = bcd2bin(date[5] & 0x1f) - 1; in max31335_read_time() 241 tm->tm_year = bcd2bin(date[6]) + 100; in max31335_read_time() [all …]
|
H A D | rtc-ds1307.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * rtc-ds1307.c - RTC driver for some mostly-compatible I2C chips. 23 #include <linux/hwmon-sysfs.h> 24 #include <linux/clk-provider.h> 29 * We can't determine type by probing, but if we expect pre-Linux code 31 * setting the date and time), Linux can ignore the non-clock features. 56 #define DS1307_REG_SECS 0x00 /* 00-59 */ 60 #define DS1307_REG_MIN 0x01 /* 00-59 */ 62 #define DS1307_REG_HOUR 0x02 /* 00-23, or 1-12{am,pm} */ 67 #define DS1307_REG_WDAY 0x03 /* 01-07 */ [all …]
|
/linux/arch/arm64/boot/dts/freescale/ |
H A D | imx8mm-phyboard-polis-rdk.dts | 1 // SPDX-License-Identifier: GPL-2.0 7 /dts-v1/; 9 #include <dt-bindings/interrupt-controller/irq.h> 10 #include <dt-bindings/leds/common.h> 11 #include <dt-bindings/phy/phy-imx8-pcie.h> 12 #include "imx8mm-phycore-som.dtsi" 15 model = "PHYTEC phyBOARD-Polis-i.MX8MM RDK"; 16 compatible = "phytec,imx8mm-phyboard-polis-rdk", 17 "phytec,imx8mm-phycore-som", "fsl,imx8mm"; 20 stdout-path = &uart3; [all …]
|
H A D | imx8mm-phygate-tauri-l.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 6 /dts-v1/; 8 #include <dt-bindings/input/linux-event-codes.h> 9 #include <dt-bindings/leds/common.h> 10 #include <dt-bindings/phy/phy-imx8-pcie.h> 11 #include "imx8mm-phycore-som.dtsi" 14 model = "PHYTEC phyGATE-Tauri-L-iMX8MM"; 15 compatible = "phytec,imx8mm-phygate-tauri-l", 16 "phytec,imx8mm-phycore-som", "fsl,imx8mm"; 19 stdout-path = &uart3; [all …]
|
H A D | imx8mp-phyboard-pollux-rdk.dts | 1 // SPDX-License-Identifier: GPL-2.0 7 /dts-v1/; 9 #include <dt-bindings/phy/phy-imx8-pcie.h> 10 #include <dt-bindings/leds/leds-pca9532.h> 11 #include <dt-bindings/pwm/pwm.h> 12 #include <dt-bindings/thermal/thermal.h> 13 #include "imx8mp-phycore-som.dtsi" 16 model = "PHYTEC phyBOARD-Pollux i.MX8MP"; 17 compatible = "phytec,imx8mp-phyboard-pollux-rdk", 18 "phytec,imx8mp-phycore-som", "fsl,imx8mp"; [all …]
|