| /rk3399_rockchip-uboot/arch/powerpc/lib/ |
| H A D | interrupts.c | 76 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 D | time.c | 18 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 D | timer.c | 16 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 D | timer.c | 16 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 D | timer.c | 19 #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 D | timer.c | 22 #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 D | timer.c | 25 #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 D | timer.c | 44 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 D | slicetimer.c | 16 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 D | timer.c | 79 #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 D | timer.c | 27 #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 D | interrupts.c | 16 static ulong timestamp; variable 23 timestamp = 0; in timer_init()
|
| /rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mx27/ |
| H A D | timer.c | 32 #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 D | altera_sysid.c | 18 u32 timestamp; /* Timestamp */ member 68 sysid[1] = readl(®s->timestamp); in altera_sysid_read()
|
| H A D | status_led.c | 86 void status_led_tick (ulong timestamp) in status_led_tick() argument
|
| /rk3399_rockchip-uboot/arch/x86/cpu/coreboot/ |
| H A D | Makefile | 20 obj-y += timestamp.o
|
| /rk3399_rockchip-uboot/common/ |
| H A D | image-fit.c | 178 time_t timestamp; in fit_print_contents() local 192 ret = fit_get_timestamp(fit, 0, ×tamp); 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, ×tamp)) 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, ×tamp); 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 D | status_led.h | 40 void status_led_tick (unsigned long timestamp);
|
| H A D | image.h | 544 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 D | multiplexed_log.py | 168 self.logfile.timestamp() 405 self.timestamp() 510 def timestamp(self): member in Logfile
|
| H A D | multiplexed_log.css | 65 .timestamp {
|
| H A D | u_boot_console_base.py | 219 self.log.timestamp() 375 self.log.timestamp()
|
| /rk3399_rockchip-uboot/drivers/rtc/ |
| H A D | Kconfig | 24 programmable watchdog function, a timestamp function, and many other features.
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/ |
| H A D | keystone_nav.h | 86 u32 timestamp; member
|
| /rk3399_rockchip-uboot/fs/ext4/ |
| H A D | ext4_write.c | 842 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()
|