| Adrian Bunk | 88278ca | 2008-05-19 16:53:02 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/kernel.h> | 
 | 9 | #include <linux/types.h> | 
 | 10 | #include <linux/init.h> | 
| Sam Ravnborg | 6943f3d | 2009-01-08 16:58:05 -0800 | [diff] [blame] | 11 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  | 
 | 13 | #include <asm/oplib.h> | 
 | 14 | #include <asm/idprom.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  | 
 | 16 | struct idprom *idprom; | 
| Sam Ravnborg | 6943f3d | 2009-01-08 16:58:05 -0800 | [diff] [blame] | 17 | EXPORT_SYMBOL(idprom); | 
 | 18 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | static struct idprom idprom_buffer; | 
 | 20 |  | 
| Sam Ravnborg | 680e58f | 2008-12-07 00:50:29 -0800 | [diff] [blame] | 21 | #ifdef CONFIG_SPARC32 | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 22 | #include <asm/machines.h>  /* Fun with Sun released architectures. */ | 
 | 23 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* Here is the master table of Sun machines which use some implementation | 
 | 25 |  * of the Sparc CPU and have a meaningful IDPROM machtype value that we | 
 | 26 |  * know about.  See asm-sparc/machines.h for empirical constants. | 
 | 27 |  */ | 
| Adrian Bunk | c61c65c | 2008-06-05 11:40:58 -0700 | [diff] [blame] | 28 | static struct Sun_Machine_Models Sun_Machines[NUM_SUN_MACHINES] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* First, Sun4's */ | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 30 | { .name = "Sun 4/100 Series",        .id_machtype = (SM_SUN4 | SM_4_110) }, | 
 | 31 | { .name = "Sun 4/200 Series",        .id_machtype = (SM_SUN4 | SM_4_260) }, | 
 | 32 | { .name = "Sun 4/300 Series",        .id_machtype = (SM_SUN4 | SM_4_330) }, | 
 | 33 | { .name = "Sun 4/400 Series",        .id_machtype = (SM_SUN4 | SM_4_470) }, | 
| Konrad Eisele | 0fd7ef1 | 2009-08-17 00:13:31 +0000 | [diff] [blame] | 34 | /* Now Leon */ | 
 | 35 | { .name = "Leon3 System-on-a-Chip",  .id_machtype = (M_LEON | M_LEON3_SOC) }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* Now, Sun4c's */ | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 37 | { .name = "Sun4c SparcStation 1",    .id_machtype = (SM_SUN4C | SM_4C_SS1) }, | 
 | 38 | { .name = "Sun4c SparcStation IPC",  .id_machtype = (SM_SUN4C | SM_4C_IPC) }, | 
 | 39 | { .name = "Sun4c SparcStation 1+",   .id_machtype = (SM_SUN4C | SM_4C_SS1PLUS) }, | 
 | 40 | { .name = "Sun4c SparcStation SLC",  .id_machtype = (SM_SUN4C | SM_4C_SLC) }, | 
 | 41 | { .name = "Sun4c SparcStation 2",    .id_machtype = (SM_SUN4C | SM_4C_SS2) }, | 
 | 42 | { .name = "Sun4c SparcStation ELC",  .id_machtype = (SM_SUN4C | SM_4C_ELC) }, | 
 | 43 | { .name = "Sun4c SparcStation IPX",  .id_machtype = (SM_SUN4C | SM_4C_IPX) }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* Finally, early Sun4m's */ | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 45 | { .name = "Sun4m SparcSystem600",    .id_machtype = (SM_SUN4M | SM_4M_SS60) }, | 
 | 46 | { .name = "Sun4m SparcStation10/20", .id_machtype = (SM_SUN4M | SM_4M_SS50) }, | 
 | 47 | { .name = "Sun4m SparcStation5",     .id_machtype = (SM_SUN4M | SM_4M_SS40) }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* One entry for the OBP arch's which are sun4d, sun4e, and newer sun4m's */ | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 49 | { .name = "Sun4M OBP based system",  .id_machtype = (SM_SUN4M_OBP | 0x0) } }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
 | 51 | static void __init display_system_type(unsigned char machtype) | 
 | 52 | { | 
 | 53 | 	char sysname[128]; | 
 | 54 | 	register int i; | 
 | 55 |  | 
 | 56 | 	for (i = 0; i < NUM_SUN_MACHINES; i++) { | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 57 | 		if (Sun_Machines[i].id_machtype == machtype) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | 			if (machtype != (SM_SUN4M_OBP | 0x00) || | 
 | 59 | 			    prom_getproperty(prom_root_node, "banner-name", | 
 | 60 | 					     sysname, sizeof(sysname)) <= 0) | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 61 | 				printk(KERN_WARNING "TYPE: %s\n", | 
 | 62 | 				       Sun_Machines[i].name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | 			else | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 64 | 				printk(KERN_WARNING "TYPE: %s\n", sysname); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | 			return; | 
 | 66 | 		} | 
 | 67 | 	} | 
 | 68 |  | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 69 | 	prom_printf("IDPROM: Warning, bogus id_machtype value, 0x%x\n", machtype); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } | 
| Sam Ravnborg | 680e58f | 2008-12-07 00:50:29 -0800 | [diff] [blame] | 71 | #else | 
 | 72 | static void __init display_system_type(unsigned char machtype) | 
 | 73 | { | 
 | 74 | } | 
 | 75 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | /* Calculate the IDPROM checksum (xor of the data bytes). */ | 
 | 77 | static unsigned char __init calc_idprom_cksum(struct idprom *idprom) | 
 | 78 | { | 
 | 79 | 	unsigned char cksum, i, *ptr = (unsigned char *)idprom; | 
 | 80 |  | 
 | 81 | 	for (i = cksum = 0; i <= 0x0E; i++) | 
 | 82 | 		cksum ^= *ptr++; | 
 | 83 |  | 
 | 84 | 	return cksum; | 
 | 85 | } | 
 | 86 |  | 
 | 87 | /* Create a local IDPROM copy, verify integrity, and display information. */ | 
 | 88 | void __init idprom_init(void) | 
 | 89 | { | 
 | 90 | 	prom_get_idprom((char *) &idprom_buffer, sizeof(idprom_buffer)); | 
 | 91 |  | 
 | 92 | 	idprom = &idprom_buffer; | 
 | 93 |  | 
| Sam Ravnborg | 680e58f | 2008-12-07 00:50:29 -0800 | [diff] [blame] | 94 | 	if (idprom->id_format != 0x01) | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 95 | 		prom_printf("IDPROM: Warning, unknown format type!\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 |  | 
| Sam Ravnborg | 680e58f | 2008-12-07 00:50:29 -0800 | [diff] [blame] | 97 | 	if (idprom->id_cksum != calc_idprom_cksum(idprom)) | 
| Sam Ravnborg | 7d3a700 | 2008-12-07 00:49:53 -0800 | [diff] [blame] | 98 | 		prom_printf("IDPROM: Warning, checksum failure (nvram=%x, calc=%x)!\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 			    idprom->id_cksum, calc_idprom_cksum(idprom)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
 | 101 | 	display_system_type(idprom->id_machtype); | 
 | 102 |  | 
| David S. Miller | e3c6d4e | 2008-12-28 20:19:47 -0800 | [diff] [blame] | 103 | 	printk(KERN_WARNING "Ethernet address: %pM\n", idprom->id_ethaddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |