Home
last modified time | relevance | path

Searched full:minute (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/openbmc/linux/drivers/rtc/
H A Drtc-wilco-ec.c39 * @minute: Minute value (0..59)
51 u8 minute; member
69 * @minute: Minute value (0..59)
84 u8 minute; member
108 tm->tm_min = rtc.minute; in wilco_ec_rtc_read()
144 rtc.minute = bin2bcd(tm->tm_min); in wilco_ec_rtc_write()
H A Drtc-mv.c71 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_time() local
77 minute = (rtc_time >> RTC_MINUTES_OFFS) & 0x7f; in mv_rtc_read_time()
86 tm->tm_min = bcd2bin(minute); in mv_rtc_read_time()
102 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_alarm() local
108 minute = (rtc_time >> RTC_MINUTES_OFFS) & 0x7f; in mv_rtc_read_alarm()
117 alm->time.tm_min = bcd2bin(minute); in mv_rtc_read_alarm()
H A Drtc-efi.c59 eft->minute = wtime->tm_min; in convert_to_efi_time()
75 if (eft->minute >= 60) in convert_from_efi_time()
77 wtime->tm_min = eft->minute; in convert_from_efi_time()
207 eft.hour, eft.minute, eft.second, eft.nanosecond, in efi_procfs()
224 alm.hour, alm.minute, alm.second, alm.nanosecond, in efi_procfs()
H A Drtc-mpc5121.c41 u8 minute; /* RTC + 0x12 */ member
83 * Update second/minute/hour registers.
115 * update second minute hour registers in mpc5121_rtc_read_time()
137 * update second minute hour registers in mpc5121_rtc_set_time()
152 tm->tm_min = in_8(&regs->minute); in mpc5200_rtc_read_time()
H A Drtc-ds1742.c83 unsigned int year, month, day, hour, minute, second, week; in ds1742_rtc_read_time() local
92 minute = readb(ioaddr + RTC_MINUTES); in ds1742_rtc_read_time()
101 tm->tm_min = bcd2bin(minute); in ds1742_rtc_read_time()
H A Drtc-pcf2123.c77 #define CTRL2_MSF BIT(5) /* Minute or second irq flag */
79 #define CTRL2_MI BIT(7) /* Minute irq enable */
144 * into the 60th minute.
431 /* The PCF2123's alarm only has minute accuracy. Must add timer in pcf2123_probe()
433 * per minute. in pcf2123_probe()
H A Drtc-msm6242.c25 MSM6242_MINUTE1 = 0x2, /* 1-minute digit register */
26 MSM6242_MINUTE10 = 0x3, /* 10-minute digit register */
61 #define MSM6242_CE_T_1MINUTE (2 << 2) /* period 1 minute */
H A Drtc-r9701.c25 #define RMINCNT 0x01 /* Minute Counter */
32 #define RMINAR 0x08 /* Minute Alarm */
/openbmc/openbmc-tools/tof-voters/libvoters/
H A Dtime.py15 [hour, minute, second] = [00, 00, 00]
17 [hour, minute, second] = [23, 59, 59]
21 year, month, day, hour, minute, second, tzinfo=timezone.utc
/openbmc/u-boot/drivers/rtc/
H A Dftrtc010.c38 #define FTRTC010_CR_INTERRUPT_MIN (1 << 2) /* per minute irq */
56 unsigned long minute; in ftrtc010_time() local
64 minute = readl(&rtc->min); in ftrtc010_time()
68 return day * 24 * 60 * 60 + hour * 60 * 60 + minute * 60 + second; in ftrtc010_time()
/openbmc/linux/fs/isofs/
H A Dutil.c21 int year, month, day, hour, minute, second, tz; in iso_date() local
28 minute = p[4]; in iso_date()
36 crtime = mktime64(year+1900, month, day, hour, minute, second); in iso_date()
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dkvm-recheck-rcu.sh71 print_bug $nclosecalls "Reader Batch close calls in" $(($dur/60)) minute run: $i
73 print_warning $nclosecalls "Reader Batch close calls in" $(($dur/60)) minute run: $i
75 …echo $nclosecalls "Reader Batch close calls in" $(($dur/60)) minute run: $i > $i/console.log.rcu.d…
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Sensor/
H A DValue.interface.yaml64 To calculate Air Flow in Cubic Feet per Minute
73 To calculate the liquid flow in Liters Per Minute.
88 Frequency of rotation as revolutions per minute.
/openbmc/linux/arch/m68k/sun3/
H A Dintersil.c42 todintersil->minute = t->tm_min; in sun3_hwclk()
52 t->tm_min = todintersil->minute; in sun3_hwclk()
/openbmc/qemu/hw/rtc/
H A Dallwinner-rtc.c35 REG_HHMMSS, /* RTC Hour-Minute-Second */
36 REG_ALARM1_WKHHMMSS, /* Alarm1 Week Hour-Minute-Second */
46 REG_ALARM1_DDHHMMSS, /* Alarm1 Day Hour-Minute-Second */
195 case REG_HHMMSS: /* RTC Hour-Minute-Second */ in allwinner_rtc_read()
240 case REG_HHMMSS: /* RTC Hour-Minute-Second */ in allwinner_rtc_write()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/mdns/mdns/
H A D0001-Create-subroutine-for-cleaning-recent-interfaces.patch25 …up any interfaces that have been hanging around on the RecentInterfaces list for more than a minute
46 …up any interfaces that have been hanging around on the RecentInterfaces list for more than a minute
/openbmc/linux/fs/udf/
H A Dudftime.c46 dest->tv_sec = mktime64(year, src.month, src.day, src.hour, src.minute, in udf_disk_stamp_to_time()
80 dest->minute = tm.tm_min; in udf_time_to_disk_stamp()
/openbmc/u-boot/arch/arm/mach-at91/include/mach/
H A Dat91_rtc.h32 #define AT91_RTC_MIN (0x7f << 8) /* Current Minute */
45 #define AT91_RTC_MINEN (1 << 15) /* Minute Alarm Enab */
/openbmc/linux/Documentation/admin-guide/acpi/
H A Dfan_performance_states.rst49 * ``speed_rpm``: Speed of the fan in rotations per minute.
86 This includes field to provide current fan speed in revolutions per minute
/openbmc/linux/drivers/leds/
H A Dleds-ipaq-micro.c28 * yellow LED is always ~30 blinks per minute in micro_leds_brightness_set()
65 * yellow LED is always ~30 blinks per minute in micro_leds_blink_set()
/openbmc/openbmc/meta-facebook/recipes-extended/rsyslog/rsyslog/
H A Drotate-event-logs.timer2 Description=Run rotate-event-logs.service every minute
/openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/ahb/apb@1e780000/bus@1e78a000/i2c@300/i2c-switch@70/i2c@1/
H A Dpsu@58.conf14 # 1 minute interval
/openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/ahb/apb@1e780000/bus@1e78a000/i2c@300/i2c-switch@70/i2c@2/
H A Dpsu@58.conf14 # 1 minute interval
/openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/ahb/apb@1e780000/bus@1e78a000/i2c@300/i2c-switch@70/i2c@0/
H A Dpsu@59.conf14 # 1 minute interval
/openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/ahb/apb@1e780000/bus@1e78a000/i2c@300/i2c-switch@70/i2c@3/
H A Dpsu@59.conf14 # 1 minute interval

12345678910>>...13