2 * Copyright (c) 1999 Michael Smith
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/mlxcontrol/config.c,v 1.2.2.1 2000/04/24 19:44:46 msmith Exp $
27 * $DragonFly: src/usr.sbin/mlxcontrol/config.c,v 1.3 2003/08/08 04:18:46 dillon Exp $
38 #include <dev/raid/mlx/mlxio.h>
39 #include <dev/raid/mlx/mlxreg.h>
41 #include "mlxcontrol.h"
43 static void print_span(struct mlx_sys_drv_span
*span
, int arms
);
44 static void print_sys_drive(struct conf_config
*conf
, int drvno
);
45 static void print_phys_drive(struct conf_config
*conf
, int chn
, int targ
);
47 /********************************************************************************
48 * Get the configuration from the selected controller.
51 * Print the configuration for <controller>
53 * XXX update to support adding/deleting drives.
57 cmd_config(int argc
, char *argv
[])
59 struct conf_config conf
;
60 int unit
= 0; /* XXX */
63 bzero(&conf
.cc_cfg
, sizeof(conf
.cc_cfg
));
64 if (mlx_read_configuration(unit
, &conf
.cc_cfg
)) {
65 printf("mlx%d: error submitting READ CONFIGURATION\n", unit
);
68 printf("# Controller <INSERT DETAILS HERE>\n");
69 printf("#\n# Physical devices connected:\n");
70 for (i
= 0; i
< 5; i
++)
71 for (j
= 0; j
< 16; j
++)
72 print_phys_drive(&conf
, i
, j
);
73 printf("#\n# System Drives defined:\n");
75 for (i
= 0; i
< conf
.cc_cfg
.cc_num_sys_drives
; i
++)
76 print_sys_drive(&conf
, i
);
82 /********************************************************************************
83 * Print details for the system drive (drvno) in a format that we will be
84 * able to parse later.
86 * drive?? <raidlevel> <writemode>
87 * span? 0x????????-0x???????? ????MB on <disk> [...]
91 print_span(struct mlx_sys_drv_span
*span
, int arms
)
95 printf("0x%08x-0x%08x %uMB on", span
->sp_start_lba
, span
->sp_start_lba
+ span
->sp_nblks
, span
->sp_nblks
/ 2048);
96 for (i
= 0; i
< arms
; i
++)
97 printf(" disk%02d%02d", span
->sp_arm
[i
] >> 4, span
->sp_arm
[i
] & 0x0f);
102 print_sys_drive(struct conf_config
*conf
, int drvno
)
104 struct mlx_sys_drv
*drv
= &conf
->cc_cfg
.cc_sys_drives
[drvno
];
107 printf("drive%02d ", drvno
);
108 switch(drv
->sd_raidlevel
& 0xf) {
109 case MLX_SYS_DRV_RAID0
:
112 case MLX_SYS_DRV_RAID1
:
115 case MLX_SYS_DRV_RAID3
:
118 case MLX_SYS_DRV_RAID5
:
121 case MLX_SYS_DRV_RAID6
:
124 case MLX_SYS_DRV_JBOD
:
130 printf(" write%s\n", drv
->sd_raidlevel
& MLX_SYS_DRV_WRITEBACK
? "back" : "through");
132 for (i
= 0; i
< drv
->sd_valid_spans
; i
++) {
133 printf(" span%d ", i
);
134 print_span(&drv
->sd_span
[i
], drv
->sd_valid_arms
);
138 /********************************************************************************
139 * Print details for the physical drive at chn/targ in a format suitable for
142 * <type>CCTT (<state>) "<vendor>/<model>"
147 print_phys_drive(struct conf_config
*conf
, int chn
, int targ
)
149 struct mlx_phys_drv
*drv
= &conf
->cc_cfg
.cc_phys_drives
[chn
* 16 + targ
];
151 /* if the drive isn't present, don't print it */
152 if (!(drv
->pd_flags1
& MLX_PHYS_DRV_PRESENT
))
155 mlx_print_phys_drv(drv
, chn
, targ
, "# ", 1);