| 
									
										
										
										
											2008-05-19 16:53:02 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * idprom.h: Macros and defines for idprom routines | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-06-19 22:39:00 +02:00
										 |  |  |  * Copyright (C) 1995,1996 David S. Miller (davem@caip.rutgers.edu) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _SPARC_IDPROM_H
 | 
					
						
							|  |  |  | #define _SPARC_IDPROM_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-09 20:45:26 -08:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-09 20:45:26 -08:00
										 |  |  | struct idprom { | 
					
						
							|  |  |  | 	u8		id_format;	/* Format identifier (always 0x01) */ | 
					
						
							|  |  |  | 	u8		id_machtype;	/* Machine type */ | 
					
						
							|  |  |  | 	u8		id_ethaddr[6];	/* Hardware ethernet address */ | 
					
						
							|  |  |  | 	s32		id_date;	/* Date of manufacture */ | 
					
						
							|  |  |  | 	u32		id_sernum:24;	/* Unique serial number */ | 
					
						
							|  |  |  | 	u8		id_cksum;	/* Checksum - xor of the data bytes */ | 
					
						
							|  |  |  | 	u8		reserved[16]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct idprom *idprom; | 
					
						
							| 
									
										
										
										
											2014-05-16 23:25:50 +02:00
										 |  |  | void idprom_init(void); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* !(_SPARC_IDPROM_H) */
 |