diff options
Diffstat (limited to 'arch/x86/include/asm/uv/bios.h')
| -rw-r--r-- | arch/x86/include/asm/uv/bios.h | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/x86/include/asm/uv/bios.h b/arch/x86/include/asm/uv/bios.h index 2751f3075d8..71605c7d5c5 100644 --- a/arch/x86/include/asm/uv/bios.h +++ b/arch/x86/include/asm/uv/bios.h @@ -18,8 +18,8 @@   *  along with this program; if not, write to the Free Software   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   * - *  Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved. - *  Copyright (c) Russ Anderson + *  Copyright (c) 2008-2009 Silicon Graphics, Inc.  All Rights Reserved. + *  Copyright (c) Russ Anderson <rja@sgi.com>   */  #include <linux/rtc.h> @@ -36,7 +36,8 @@ enum uv_bios_cmd {  	UV_BIOS_WATCHLIST_ALLOC,  	UV_BIOS_WATCHLIST_FREE,  	UV_BIOS_MEMPROTECT, -	UV_BIOS_GET_PARTITION_ADDR +	UV_BIOS_GET_PARTITION_ADDR, +	UV_BIOS_SET_LEGACY_VGA_TARGET  };  /* @@ -89,13 +90,14 @@ extern s64 uv_bios_call(enum uv_bios_cmd, u64, u64, u64, u64, u64);  extern s64 uv_bios_call_irqsave(enum uv_bios_cmd, u64, u64, u64, u64, u64);  extern s64 uv_bios_call_reentrant(enum uv_bios_cmd, u64, u64, u64, u64, u64); -extern s64 uv_bios_get_sn_info(int, int *, long *, long *, long *); +extern s64 uv_bios_get_sn_info(int, int *, long *, long *, long *, long *);  extern s64 uv_bios_freq_base(u64, u64 *);  extern int uv_bios_mq_watchlist_alloc(unsigned long, unsigned int,  					unsigned long *);  extern int uv_bios_mq_watchlist_free(int, int);  extern s64 uv_bios_change_memprotect(u64, u64, enum uv_memprotect);  extern s64 uv_bios_reserved_page_pa(u64, u64 *, u64 *, u64 *); +extern int uv_bios_set_legacy_vga_target(bool decode, int domain, int bus);  extern void uv_bios_init(void); @@ -104,6 +106,7 @@ extern int uv_type;  extern long sn_partition_id;  extern long sn_coherency_id;  extern long sn_region_size; +extern long system_serial_number;  #define partition_coherence_id()	(sn_coherency_id)  extern struct kobject *sgi_uv_kobj;	/* /sys/firmware/sgi_uv */  |