idprom.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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:%02x\n",
  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. }