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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: idprom.c,v 1.22 1996/11/13 05:09:25 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.  * Sun3/3x models added by David Monro (davidm@psrg.cs.usyd.edu.au)
  7.  */
  8. #include <linux/kernel.h>
  9. #include <linux/types.h>
  10. #include <linux/init.h>
  11. #include <linux/string.h>
  12. #include <asm/oplib.h>
  13. #include <asm/idprom.h>
  14. #include <asm/machines.h>  /* Fun with Sun released architectures. */
  15. struct idprom *idprom;
  16. static struct idprom idprom_buffer;
  17. /* Here is the master table of Sun machines which use some implementation
  18.  * of the Sparc CPU and have a meaningful IDPROM machtype value that we
  19.  * know about.  See asm-sparc/machines.h for empirical constants.
  20.  */
  21. struct Sun_Machine_Models Sun_Machines[NUM_SUN_MACHINES] = {
  22. /* First, Sun3's */
  23. { "Sun 3/160 Series", (SM_SUN3 | SM_3_160) },
  24. { "Sun 3/50", (SM_SUN3 | SM_3_50) },
  25. { "Sun 3/260 Series", (SM_SUN3 | SM_3_260) },
  26. { "Sun 3/110 Series", (SM_SUN3 | SM_3_110) },
  27. { "Sun 3/60", (SM_SUN3 | SM_3_60) },
  28. { "Sun 3/E", (SM_SUN3 | SM_3_E) },
  29. /* Now, Sun3x's */
  30. { "Sun 3/460 Series", (SM_SUN3 | SM_3_460) },
  31. { "Sun 3/80", (SM_SUN3 | SM_3_80) },
  32. /* Then, Sun4's */
  33. //{ "Sun 4/100 Series", (SM_SUN4 | SM_4_110) },
  34. //{ "Sun 4/200 Series", (SM_SUN4 | SM_4_260) },
  35. //{ "Sun 4/300 Series", (SM_SUN4 | SM_4_330) },
  36. //{ "Sun 4/400 Series", (SM_SUN4 | SM_4_470) },
  37. /* And now, Sun4c's */
  38. //{ "Sun4c SparcStation 1", (SM_SUN4C | SM_4C_SS1) },
  39. //{ "Sun4c SparcStation IPC", (SM_SUN4C | SM_4C_IPC) },
  40. //{ "Sun4c SparcStation 1+", (SM_SUN4C | SM_4C_SS1PLUS) },
  41. //{ "Sun4c SparcStation SLC", (SM_SUN4C | SM_4C_SLC) },
  42. //{ "Sun4c SparcStation 2", (SM_SUN4C | SM_4C_SS2) },
  43. //{ "Sun4c SparcStation ELC", (SM_SUN4C | SM_4C_ELC) },
  44. //{ "Sun4c SparcStation IPX", (SM_SUN4C | SM_4C_IPX) },
  45. /* Finally, early Sun4m's */
  46. //{ "Sun4m SparcSystem600", (SM_SUN4M | SM_4M_SS60) },
  47. //{ "Sun4m SparcStation10/20", (SM_SUN4M | SM_4M_SS50) },
  48. //{ "Sun4m SparcStation5", (SM_SUN4M | SM_4M_SS40) },
  49. /* One entry for the OBP arch's which are sun4d, sun4e, and newer sun4m's */
  50. //{ "Sun4M OBP based system", (SM_SUN4M_OBP | 0x0) }
  51. };
  52. static void __init display_system_type(unsigned char machtype)
  53. {
  54. register int i;
  55. for (i = 0; i < NUM_SUN_MACHINES; i++) {
  56. if(Sun_Machines[i].id_machtype == machtype) {
  57. if (machtype != (SM_SUN4M_OBP | 0x00))
  58. printk("TYPE: %sn", Sun_Machines[i].name);
  59. else {
  60. #if 0
  61. prom_getproperty(prom_root_node, "banner-name",
  62.  sysname, sizeof(sysname));
  63. printk("TYPE: %sn", sysname);
  64. #endif
  65. }
  66. return;
  67. }
  68. }
  69. prom_printf("IDPROM: Bogus id_machtype value, 0x%xn", machtype);
  70. prom_halt();
  71. }
  72. void sun3_get_model(unsigned char* model)
  73. {
  74. register int i;
  75. for (i = 0; i < NUM_SUN_MACHINES; i++) {
  76. if(Sun_Machines[i].id_machtype == idprom->id_machtype) {
  77.                 strcpy(model, Sun_Machines[i].name);
  78. return;
  79. }
  80. }
  81. }
  82. /* Calculate the IDPROM checksum (xor of the data bytes). */
  83. static unsigned char __init calc_idprom_cksum(struct idprom *idprom)
  84. {
  85. unsigned char cksum, i, *ptr = (unsigned char *)idprom;
  86. for (i = cksum = 0; i <= 0x0E; i++)
  87. cksum ^= *ptr++;
  88. return cksum;
  89. }
  90. /* Create a local IDPROM copy, verify integrity, and display information. */
  91. void __init idprom_init(void)
  92. {
  93. prom_get_idprom((char *) &idprom_buffer, sizeof(idprom_buffer));
  94. idprom = &idprom_buffer;
  95. if (idprom->id_format != 0x01)  {
  96. prom_printf("IDPROM: Unknown format type!n");
  97. prom_halt();
  98. }
  99. if (idprom->id_cksum != calc_idprom_cksum(idprom)) {
  100. prom_printf("IDPROM: Checksum failure (nvram=%x, calc=%x)!n",
  101.     idprom->id_cksum, calc_idprom_cksum(idprom));
  102. prom_halt();
  103. }
  104. display_system_type(idprom->id_machtype);
  105. printk("Ethernet address: %x:%x:%x:%x:%x:%xn",
  106.     idprom->id_ethaddr[0], idprom->id_ethaddr[1],
  107.     idprom->id_ethaddr[2], idprom->id_ethaddr[3],
  108.     idprom->id_ethaddr[4], idprom->id_ethaddr[5]);
  109. }