Home | History | Annotate | Line # | Download | only in mvme68k
md.c revision 1.4
      1 /*	$NetBSD: md.c,v 1.4 2015/05/10 10:14:03 martin Exp $	*/
      2 
      3 /*
      4  * Copyright 1997 Piermont Information Systems Inc.
      5  * All rights reserved.
      6  *
      7  * Based on code written by Philip A. Nelson for Piermont Information
      8  * Systems Inc.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. The name of Piermont Information Systems Inc. may not be used to endorse
     19  *    or promote products derived from this software without specific prior
     20  *    written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
     23  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
     26  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     32  * THE POSSIBILITY OF SUCH DAMAGE.
     33  */
     34 
     35 /* md.c -- mvme68k machine specific routines */
     36 /* This file is in close sync with hp300, pmax, sparc, vax and x68k md.c */
     37 
     38 #include <stdio.h>
     39 #include <unistd.h>
     40 #include <sys/disklabel.h>
     41 #include <sys/ioctl.h>
     42 #include <sys/param.h>
     43 #include <util.h>
     44 
     45 #include "defs.h"
     46 #include "md.h"
     47 #include "msg_defs.h"
     48 #include "menu_defs.h"
     49 
     50 void
     51 md_init(void)
     52 {
     53 }
     54 
     55 void
     56 md_init_set_status(int flags)
     57 {
     58 	(void)flags;
     59 }
     60 
     61 int
     62 md_get_info(void)
     63 {
     64 	char buf[1024];
     65 	int fd;
     66 	char dev_name[100];
     67 	struct disklabel disklabel;
     68 
     69 	snprintf(dev_name, 100, "/dev/r%sc", pm->diskdev);
     70 
     71 	fd = open(dev_name, O_RDONLY, 0);
     72 	if (fd < 0) {
     73 		if (logfp)
     74 			(void)fprintf(logfp, "Can't open %s\n", dev_name);
     75 		endwin();
     76 		fprintf(stderr, "Can't open %s\n", dev_name);
     77 		exit(1);
     78 	}
     79 	if (ioctl(fd, DIOCGDINFO, &disklabel) == -1) {
     80 		if (logfp)
     81 			(void)fprintf(logfp, "Can't read disklabel on %s.\n",
     82 				dev_name);
     83 		endwin();
     84 		fprintf(stderr, "Can't read disklabel on %s.\n", dev_name);
     85 		close(fd);
     86 		exit(1);
     87 	}
     88 	if (disklabel.d_secsize != 512) {
     89 		endwin();
     90 		fprintf(stderr, "Non-512byte/sector disk is not supported.\n");
     91 		close(fd);
     92 		exit(1);
     93 	}
     94 
     95 	pm->dlcyl = disklabel.d_ncylinders;
     96 	pm->dlhead = disklabel.d_ntracks;
     97 	pm->dlsec = disklabel.d_nsectors;
     98 	pm->sectorsize = disklabel.d_secsize;
     99 	pm->dlcylsize = disklabel.d_secpercyl;
    100 	pm->dlsize = pm->dlcyl*pm->dlhead*pm->dlsec;
    101 
    102 	if (read(fd, buf, 1024) < 0) {
    103 		endwin();
    104 		fprintf(stderr, "Can't read %s\n", dev_name);
    105 		close(fd);
    106 		exit(1);
    107 	}
    108 
    109 	/* preserve first cylinder for system. */
    110 	pm->ptstart = disklabel.d_secpercyl;
    111 
    112 	close(fd);
    113 
    114 	return 1;
    115 }
    116 
    117 /*
    118  * md back-end code for menu-driven BSD disklabel editor.
    119  */
    120 int
    121 md_make_bsd_partitions(void)
    122 {
    123 
    124 	return(make_bsd_partitions());
    125 }
    126 
    127 /*
    128  * any additional partition validation
    129  */
    130 int
    131 md_check_partitions(void)
    132 {
    133 	/* mvme68k partitions must be in order of the range. */
    134 	int part, last = PART_A-1;
    135 	uint32_t start = 0;
    136 
    137 	for (part = PART_A; part < 8; part++) {
    138 		if (part == PART_C)
    139 			continue;
    140 		if (last >= PART_A && pm->bsdlabel[part].pi_size > 0) {
    141 			msg_display(MSG_emptypart, part+'a');
    142 			process_menu(MENU_ok, NULL);
    143 			return 0;
    144 		}
    145 		if (pm->bsdlabel[part].pi_size == 0) {
    146 			if (last < PART_A)
    147 				last = part;
    148 		} else {
    149 			if (start > pm->bsdlabel[part].pi_offset) {
    150 				msg_display(MSG_ordering, part+'a');
    151 				if (ask_yesno(NULL))
    152 					return 0;
    153 			}
    154 			start = pm->bsdlabel[part].pi_offset;
    155 		}
    156 	}
    157 
    158 	return 1;
    159 }
    160 
    161 /*
    162  * hook called before writing new disklabel.
    163  */
    164 int
    165 md_pre_disklabel(void)
    166 {
    167 	return 0;
    168 }
    169 
    170 /*
    171  * hook called after writing disklabel to new target disk.
    172  */
    173 int
    174 md_post_disklabel(void)
    175 {
    176 	return 0;
    177 }
    178 
    179 /*
    180  * hook called after upgrade() or install() has finished setting
    181  * up the target disk but immediately before the user is given the
    182  * ``disks are now set up'' message..
    183  *
    184  * On mvme68k, we use this opportunity to install the boot blocks.
    185  */
    186 int
    187 md_post_newfs(void)
    188 {
    189 
    190 	/* boot blocks ... */
    191 	msg_display(MSG_dobootblks, pm->diskdev);
    192 	cp_to_target("/usr/mdec/bootsd", "/.bootsd");
    193 	if (run_program(RUN_DISPLAY | RUN_NO_CLEAR,
    194 	    "/usr/mdec/installboot %s /usr/mdec/bootxx /dev/r%sa",
    195 	    target_expand("/.bootsd"), pm->diskdev))
    196 		process_menu(MENU_ok,
    197 			deconst("Warning: disk is probably not bootable"));
    198 	return 0;
    199 }
    200 
    201 int
    202 md_post_extract(void)
    203 {
    204 	return 0;
    205 }
    206 
    207 void
    208 md_cleanup_install(void)
    209 {
    210 #ifdef notyet			/* sed is too large for ramdisk */
    211 	enable_rc_conf();
    212 #endif
    213 }
    214 
    215 int
    216 md_pre_update(void)
    217 {
    218 	return 1;
    219 }
    220 
    221 /* Upgrade support */
    222 int
    223 md_update(void)
    224 {
    225 	md_post_newfs();
    226 	return 1;
    227 }
    228 
    229 int
    230 md_pre_mount()
    231 {
    232 	return 0;
    233 }
    234