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
37 #include <dev/mlx/mlxio.h>
38 #include <dev/mlx/mlxreg.h>
40 #include "mlxcontrol.h"
42 static void print_span(struct mlx_sys_drv_span
*span
, int arms
);
43 static void print_sys_drive(struct conf_config
*conf
, int drvno
);
44 static void print_phys_drive(struct conf_config
*conf
, int chn
, int targ
);
46 /********************************************************************************
47 * Get the configuration from the selected controller.
50 * Print the configuration for <controller>
52 * XXX update to support adding/deleting drives.
56 cmd_config(int argc
, char *argv
[])
58 struct conf_config conf
;
59 int unit
= 0; /* XXX */
62 bzero(&conf
.cc_cfg
, sizeof(conf
.cc_cfg
));
63 if (mlx_read_configuration(unit
, &conf
.cc_cfg
)) {
64 printf("mlx%d: error submitting READ CONFIGURATION\n", unit
);
67 printf("# Controller <INSERT DETAILS HERE>\n");
68 printf("#\n# Physical devices connected:\n");
69 for (i
= 0; i
< 5; i
++)
70 for (j
= 0; j
< 16; j
++)
71 print_phys_drive(&conf
, i
, j
);
72 printf("#\n# System Drives defined:\n");
74 for (i
= 0; i
< conf
.cc_cfg
.cc_num_sys_drives
; i
++)
75 print_sys_drive(&conf
, i
);
81 /********************************************************************************
82 * Print details for the system drive (drvno) in a format that we will be
83 * able to parse later.
85 * drive?? <raidlevel> <writemode>
86 * span? 0x????????-0x???????? ????MB on <disk> [...]
90 print_span(struct mlx_sys_drv_span
*span
, int arms
)
94 printf("0x%08x-0x%08x %uMB on", span
->sp_start_lba
, span
->sp_start_lba
+ span
->sp_nblks
, span
->sp_nblks
/ 2048);
95 for (i
= 0; i
< arms
; i
++)
96 printf(" disk%02d%02d", span
->sp_arm
[i
] >> 4, span
->sp_arm
[i
] & 0x0f);
101 print_sys_drive(struct conf_config
*conf
, int drvno
)
103 struct mlx_sys_drv
*drv
= &conf
->cc_cfg
.cc_sys_drives
[drvno
];
106 printf("drive%02d ", drvno
);
107 switch(drv
->sd_raidlevel
& 0xf) {
108 case MLX_SYS_DRV_RAID0
:
111 case MLX_SYS_DRV_RAID1
:
114 case MLX_SYS_DRV_RAID3
:
117 case MLX_SYS_DRV_RAID5
:
120 case MLX_SYS_DRV_RAID6
:
123 case MLX_SYS_DRV_JBOD
:
129 printf(" write%s\n", drv
->sd_raidlevel
& MLX_SYS_DRV_WRITEBACK
? "back" : "through");
131 for (i
= 0; i
< drv
->sd_valid_spans
; i
++) {
132 printf(" span%d ", i
);
133 print_span(&drv
->sd_span
[i
], drv
->sd_valid_arms
);
137 /********************************************************************************
138 * Print details for the physical drive at chn/targ in a format suitable for
141 * <type>CCTT (<state>) "<vendor>/<model>"
146 print_phys_drive(struct conf_config
*conf
, int chn
, int targ
)
148 struct mlx_phys_drv
*drv
= &conf
->cc_cfg
.cc_phys_drives
[chn
* 16 + targ
];
150 /* if the drive isn't present, don't print it */
151 if (!(drv
->pd_flags1
& MLX_PHYS_DRV_PRESENT
))
154 mlx_print_phys_drv(drv
, chn
, targ
, "# ", 1);