????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.15.195.46 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/sparc/include/asm/ |
Upload File : |
/* * machines.h: Defines for taking apart the machine type value in the * idprom and determining the kind of machine we are on. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) */ #ifndef _SPARC_MACHINES_H #define _SPARC_MACHINES_H struct Sun_Machine_Models { char *name; unsigned char id_machtype; }; /* The machine type in the idprom area looks like this: * * --------------- * | ARCH | MACH | * --------------- * 7 4 3 0 * * The ARCH field determines the architecture line (sun4m, etc). * The MACH field determines the machine make within that architecture. */ #define SM_ARCH_MASK 0xf0 #define M_LEON 0x30 #define SM_SUN4M 0x70 #define SM_SUN4M_OBP 0x80 #define SM_TYP_MASK 0x0f /* Leon machines */ #define M_LEON3_SOC 0x02 /* Leon3 SoC */ /* Sun4m machines, these predate the OpenBoot. These values only mean * something if the value in the ARCH field is SM_SUN4M, if it is * SM_SUN4M_OBP then you have the following situation: * 1) You either have a sun4d, a sun4e, or a recently made sun4m. * 2) You have to consult OpenBoot to determine which machine this is. */ #define SM_4M_SS60 0x01 /* Sun4m SparcSystem 600 */ #define SM_4M_SS50 0x02 /* Sun4m SparcStation 10 */ #define SM_4M_SS40 0x03 /* Sun4m SparcStation 5 */ /* Sun4d machines -- N/A */ /* Sun4e machines -- N/A */ /* Sun4u machines -- N/A */ #endif /* !(_SPARC_MACHINES_H) */