????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.118.27.44 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-3.13.0-170/arch/blackfin/include/asm/ |
Upload File : |
/* * asm-blackfin/time.h: * * Copyright 2004-2008 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ #ifndef _ASM_BLACKFIN_TIME_H #define _ASM_BLACKFIN_TIME_H /* * The way that the Blackfin core timer works is: * - CCLK is divided by a programmable 8-bit pre-scaler (TSCALE) * - Every time TSCALE ticks, a 32bit is counted down (TCOUNT) * * If you take the fastest clock (1ns, or 1GHz to make the math work easier) * 10ms is 10,000,000 clock ticks, which fits easy into a 32-bit counter * (32 bit counter is 4,294,967,296ns or 4.2 seconds) so, we don't need * to use TSCALE, and program it to zero (which is pass CCLK through). * If you feel like using it, try to keep HZ * TIMESCALE to some * value that divides easy (like power of 2). */ #ifndef CONFIG_CPU_FREQ # define TIME_SCALE 1 #else /* * Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 . * Whenever we change the Core Clock frequency changes we immediately * adjust the Core Timer Presale Register. This way we don't lose time. */ #define TIME_SCALE 4 # ifdef CONFIG_CYCLES_CLOCKSOURCE extern unsigned long long __bfin_cycles_off; extern unsigned int __bfin_cycles_mod; # endif #endif #if defined(CONFIG_TICKSOURCE_CORETMR) extern void bfin_coretmr_init(void); extern void bfin_coretmr_clockevent_init(void); #endif #endif