Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Apr 2017 17:57:56 +0000 (UTC)
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r316682 - in head/sys/boot: ofw/libofw sparc64/loader
Message-ID:  <201704101757.v3AHvu4J063594@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tsoome
Date: Mon Apr 10 17:57:56 2017
New Revision: 316682
URL: https://svnweb.freebsd.org/changeset/base/316682

Log:
  loader: r316585 did miss sparc/ofw
  
  This update does add the code to pass partition size to vdev_probe() via
  simple callback. Tested via tinderbox build, but not yet with actual boot.
  The code can be improved still, but to verify the idea to read media
  block size and amedia size has to be confirmed first.
  
  Reviewed by:	imp
  Differential Revision:	https://reviews.freebsd.org/D10302

Modified:
  head/sys/boot/ofw/libofw/ofw_disk.c
  head/sys/boot/ofw/libofw/openfirm.c
  head/sys/boot/ofw/libofw/openfirm.h
  head/sys/boot/sparc64/loader/main.c

Modified: head/sys/boot/ofw/libofw/ofw_disk.c
==============================================================================
--- head/sys/boot/ofw/libofw/ofw_disk.c	Mon Apr 10 17:15:59 2017	(r316681)
+++ head/sys/boot/ofw/libofw/ofw_disk.c	Mon Apr 10 17:57:56 2017	(r316682)
@@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$");
 #include <machine/stdarg.h>
 
 #include <stand.h>
+#include <sys/disk.h>
 
 #include "bootstrap.h"
 #include "libofw.h"
@@ -154,11 +155,26 @@ ofwd_close(struct open_file *f)
 }
 
 static int
-ofwd_ioctl(struct open_file *f __unused, u_long cmd __unused,
-    void *data __unused)
+ofwd_ioctl(struct open_file *f, u_long cmd, void *data)
 {
+	struct ofw_devdesc *dev = f->f_devdata;
+	int block_size;
+	unsigned int n;
 
-	return (EINVAL);
+	switch (cmd) {
+	case DIOCGSECTORSIZE:
+		block_size = OF_block_size(dev->d_handle);
+		*(u_int *)data = block_size;
+		break;
+	case DIOCGMEDIASIZE:
+		block_size = OF_block_size(dev->d_handle);
+		n = OF_blocks(dev->d_handle);
+		*(uint64_t *)data = (uint64_t)(n * block_size);
+		break;
+	default:
+		return (ENOTTY);
+	}
+	return (0);
 }
 
 static int

Modified: head/sys/boot/ofw/libofw/openfirm.c
==============================================================================
--- head/sys/boot/ofw/libofw/openfirm.c	Mon Apr 10 17:15:59 2017	(r316681)
+++ head/sys/boot/ofw/libofw/openfirm.c	Mon Apr 10 17:57:56 2017	(r316682)
@@ -622,6 +622,53 @@ OF_seek(ihandle_t instance, u_int64_t po
 	return (args.status);
 }
 
+/* Blocks. */
+unsigned int
+OF_blocks(ihandle_t instance)
+{
+	static struct {
+		cell_t name;
+		cell_t nargs;
+		cell_t nreturns;
+		cell_t instance;
+		cell_t result;
+		cell_t blocks;
+	} args = {
+		(cell_t)"#blocks",
+		2,
+		1,
+	};
+
+	args.instance = instance;
+	if (openfirmware(&args) == -1)
+		return ((unsigned int)-1);
+	return (args.blocks);
+}
+
+/* Block size. */
+int
+OF_block_size(ihandle_t instance)
+{
+	static struct {
+		cell_t name;
+		cell_t nargs;
+		cell_t nreturns;
+		cell_t instance;
+		cell_t result;
+		cell_t size;
+	} args = {
+		(cell_t)"block-size",
+		2,
+		1,
+	};
+
+	args.instance = instance;
+	if (openfirmware(&args) == -1)
+		return (512);
+	return (args.size);
+}
+
+/* 
 /*
  * Memory functions
  */

Modified: head/sys/boot/ofw/libofw/openfirm.h
==============================================================================
--- head/sys/boot/ofw/libofw/openfirm.h	Mon Apr 10 17:15:59 2017	(r316681)
+++ head/sys/boot/ofw/libofw/openfirm.h	Mon Apr 10 17:57:56 2017	(r316682)
@@ -105,6 +105,8 @@ void		OF_close(ihandle_t);
 int		OF_read(ihandle_t, void *, int);
 int		OF_write(ihandle_t, void *, int);
 int		OF_seek(ihandle_t, u_quad_t);
+unsigned int	OF_blocks(ihandle_t);
+int		OF_block_size(ihandle_t);
 
 /* Memory functions */
 void 		*OF_claim(void *, u_int, u_int);

Modified: head/sys/boot/sparc64/loader/main.c
==============================================================================
--- head/sys/boot/sparc64/loader/main.c	Mon Apr 10 17:15:59 2017	(r316681)
+++ head/sys/boot/sparc64/loader/main.c	Mon Apr 10 17:57:56 2017	(r316682)
@@ -735,6 +735,16 @@ tlb_init_sun4u(void)
 }
 
 #ifdef LOADER_ZFS_SUPPORT
+
+/* Set by sparc64_zfs_probe to provide partition size. */
+static size_t part_size;
+
+uint64_t
+ldi_get_size(void *priv __unused)
+{
+	return ((uint64_t)part_size);
+}
+
 static void
 sparc64_zfs_probe(void)
 {
@@ -742,13 +752,11 @@ sparc64_zfs_probe(void)
 	char alias[64], devname[sizeof(alias) + sizeof(":x") - 1];
 	char type[sizeof("device_type")];
 	char *bdev, *dev, *odev;
-	uint64_t guid;
+	uint64_t guid, *guidp;
 	int fd, len, part;
 	phandle_t aliases, options;
 
-	/* Get the GUID of the ZFS pool on the boot device. */
 	guid = 0;
-	zfs_probe_dev(bootpath, &guid);
 
 	/*
 	 * Get the GUIDs of the ZFS pools on any additional disks listed in
@@ -771,12 +779,6 @@ sparc64_zfs_probe(void)
 			continue;
 		strcpy(alias, dev);
 		(void)OF_getprop(aliases, dev, alias, sizeof(alias));
-		/*
-		 * Don't probe the boot disk twice.  Note that bootpath
-		 * includes the partition specifier.
-		 */
-		if (strncmp(alias, bootpath, strlen(alias)) == 0)
-			continue;
 		if (OF_getprop(OF_finddevice(alias), "device_type", type,
 		    sizeof(type)) == -1)
 			continue;
@@ -798,8 +800,14 @@ sparc64_zfs_probe(void)
 			if (part == 2 || vtoc.part[part].tag !=
 			    VTOC_TAG_FREEBSD_ZFS)
 				continue;
+			part_size = vtoc.map[part].nblks;
 			(void)sprintf(devname, "%s:%c", alias, part + 'a');
-			if (zfs_probe_dev(devname, NULL) == ENXIO)
+			/* Get the GUID of the ZFS pool on the boot device. */
+			if (strcmp(devname, bootpath) == 0)
+				guidp = &guid;
+			else
+				guidp = NULL;
+			if (zfs_probe_dev(devname, guidp) == ENXIO)
 				break;
 		}
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704101757.v3AHvu4J063594>