blob: d6c46d51222080e323fb13c9f0f359db938c560c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Adrian Bunk88278ca2008-05-19 16:53:02 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * idprom.c: Routines to load the idprom into kernel addresses and
4 * interpret the data contained within.
5 *
6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/init.h>
Paul Gortmaker066bcac2011-07-22 13:18:16 -040012#include <linux/export.h>
David S. Millerc7f5d102015-11-05 11:34:57 -050013#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <asm/oplib.h>
16#include <asm/idprom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18struct idprom *idprom;
Sam Ravnborg6943f3d2009-01-08 16:58:05 -080019EXPORT_SYMBOL(idprom);
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021static struct idprom idprom_buffer;
22
Sam Ravnborg680e58f2008-12-07 00:50:29 -080023#ifdef CONFIG_SPARC32
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080024#include <asm/machines.h> /* Fun with Sun released architectures. */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* Here is the master table of Sun machines which use some implementation
27 * of the Sparc CPU and have a meaningful IDPROM machtype value that we
28 * know about. See asm-sparc/machines.h for empirical constants.
29 */
David S. Miller58fa4dc2012-05-11 20:45:18 -070030static struct Sun_Machine_Models Sun_Machines[] = {
31/* First, Leon */
Konrad Eisele0fd7ef12009-08-17 00:13:31 +000032{ .name = "Leon3 System-on-a-Chip", .id_machtype = (M_LEON | M_LEON3_SOC) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Finally, early Sun4m's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080034{ .name = "Sun4m SparcSystem600", .id_machtype = (SM_SUN4M | SM_4M_SS60) },
35{ .name = "Sun4m SparcStation10/20", .id_machtype = (SM_SUN4M | SM_4M_SS50) },
36{ .name = "Sun4m SparcStation5", .id_machtype = (SM_SUN4M | SM_4M_SS40) },
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* One entry for the OBP arch's which are sun4d, sun4e, and newer sun4m's */
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080038{ .name = "Sun4M OBP based system", .id_machtype = (SM_SUN4M_OBP | 0x0) } };
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static void __init display_system_type(unsigned char machtype)
41{
42 char sysname[128];
43 register int i;
44
David S. Miller58fa4dc2012-05-11 20:45:18 -070045 for (i = 0; i < ARRAY_SIZE(Sun_Machines); i++) {
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080046 if (Sun_Machines[i].id_machtype == machtype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 if (machtype != (SM_SUN4M_OBP | 0x00) ||
48 prom_getproperty(prom_root_node, "banner-name",
49 sysname, sizeof(sysname)) <= 0)
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080050 printk(KERN_WARNING "TYPE: %s\n",
51 Sun_Machines[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 else
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080053 printk(KERN_WARNING "TYPE: %s\n", sysname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return;
55 }
56 }
57
Sam Ravnborg7d3a7002008-12-07 00:49:53 -080058 prom_printf("IDPROM: Warning, bogus id_machtype value, 0x%x\n", machtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
Sam Ravnborg680e58f2008-12-07 00:50:29 -080060#else
61static void __init display_system_type(unsigned char machtype)
62{
63}
64#endif
David S. Millerc7f5d102015-11-05 11:34:57 -050065
66unsigned char *arch_get_platform_mac_address(void)
67{
68 return idprom->id_ethaddr;
69}
70
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
David S. Millere3c6d4e2008-12-28 20:19:47 -080098 printk(KERN_WARNING "Ethernet address: %pM\n", idprom->id_ethaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}