| /src/sys/arch/sparc/include/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.9 2005/12/11 12:19:05 christos Exp $ */ 3 #include <dev/sun/idprom.h>
|
| Makefile | 11 idprom.h ieee.h ieeefp.h \
|
| /src/sys/arch/sparc64/include/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.4 2002/07/20 11:52:21 mrg Exp $ */ 3 #include <sparc/idprom.h>
|
| Makefile | 11 idprom.h ieee.h ieeefp.h instr.h intr.h \
|
| /src/sys/arch/sun2/include/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.2 2001/06/14 13:12:50 fredette Exp $ */ 3 #include <sun68k/idprom.h>
|
| dvma.h | 43 #include <machine/idprom.h>
|
| Makefile | 11 idprom.h ieee.h ieeefp.h intr.h \
|
| /src/sys/arch/sun3/include/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.22 2008/04/28 20:23:38 martin Exp $ */ 35 #include <dev/sun/idprom.h> 39 extern struct idprom identity_prom;
|
| Makefile | 11 idprom.h ieee.h ieeefp.h \
|
| /src/sys/arch/sun68k/include/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.5 2008/04/28 20:23:38 martin Exp $ */ 35 #include <dev/sun/idprom.h> 39 extern struct idprom identity_prom;
|
| Makefile | 9 idprom.h \
|
| /src/sys/arch/sun68k/stand/libsa/ |
| Makefile.inc | 10 idprom.c netif_sun.c \
|
| idprom.c | 1 /* $NetBSD: idprom.c,v 1.8 2020/06/20 18:44:17 riastradh Exp $ */ 37 #include <machine/idprom.h> 44 * This driver provides a soft copy of the IDPROM. 50 struct idprom identity_prom = { 0 }; 78 /* Fetch a copy of the idprom. */ 86 /* Copy the IDPROM contents and do the checksum. */ 95 panic("idprom: bad version"); 107 /* Copy the IDPROM contents and do the checksum. */ 110 printf("idprom: bad checksum\n"); 121 /* Copy the IDPROM contents and do the checksum. * [all...] |
| sun3.c | 45 #include <machine/idprom.h> 255 * Copy the IDPROM contents into the passed buffer. 256 * The caller (idprom.c) will do the checksum. 265 len = sizeof(struct idprom);
|
| /src/sys/dev/sun/ |
| idprom.h | 1 /* $NetBSD: idprom.h,v 1.3 2008/04/28 20:23:58 martin Exp $ */ 39 struct idprom { struct 51 #define IDPROM_SIZE (sizeof(struct idprom)) 87 extern struct idprom identity_prom;
|
| Makefile | 6 INCS= disklabel.h eeprom.h fbio.h idprom.h kbd_reg.h kbio.h vuid_event.h
|
| /src/sys/arch/sun2/sun2/ |
| idprom.c | 1 /* $NetBSD: idprom.c,v 1.7 2008/04/28 20:23:37 martin Exp $ */ 37 __KERNEL_RCSID(0, "$NetBSD: idprom.c,v 1.7 2008/04/28 20:23:37 martin Exp $"); 47 #include <machine/idprom.h> 56 struct idprom identity_prom; 63 * Copy the IDPROM contents, 73 printf("idprom: bad checksum\n"); 75 printf("idprom: bad version\n"); 96 struct idprom *idp; 103 * Construct the hostid from the idprom contents. 126 * Copy the IDPROM to memory [all...] |
| leds.c | 49 #include <machine/idprom.h>
|
| /src/sys/arch/sun3/sun3/ |
| idprom.c | 1 /* $NetBSD: idprom.c,v 1.30 2013/09/07 15:56:11 tsutsui Exp $ */ 37 __KERNEL_RCSID(0, "$NetBSD: idprom.c,v 1.30 2013/09/07 15:56:11 tsutsui Exp $"); 45 #include <machine/idprom.h> 58 struct idprom identity_prom; 65 * Copy the IDPROM contents, 75 printf("idprom: bad checksum\n"); 77 printf("idprom: bad version\n"); 98 struct idprom *idp; 105 * Construct the hostid from the idprom contents. 129 * Copy the IDPROM to memory [all...] |
| leds.c | 53 #include <machine/idprom.h>
|
| /src/sys/arch/sun3/sun3x/ |
| idprom.c | 1 /* $NetBSD: idprom.c,v 1.16 2013/09/06 17:43:19 tsutsui Exp $ */ 37 __KERNEL_RCSID(0, "$NetBSD: idprom.c,v 1.16 2013/09/06 17:43:19 tsutsui Exp $"); 47 #include <machine/idprom.h> 60 struct idprom identity_prom; 67 * Copy the IDPROM contents, 77 printf("idprom: bad checksum\n"); 79 printf("idprom: bad version\n"); 100 struct idprom *idp; 107 * Construct the hostid from the idprom contents. 145 /* First, probe for a separate IDPROM (3/470). * [all...] |
| locore2.c | 51 #include <machine/idprom.h> 192 * Also do setup specific to the Sun PROM monitor and IDPROM here. 233 * Find the IDPROM and copy it to memory.
|
| /src/sys/arch/sparc/sparc/ |
| promlib.c | 1190 static struct idprom idprom; variable in typeref:struct:idprom 1195 struct idprom * 1202 if (idprom.idp_format != 0) 1204 return (&idprom); 1206 dst = (u_char *)&idprom; 1207 len = sizeof(struct idprom); 1222 * Fetch the `idprom' property at the root node. 1229 if (prom_getprop(node, "idprom", 1, &len, &dst) != 0) { 1230 printf("`idprom' property cannot be read: [all...] |
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| armada-385-atl-x530.dts | 194 partition@idprom { 196 label = "idprom";
|
| /src/sys/arch/sun3/dev/ |
| if_ie_obio.c | 60 #include <machine/idprom.h>
|