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

嵌入式Linux

开发平台:

Unix_Linux

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