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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: idprom.c,v 1.3 1999/08/31 06:54:53 davem Exp $
  2.  * idprom.c: Routines to load the idprom into kernel addresses and
  3.  *           interpret the data contained within.
  4.  *
  5.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  6.  */
  7. #include <linux/kernel.h>
  8. #include <linux/types.h>
  9. #include <linux/init.h>
  10. #include <asm/oplib.h>
  11. #include <asm/idprom.h>
  12. struct idprom *idprom;
  13. static struct idprom idprom_buffer;
  14. /* Calculate the IDPROM checksum (xor of the data bytes). */
  15. static unsigned char __init calc_idprom_cksum(struct idprom *idprom)
  16. {
  17. unsigned char cksum, i, *ptr = (unsigned char *)idprom;
  18. for (i = cksum = 0; i <= 0x0E; i++)
  19. cksum ^= *ptr++;
  20. return cksum;
  21. }
  22. /* Create a local IDPROM copy and verify integrity. */
  23. void __init idprom_init(void)
  24. {
  25. prom_get_idprom((char *) &idprom_buffer, sizeof(idprom_buffer));
  26. idprom = &idprom_buffer;
  27. if (idprom->id_format != 0x01)  {
  28. prom_printf("IDPROM: Warning, unknown format type!n");
  29. }
  30. if (idprom->id_cksum != calc_idprom_cksum(idprom)) {
  31. prom_printf("IDPROM: Warning, checksum failure (nvram=%x, calc=%x)!n",
  32.     idprom->id_cksum, calc_idprom_cksum(idprom));
  33. }
  34. printk("Ethernet address: %02x:%02x:%02x:%02x:%02x:%02xn",
  35.        idprom->id_ethaddr[0], idprom->id_ethaddr[1],
  36.        idprom->id_ethaddr[2], idprom->id_ethaddr[3],
  37.        idprom->id_ethaddr[4], idprom->id_ethaddr[5]);
  38. }