svn commit: r207863 - in stable/8/sys: sparc64/include sparc64/sparc64 sun4v/include

Marius Strobl marius at FreeBSD.org
Mon May 10 18:47:53 UTC 2010


Author: marius
Date: Mon May 10 18:47:52 2010
New Revision: 207863
URL: http://svn.freebsd.org/changeset/base/207863

Log:
  MFC: r207243
  
  Add OF_getscsinitid(), a helper similar to OF_getetheraddr() but for
  obtaining the initiator ID to be used for SPI controllers from the
  Open Firmware device tree.

Modified:
  stable/8/sys/sparc64/include/ofw_machdep.h
  stable/8/sys/sparc64/sparc64/ofw_machdep.c
  stable/8/sys/sun4v/include/ofw_machdep.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/geom/sched/   (props changed)

Modified: stable/8/sys/sparc64/include/ofw_machdep.h
==============================================================================
--- stable/8/sys/sparc64/include/ofw_machdep.h	Mon May 10 18:46:37 2010	(r207862)
+++ stable/8/sys/sparc64/include/ofw_machdep.h	Mon May 10 18:47:52 2010	(r207863)
@@ -36,6 +36,7 @@ typedef uint64_t cell_t;
 
 int  OF_decode_addr(phandle_t, int, int *, bus_addr_t *);
 void OF_getetheraddr(device_t, u_char *);
+u_int OF_getscsinitid(device_t);
 void cpu_shutdown(void *);
 int  ofw_entry(void *);
 void ofw_exit(void *);

Modified: stable/8/sys/sparc64/sparc64/ofw_machdep.c
==============================================================================
--- stable/8/sys/sparc64/sparc64/ofw_machdep.c	Mon May 10 18:46:37 2010	(r207862)
+++ stable/8/sys/sparc64/sparc64/ofw_machdep.c	Mon May 10 18:47:52 2010	(r207863)
@@ -1,6 +1,6 @@
 /*-
  * Copyright (c) 2001 by Thomas Moestl <tmm at FreeBSD.org>.
- * Copyright (c) 2005 - 2009 by Marius Strobl <marius at FreeBSD.org>.
+ * Copyright (c) 2005 - 2010 by Marius Strobl <marius at FreeBSD.org>.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -68,6 +68,19 @@ OF_getetheraddr(device_t dev, u_char *ad
 	bcopy(&idp.id_ether, addr, ETHER_ADDR_LEN);
 }
 
+u_int
+OF_getscsinitid(device_t dev)
+{
+	phandle_t node;
+	uint32_t id;
+
+	for (node = ofw_bus_get_node(dev); node != 0; node = OF_parent(node))
+		if (OF_getprop(node, "scsi-initiator-id", &id,
+		    sizeof(id)) > 0)
+			return (id);
+	return (7);
+}
+
 static __inline uint32_t
 phys_hi_mask_space(const char *bus, uint32_t phys_hi)
 {

Modified: stable/8/sys/sun4v/include/ofw_machdep.h
==============================================================================
--- stable/8/sys/sun4v/include/ofw_machdep.h	Mon May 10 18:46:37 2010	(r207862)
+++ stable/8/sys/sun4v/include/ofw_machdep.h	Mon May 10 18:47:52 2010	(r207863)
@@ -36,6 +36,7 @@ typedef uint64_t cell_t;
 
 int  OF_decode_addr(phandle_t, int, int *, bus_addr_t *);
 void OF_getetheraddr(device_t, u_char *);
+u_int OF_getscsinitid(device_t);
 void cpu_shutdown(void *);
 int  ofw_entry(void *);
 void ofw_exit(void *);


More information about the svn-src-all mailing list