blob: 1b0bd9120c1c9a8c6d67c6debba25d5409799885 [file] [log] [blame]
Adrian Bunk88278ca2008-05-19 16:53:02 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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 Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/kernel.h>
9#include <linux/types.h>
10#include <linux/init.h>
11
12#include <asm/oplib.h>
13#include <asm/idprom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15struct idprom *idprom;
16static struct idprom idprom_buffer;
17
Sam Ravnborg680e58f2008-12-07 00:50:29 -080018#ifdef CONFIG_SPARC32
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080019#include <asm/machines.h> /* Fun with Sun released architectures. */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/* Here is the master table of Sun machines which use some implementation
22 * of the Sparc CPU and have a meaningful IDPROM machtype value that we
23 * know about. See asm-sparc/machines.h for empirical constants.
24 */
Adrian Bunkc61c65c2008-06-05 11:40:58 -070025static struct Sun_Machine_Models Sun_Machines[NUM_SUN_MACHINES] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* First, Sun4's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080027{ .name = "Sun 4/100 Series", .id_machtype = (SM_SUN4 | SM_4_110) },
28{ .name = "Sun 4/200 Series", .id_machtype = (SM_SUN4 | SM_4_260) },
29{ .name = "Sun 4/300 Series", .id_machtype = (SM_SUN4 | SM_4_330) },
30{ .name = "Sun 4/400 Series", .id_machtype = (SM_SUN4 | SM_4_470) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/* Now, Sun4c's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080032{ .name = "Sun4c SparcStation 1", .id_machtype = (SM_SUN4C | SM_4C_SS1) },
33{ .name = "Sun4c SparcStation IPC", .id_machtype = (SM_SUN4C | SM_4C_IPC) },
34{ .name = "Sun4c SparcStation 1+", .id_machtype = (SM_SUN4C | SM_4C_SS1PLUS) },
35{ .name = "Sun4c SparcStation SLC", .id_machtype = (SM_SUN4C | SM_4C_SLC) },
36{ .name = "Sun4c SparcStation 2", .id_machtype = (SM_SUN4C | SM_4C_SS2) },
37{ .name = "Sun4c SparcStation ELC", .id_machtype = (SM_SUN4C | SM_4C_ELC) },
38{ .name = "Sun4c SparcStation IPX", .id_machtype = (SM_SUN4C | SM_4C_IPX) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* Finally, early Sun4m's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080040{ .name = "Sun4m SparcSystem600", .id_machtype = (SM_SUN4M | SM_4M_SS60) },
41{ .name = "Sun4m SparcStation10/20", .id_machtype = (SM_SUN4M | SM_4M_SS50) },
42{ .name = "Sun4m SparcStation5", .id_machtype = (SM_SUN4M | SM_4M_SS40) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* One entry for the OBP arch's which are sun4d, sun4e, and newer sun4m's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080044{ .name = "Sun4M OBP based system", .id_machtype = (SM_SUN4M_OBP | 0x0) } };
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46static void __init display_system_type(unsigned char machtype)
47{
48 char sysname[128];
49 register int i;
50
51 for (i = 0; i < NUM_SUN_MACHINES; i++) {
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080052 if (Sun_Machines[i].id_machtype == machtype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (machtype != (SM_SUN4M_OBP | 0x00) ||
54 prom_getproperty(prom_root_node, "banner-name",
55 sysname, sizeof(sysname)) <= 0)
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080056 printk(KERN_WARNING "TYPE: %s\n",
57 Sun_Machines[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 else
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080059 printk(KERN_WARNING "TYPE: %s\n", sysname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return;
61 }
62 }
63
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080064 prom_printf("IDPROM: Warning, bogus id_machtype value, 0x%x\n", machtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
Sam Ravnborg680e58f2008-12-07 00:50:29 -080066#else
67static void __init display_system_type(unsigned char machtype)
68{
69}
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Calculate the IDPROM checksum (xor of the data bytes). */
72static unsigned char __init calc_idprom_cksum(struct idprom *idprom)
73{
74 unsigned char cksum, i, *ptr = (unsigned char *)idprom;
75
76 for (i = cksum = 0; i <= 0x0E; i++)
77 cksum ^= *ptr++;
78
79 return cksum;
80}
81
82/* Create a local IDPROM copy, verify integrity, and display information. */
83void __init idprom_init(void)
84{
85 prom_get_idprom((char *) &idprom_buffer, sizeof(idprom_buffer));
86
87 idprom = &idprom_buffer;
88
Sam Ravnborg680e58f2008-12-07 00:50:29 -080089 if (idprom->id_format != 0x01)
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080090 prom_printf("IDPROM: Warning, unknown format type!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Sam Ravnborg680e58f2008-12-07 00:50:29 -080092 if (idprom->id_cksum != calc_idprom_cksum(idprom))
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080093 prom_printf("IDPROM: Warning, checksum failure (nvram=%x, calc=%x)!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 idprom->id_cksum, calc_idprom_cksum(idprom));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 display_system_type(idprom->id_machtype);
97
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080098 printk(KERN_WARNING "Ethernet address: %02x:%02x:%02x:%02x:%02x:%02x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 idprom->id_ethaddr[0], idprom->id_ethaddr[1],
100 idprom->id_ethaddr[2], idprom->id_ethaddr[3],
101 idprom->id_ethaddr[4], idprom->id_ethaddr[5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}