????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.144.153.204 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 : /lib/modules/3.13.0-49-generic/build/arch/unicore32/include/mach/ |
Upload File : |
/* * PKUnity Inter-integrated Circuit (I2C) Registers */ /* * Control Reg I2C_CON. */ #define I2C_CON (PKUNITY_I2C_BASE + 0x0000) /* * Target Address Reg I2C_TAR. */ #define I2C_TAR (PKUNITY_I2C_BASE + 0x0004) /* * Data buffer and command Reg I2C_DATACMD. */ #define I2C_DATACMD (PKUNITY_I2C_BASE + 0x0010) /* * Enable Reg I2C_ENABLE. */ #define I2C_ENABLE (PKUNITY_I2C_BASE + 0x006C) /* * Status Reg I2C_STATUS. */ #define I2C_STATUS (PKUNITY_I2C_BASE + 0x0070) /* * Tx FIFO Length Reg I2C_TXFLR. */ #define I2C_TXFLR (PKUNITY_I2C_BASE + 0x0074) /* * Rx FIFO Length Reg I2C_RXFLR. */ #define I2C_RXFLR (PKUNITY_I2C_BASE + 0x0078) /* * Enable Status Reg I2C_ENSTATUS. */ #define I2C_ENSTATUS (PKUNITY_I2C_BASE + 0x009C) #define I2C_CON_MASTER FIELD(1, 1, 0) #define I2C_CON_SPEED_STD FIELD(1, 2, 1) #define I2C_CON_SPEED_FAST FIELD(2, 2, 1) #define I2C_CON_RESTART FIELD(1, 1, 5) #define I2C_CON_SLAVEDISABLE FIELD(1, 1, 6) #define I2C_DATACMD_READ FIELD(1, 1, 8) #define I2C_DATACMD_WRITE FIELD(0, 1, 8) #define I2C_DATACMD_DAT_MASK FMASK(8, 0) #define I2C_DATACMD_DAT(v) FIELD((v), 8, 0) #define I2C_ENABLE_ENABLE FIELD(1, 1, 0) #define I2C_ENABLE_DISABLE FIELD(0, 1, 0) #define I2C_STATUS_RFF FIELD(1, 1, 4) #define I2C_STATUS_RFNE FIELD(1, 1, 3) #define I2C_STATUS_TFE FIELD(1, 1, 2) #define I2C_STATUS_TFNF FIELD(1, 1, 1) #define I2C_STATUS_ACTIVITY FIELD(1, 1, 0) #define I2C_ENSTATUS_ENABLE FIELD(1, 1, 0) #define I2C_TAR_THERMAL 0x4f #define I2C_TAR_SPD 0x50 #define I2C_TAR_PWIC 0x55 #define I2C_TAR_EEPROM 0x57