Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 25 of 35) sorted by relevance

12

/rk3399_rockchip-uboot/arch/powerpc/lib/
H A Dinterrupts.c76 static volatile ulong timestamp = 0; variable
86 timestamp++; in timer_interrupt()
89 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) in timer_interrupt()
94 status_led_tick (timestamp); in timer_interrupt()
98 board_show_activity (timestamp); in timer_interrupt()
104 return (timestamp - base); in get_timer()
/rk3399_rockchip-uboot/arch/m68k/lib/
H A Dtime.c18 static volatile ulong timestamp = 0; variable
67 timestamp++; in dtimer_interrupt()
70 if ((timestamp % (CONFIG_SYS_WATCHDOG_FREQ)) == 0) { in dtimer_interrupt()
82 timestamp = 0; in timer_init()
107 return (timestamp - base); in get_timer()
145 timestamp = 0; in timer_init()
163 timestamp += diff; in get_timer()
165 return timestamp - base; in get_timer()
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/ag101/
H A Dtimer.c16 static ulong timestamp; variable
77 timestamp = 0; /* start "advancing" time stamp from 0 */ in reset_timer_masked()
110 timestamp += lastdec - now; in get_timer_masked()
121 timestamp += lastdec + TIMER_LOAD_VAL - now; in get_timer_masked()
126 debug("%s() returns %lx\n", __func__, timestamp); in get_timer_masked()
128 return timestamp; in get_timer_masked()
143 timestamp = t; in set_timer()
/rk3399_rockchip-uboot/arch/microblaze/cpu/
H A Dtimer.c16 volatile int timestamp = 0; variable
22 return timestamp - base; in get_timer()
23 return timestamp++ - base; in get_timer()
40 timestamp++; in timer_isr()
84 timestamp = 0; in timer_init()
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f7/
H A Dtimer.c19 #define timestamp gd->arch.tbl macro
46 timestamp = 0; in timer_init()
81 timestamp += now - lastdec; in get_timer_masked()
84 timestamp += now + GPT_FREE_RUNNING - lastdec; in get_timer_masked()
88 return timestamp; in get_timer_masked()
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/stv0991/
H A Dtimer.c22 #define timestamp gd->arch.tbl macro
48 timestamp = 0; in timer_init()
83 timestamp += now - lastdec; in get_timer_masked()
86 timestamp += now + GPT_FREE_RUNNING - lastdec; in get_timer_masked()
90 return timestamp; in get_timer_masked()
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/
H A Dtimer.c25 #define timestamp gd->arch.tbl macro
57 timestamp = 0; in timer_init()
92 timestamp += now - lastdec; in get_timer_masked()
95 timestamp += now + GPT_FREE_RUNNING - lastdec; in get_timer_masked()
99 return timestamp; in get_timer_masked()
/rk3399_rockchip-uboot/board/armltd/integrator/
H A Dtimer.c44 static ulong timestamp; /* U-Boot ticks since startup */ variable
85 timestamp = 0L; in timer_init()
137 timestamp = now; in get_timer_masked()
139 return timestamp; in get_timer_masked()
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf547x_8x/
H A Dslicetimer.c16 static ulong timestamp; variable
56 timestamp++; in dtimer_interrupt()
65 timestamp = 0; in timer_init()
89 return (timestamp - base); in get_timer()
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/
H A Dtimer.c79 #define timestamp gd->arch.tbl macro
88 timestamp += lastdec - now; in get_timer_masked()
91 timestamp += lastdec + in get_timer_masked()
96 return timestamp; in get_timer_masked()
152 timestamp = 0; in timer_init_r()
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/
H A Dtimer.c27 #define timestamp (gd->arch.tbl) macro
103 timestamp += (lastdec - now); in get_ticks()
106 timestamp += (TIMER_LOAD_VAL - now) + lastdec; in get_ticks()
111 return timestamp; in get_ticks()
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/
H A Dinterrupts.c16 static ulong timestamp; variable
23 timestamp = 0; in timer_init()
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mx27/
H A Dtimer.c32 #define timestamp (gd->arch.tbl) macro
121 timestamp += (now - lastinc); in get_ticks()
124 timestamp += (0xFFFFFFFF - lastinc) + now; in get_ticks()
127 return timestamp; in get_ticks()
/rk3399_rockchip-uboot/drivers/misc/
H A Daltera_sysid.c18 u32 timestamp; /* Timestamp */ member
68 sysid[1] = readl(&regs->timestamp); in altera_sysid_read()
H A Dstatus_led.c86 void status_led_tick (ulong timestamp) in status_led_tick() argument
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/
H A DMakefile20 obj-y += timestamp.o
/rk3399_rockchip-uboot/common/
H A Dimage-fit.c178 time_t timestamp; in fit_print_contents() local
192 ret = fit_get_timestamp(fit, 0, &timestamp); in fit_print_contents()
197 genimg_print_time(timestamp); in fit_print_contents()
312 time_t timestamp; in fit_image_print_data() local
315 if (fit_get_timestamp(fit, noffset, &timestamp)) in fit_image_print_data()
318 genimg_print_time(timestamp); in fit_image_print_data()
387 time_t timestamp; in fit_image_print() local
389 ret = fit_get_timestamp(fit, 0, &timestamp); in fit_image_print()
394 genimg_print_time(timestamp); in fit_image_print()
514 int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp) in fit_get_timestamp() argument
[all …]
/rk3399_rockchip-uboot/include/
H A Dstatus_led.h40 void status_led_tick (unsigned long timestamp);
H A Dimage.h544 void genimg_print_time(time_t timestamp);
1015 int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp);
1044 int fit_set_timestamp(void *fit, int noffset, time_t timestamp);
/rk3399_rockchip-uboot/test/py/
H A Dmultiplexed_log.py168 self.logfile.timestamp()
405 self.timestamp()
510 def timestamp(self): member in Logfile
H A Dmultiplexed_log.css65 .timestamp {
H A Du_boot_console_base.py219 self.log.timestamp()
375 self.log.timestamp()
/rk3399_rockchip-uboot/drivers/rtc/
H A DKconfig24 programmable watchdog function, a timestamp function, and many other features.
/rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/
H A Dkeystone_nav.h86 u32 timestamp; member
/rk3399_rockchip-uboot/fs/ext4/
H A Dext4_write.c842 time_t timestamp = 0; in ext4fs_write() local
916 file_inode->mtime = cpu_to_le32(timestamp); in ext4fs_write()
917 file_inode->atime = cpu_to_le32(timestamp); in ext4fs_write()
918 file_inode->ctime = cpu_to_le32(timestamp); in ext4fs_write()

12