idprom.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: idprom.h,v 1.2 1997/04/04 00:50:16 davem Exp $
  2.  * idprom.h: Macros and defines for idprom routines
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #ifndef _SPARC64_IDPROM_H
  7. #define _SPARC64_IDPROM_H
  8. #include <linux/types.h>
  9. /* Offset into the EEPROM where the id PROM is located on the 4c */
  10. #define IDPROM_OFFSET  0x7d8
  11. /* On sun4m; physical. */
  12. /* MicroSPARC(-II) does not decode 31rd bit, but it works. */
  13. #define IDPROM_OFFSET_M  0xfd8
  14. struct idprom
  15. {
  16. u8 id_format; /* Format identifier (always 0x01) */
  17. u8 id_machtype; /* Machine type */
  18. u8 id_ethaddr[6]; /* Hardware ethernet address */
  19. s32 id_date; /* Date of manufacture */
  20. u32 id_sernum:24; /* Unique serial number */
  21. u8 id_cksum; /* Checksum - xor of the data bytes */
  22. u8 reserved[16];
  23. };
  24. extern struct idprom *idprom;
  25. extern void idprom_init(void);
  26. #define IDPROM_SIZE  (sizeof(struct idprom))
  27. #endif /* !(_SPARC_IDPROM_H) */