Server IP : 127.0.0.2 / Your IP : 3.17.68.195 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,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,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-1128-aws/build/include/linux/ |
Upload File : |
#ifndef __LINUX_JZ4740_ADC #define __LINUX_JZ4740_ADC struct device; /* * jz4740_adc_set_config - Configure a JZ4740 adc device * @dev: Pointer to a jz4740-adc device * @mask: Mask for the config value to be set * @val: Value to be set * * This function can be used by the JZ4740 ADC mfd cells to configure their * options in the shared config register. */ int jz4740_adc_set_config(struct device *dev, uint32_t mask, uint32_t val); #define JZ_ADC_CONFIG_SPZZ BIT(31) #define JZ_ADC_CONFIG_EX_IN BIT(30) #define JZ_ADC_CONFIG_DNUM_MASK (0x7 << 16) #define JZ_ADC_CONFIG_DMA_ENABLE BIT(15) #define JZ_ADC_CONFIG_XYZ_MASK (0x2 << 13) #define JZ_ADC_CONFIG_SAMPLE_NUM_MASK (0x7 << 10) #define JZ_ADC_CONFIG_CLKDIV_MASK (0xf << 5) #define JZ_ADC_CONFIG_BAT_MB BIT(4) #define JZ_ADC_CONFIG_DNUM(dnum) ((dnum) << 16) #define JZ_ADC_CONFIG_XYZ_OFFSET(dnum) ((xyz) << 13) #define JZ_ADC_CONFIG_SAMPLE_NUM(x) ((x) << 10) #define JZ_ADC_CONFIG_CLKDIV(div) ((div) << 5) #endif