2008-02-03 21:48:56 +00:00
|
|
|
/*
|
|
|
|
* SCSI Enclosure Services
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 James Bottomley <James.Bottomley@HansenPartnership.com>
|
|
|
|
*
|
|
|
|
**-----------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
** This program is free software; you can redistribute it and/or
|
|
|
|
** modify it under the terms of the GNU General Public License
|
|
|
|
** version 2 as published by the Free Software Foundation.
|
|
|
|
**
|
|
|
|
** This program is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with this program; if not, write to the Free Software
|
|
|
|
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
**
|
|
|
|
**-----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2008-02-03 21:48:56 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/enclosure.h>
|
2014-03-15 08:51:51 +00:00
|
|
|
#include <asm/unaligned.h>
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
#include <scsi/scsi.h>
|
|
|
|
#include <scsi/scsi_cmnd.h>
|
|
|
|
#include <scsi/scsi_dbg.h>
|
|
|
|
#include <scsi/scsi_device.h>
|
|
|
|
#include <scsi/scsi_driver.h>
|
|
|
|
#include <scsi/scsi_host.h>
|
|
|
|
|
2015-12-09 20:56:07 +00:00
|
|
|
#include <scsi/scsi_transport_sas.h>
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
struct ses_device {
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *page1;
|
2011-03-18 15:24:23 +00:00
|
|
|
unsigned char *page1_types;
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *page2;
|
|
|
|
unsigned char *page10;
|
2008-02-03 21:48:56 +00:00
|
|
|
short page1_len;
|
2011-03-18 15:24:23 +00:00
|
|
|
short page1_num_types;
|
2008-02-03 21:48:56 +00:00
|
|
|
short page2_len;
|
|
|
|
short page10_len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ses_component {
|
|
|
|
u64 addr;
|
|
|
|
};
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
static bool ses_page2_supported(struct enclosure_device *edev)
|
|
|
|
{
|
|
|
|
struct ses_device *ses_dev = edev->scratch;
|
|
|
|
|
|
|
|
return (ses_dev->page2 != NULL);
|
|
|
|
}
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
static int ses_probe(struct device *dev)
|
|
|
|
{
|
|
|
|
struct scsi_device *sdev = to_scsi_device(dev);
|
|
|
|
int err = -ENODEV;
|
|
|
|
|
|
|
|
if (sdev->type != TYPE_ENCLOSURE)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
sdev_printk(KERN_NOTICE, sdev, "Attached Enclosure device\n");
|
|
|
|
|
|
|
|
out:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-06-23 15:14:31 +00:00
|
|
|
#define SES_TIMEOUT (30 * HZ)
|
2008-02-03 21:48:56 +00:00
|
|
|
#define SES_RETRIES 3
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
static void init_device_slot_control(unsigned char *dest_desc,
|
|
|
|
struct enclosure_component *ecomp,
|
|
|
|
unsigned char *status)
|
|
|
|
{
|
|
|
|
memcpy(dest_desc, status, 4);
|
|
|
|
dest_desc[0] = 0;
|
|
|
|
/* only clear byte 1 for ENCLOSURE_COMPONENT_DEVICE */
|
|
|
|
if (ecomp->type == ENCLOSURE_COMPONENT_DEVICE)
|
|
|
|
dest_desc[1] = 0;
|
|
|
|
dest_desc[2] &= 0xde;
|
|
|
|
dest_desc[3] &= 0x3c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
static int ses_recv_diag(struct scsi_device *sdev, int page_code,
|
|
|
|
void *buf, int bufflen)
|
|
|
|
{
|
2015-12-08 17:00:31 +00:00
|
|
|
int ret;
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char cmd[] = {
|
2008-02-03 21:48:56 +00:00
|
|
|
RECEIVE_DIAGNOSTIC,
|
|
|
|
1, /* Set PCV bit */
|
|
|
|
page_code,
|
|
|
|
bufflen >> 8,
|
|
|
|
bufflen & 0xff,
|
|
|
|
0
|
|
|
|
};
|
2015-12-08 17:00:31 +00:00
|
|
|
unsigned char recv_page_code;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2015-12-08 17:00:31 +00:00
|
|
|
ret = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, bufflen,
|
2008-12-04 05:24:39 +00:00
|
|
|
NULL, SES_TIMEOUT, SES_RETRIES, NULL);
|
2017-08-01 18:45:36 +00:00
|
|
|
if (unlikely(ret))
|
2015-12-08 17:00:31 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
recv_page_code = ((unsigned char *)buf)[0];
|
|
|
|
|
|
|
|
if (likely(recv_page_code == page_code))
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* successful diagnostic but wrong page code. This happens to some
|
|
|
|
* USB devices, just print a message and pretend there was an error */
|
|
|
|
|
|
|
|
sdev_printk(KERN_ERR, sdev,
|
|
|
|
"Wrong diagnostic page; asked for %d got %u\n",
|
|
|
|
page_code, recv_page_code);
|
|
|
|
|
|
|
|
return -EINVAL;
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_send_diag(struct scsi_device *sdev, int page_code,
|
|
|
|
void *buf, int bufflen)
|
|
|
|
{
|
|
|
|
u32 result;
|
|
|
|
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char cmd[] = {
|
2008-02-03 21:48:56 +00:00
|
|
|
SEND_DIAGNOSTIC,
|
|
|
|
0x10, /* Set PF bit */
|
|
|
|
0,
|
|
|
|
bufflen >> 8,
|
|
|
|
bufflen & 0xff,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
result = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, buf, bufflen,
|
2008-12-04 05:24:39 +00:00
|
|
|
NULL, SES_TIMEOUT, SES_RETRIES, NULL);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (result)
|
|
|
|
sdev_printk(KERN_ERR, sdev, "SEND DIAGNOSTIC result: %8x\n",
|
|
|
|
result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_set_page2_descriptor(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp,
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc)
|
2008-02-03 21:48:56 +00:00
|
|
|
{
|
|
|
|
int i, j, count = 0, descriptor = ecomp->number;
|
2008-02-21 23:13:36 +00:00
|
|
|
struct scsi_device *sdev = to_scsi_device(edev->edev.parent);
|
2008-02-03 21:48:56 +00:00
|
|
|
struct ses_device *ses_dev = edev->scratch;
|
2011-03-18 15:24:23 +00:00
|
|
|
unsigned char *type_ptr = ses_dev->page1_types;
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc_ptr = ses_dev->page2 + 8;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
/* Clear everything */
|
|
|
|
memset(desc_ptr, 0, ses_dev->page2_len - 8);
|
2011-03-18 15:24:23 +00:00
|
|
|
for (i = 0; i < ses_dev->page1_num_types; i++, type_ptr += 4) {
|
2008-02-03 21:48:56 +00:00
|
|
|
for (j = 0; j < type_ptr[1]; j++) {
|
|
|
|
desc_ptr += 4;
|
|
|
|
if (type_ptr[0] != ENCLOSURE_COMPONENT_DEVICE &&
|
|
|
|
type_ptr[0] != ENCLOSURE_COMPONENT_ARRAY_DEVICE)
|
|
|
|
continue;
|
|
|
|
if (count++ == descriptor) {
|
|
|
|
memcpy(desc_ptr, desc, 4);
|
|
|
|
/* set select */
|
|
|
|
desc_ptr[0] |= 0x80;
|
|
|
|
/* clear reserved, just in case */
|
|
|
|
desc_ptr[0] &= 0xf0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ses_send_diag(sdev, 2, ses_dev->page2, ses_dev->page2_len);
|
|
|
|
}
|
|
|
|
|
2008-02-14 00:25:16 +00:00
|
|
|
static unsigned char *ses_get_page2_descriptor(struct enclosure_device *edev,
|
2008-02-03 21:48:56 +00:00
|
|
|
struct enclosure_component *ecomp)
|
|
|
|
{
|
|
|
|
int i, j, count = 0, descriptor = ecomp->number;
|
2008-02-21 23:13:36 +00:00
|
|
|
struct scsi_device *sdev = to_scsi_device(edev->edev.parent);
|
2008-02-03 21:48:56 +00:00
|
|
|
struct ses_device *ses_dev = edev->scratch;
|
2011-03-18 15:24:23 +00:00
|
|
|
unsigned char *type_ptr = ses_dev->page1_types;
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc_ptr = ses_dev->page2 + 8;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2017-08-15 08:21:41 +00:00
|
|
|
if (ses_recv_diag(sdev, 2, ses_dev->page2, ses_dev->page2_len) < 0)
|
|
|
|
return NULL;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2011-03-18 15:24:23 +00:00
|
|
|
for (i = 0; i < ses_dev->page1_num_types; i++, type_ptr += 4) {
|
2008-02-03 21:48:56 +00:00
|
|
|
for (j = 0; j < type_ptr[1]; j++) {
|
|
|
|
desc_ptr += 4;
|
|
|
|
if (type_ptr[0] != ENCLOSURE_COMPONENT_DEVICE &&
|
|
|
|
type_ptr[0] != ENCLOSURE_COMPONENT_ARRAY_DEVICE)
|
|
|
|
continue;
|
|
|
|
if (count++ == descriptor)
|
|
|
|
return desc_ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-06-09 04:27:07 +00:00
|
|
|
/* For device slot and array device slot elements, byte 3 bit 6
|
|
|
|
* is "fault sensed" while byte 3 bit 5 is "fault reqstd". As this
|
|
|
|
* code stands these bits are shifted 4 positions right so in
|
|
|
|
* sysfs they will appear as bits 2 and 1 respectively. Strange. */
|
2008-02-03 21:48:56 +00:00
|
|
|
static void ses_get_fault(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp)
|
|
|
|
{
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev)) {
|
|
|
|
ecomp->fault = 0;
|
|
|
|
return;
|
|
|
|
}
|
2008-02-03 21:48:56 +00:00
|
|
|
desc = ses_get_page2_descriptor(edev, ecomp);
|
2008-02-14 00:25:16 +00:00
|
|
|
if (desc)
|
|
|
|
ecomp->fault = (desc[3] & 0x60) >> 4;
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_set_fault(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp,
|
|
|
|
enum enclosure_component_setting val)
|
|
|
|
{
|
2014-12-30 22:46:18 +00:00
|
|
|
unsigned char desc[4];
|
|
|
|
unsigned char *desc_ptr;
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
desc_ptr = ses_get_page2_descriptor(edev, ecomp);
|
|
|
|
|
|
|
|
if (!desc_ptr)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
init_device_slot_control(desc, ecomp, desc_ptr);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
case ENCLOSURE_SETTING_DISABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[3] &= 0xdf;
|
2008-02-03 21:48:56 +00:00
|
|
|
break;
|
|
|
|
case ENCLOSURE_SETTING_ENABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[3] |= 0x20;
|
2008-02-03 21:48:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* SES doesn't do the SGPIO blink settings */
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ses_set_page2_descriptor(edev, ecomp, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ses_get_status(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp)
|
|
|
|
{
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev)) {
|
|
|
|
ecomp->status = 0;
|
|
|
|
return;
|
|
|
|
}
|
2008-02-03 21:48:56 +00:00
|
|
|
desc = ses_get_page2_descriptor(edev, ecomp);
|
2008-02-14 00:25:16 +00:00
|
|
|
if (desc)
|
|
|
|
ecomp->status = (desc[0] & 0x0f);
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ses_get_locate(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp)
|
|
|
|
{
|
2008-02-14 00:25:16 +00:00
|
|
|
unsigned char *desc;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev)) {
|
|
|
|
ecomp->locate = 0;
|
|
|
|
return;
|
|
|
|
}
|
2008-02-03 21:48:56 +00:00
|
|
|
desc = ses_get_page2_descriptor(edev, ecomp);
|
2008-02-14 00:25:16 +00:00
|
|
|
if (desc)
|
|
|
|
ecomp->locate = (desc[2] & 0x02) ? 1 : 0;
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_set_locate(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp,
|
|
|
|
enum enclosure_component_setting val)
|
|
|
|
{
|
2014-12-30 22:46:18 +00:00
|
|
|
unsigned char desc[4];
|
|
|
|
unsigned char *desc_ptr;
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
desc_ptr = ses_get_page2_descriptor(edev, ecomp);
|
|
|
|
|
|
|
|
if (!desc_ptr)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
init_device_slot_control(desc, ecomp, desc_ptr);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
case ENCLOSURE_SETTING_DISABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[2] &= 0xfd;
|
2008-02-03 21:48:56 +00:00
|
|
|
break;
|
|
|
|
case ENCLOSURE_SETTING_ENABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[2] |= 0x02;
|
2008-02-03 21:48:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* SES doesn't do the SGPIO blink settings */
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return ses_set_page2_descriptor(edev, ecomp, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_set_active(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp,
|
|
|
|
enum enclosure_component_setting val)
|
|
|
|
{
|
2014-12-30 22:46:18 +00:00
|
|
|
unsigned char desc[4];
|
|
|
|
unsigned char *desc_ptr;
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
desc_ptr = ses_get_page2_descriptor(edev, ecomp);
|
|
|
|
|
|
|
|
if (!desc_ptr)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
init_device_slot_control(desc, ecomp, desc_ptr);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
case ENCLOSURE_SETTING_DISABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[2] &= 0x7f;
|
2008-02-03 21:48:56 +00:00
|
|
|
ecomp->active = 0;
|
|
|
|
break;
|
|
|
|
case ENCLOSURE_SETTING_ENABLED:
|
2014-12-30 22:46:18 +00:00
|
|
|
desc[2] |= 0x80;
|
2008-02-03 21:48:56 +00:00
|
|
|
ecomp->active = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* SES doesn't do the SGPIO blink settings */
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return ses_set_page2_descriptor(edev, ecomp, desc);
|
|
|
|
}
|
|
|
|
|
2014-12-30 22:46:16 +00:00
|
|
|
static int ses_show_id(struct enclosure_device *edev, char *buf)
|
|
|
|
{
|
|
|
|
struct ses_device *ses_dev = edev->scratch;
|
|
|
|
unsigned long long id = get_unaligned_be64(ses_dev->page1+8+4);
|
|
|
|
|
|
|
|
return sprintf(buf, "%#llx\n", id);
|
|
|
|
}
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
static void ses_get_power_status(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp)
|
|
|
|
{
|
|
|
|
unsigned char *desc;
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev)) {
|
|
|
|
ecomp->power_status = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
desc = ses_get_page2_descriptor(edev, ecomp);
|
|
|
|
if (desc)
|
|
|
|
ecomp->power_status = (desc[3] & 0x10) ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_set_power_status(struct enclosure_device *edev,
|
|
|
|
struct enclosure_component *ecomp,
|
|
|
|
int val)
|
|
|
|
{
|
|
|
|
unsigned char desc[4];
|
|
|
|
unsigned char *desc_ptr;
|
|
|
|
|
2017-08-15 08:21:43 +00:00
|
|
|
if (!ses_page2_supported(edev))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2014-12-30 22:46:18 +00:00
|
|
|
desc_ptr = ses_get_page2_descriptor(edev, ecomp);
|
|
|
|
|
|
|
|
if (!desc_ptr)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
init_device_slot_control(desc, ecomp, desc_ptr);
|
|
|
|
|
|
|
|
switch (val) {
|
|
|
|
/* power = 1 is device_off = 0 and vice versa */
|
|
|
|
case 0:
|
|
|
|
desc[3] |= 0x10;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
desc[3] &= 0xef;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
ecomp->power_status = val;
|
|
|
|
return ses_set_page2_descriptor(edev, ecomp, desc);
|
|
|
|
}
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
static struct enclosure_component_callbacks ses_enclosure_callbacks = {
|
|
|
|
.get_fault = ses_get_fault,
|
|
|
|
.set_fault = ses_set_fault,
|
|
|
|
.get_status = ses_get_status,
|
|
|
|
.get_locate = ses_get_locate,
|
|
|
|
.set_locate = ses_set_locate,
|
2014-12-30 22:46:18 +00:00
|
|
|
.get_power_status = ses_get_power_status,
|
|
|
|
.set_power_status = ses_set_power_status,
|
2008-02-03 21:48:56 +00:00
|
|
|
.set_active = ses_set_active,
|
2014-12-30 22:46:16 +00:00
|
|
|
.show_id = ses_show_id,
|
2008-02-03 21:48:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ses_host_edev {
|
|
|
|
struct Scsi_Host *shost;
|
|
|
|
struct enclosure_device *edev;
|
|
|
|
};
|
|
|
|
|
2009-03-04 20:06:05 +00:00
|
|
|
#if 0
|
2008-02-03 21:48:56 +00:00
|
|
|
int ses_match_host(struct enclosure_device *edev, void *data)
|
|
|
|
{
|
|
|
|
struct ses_host_edev *sed = data;
|
|
|
|
struct scsi_device *sdev;
|
|
|
|
|
2008-02-21 23:13:36 +00:00
|
|
|
if (!scsi_is_sdev_device(edev->edev.parent))
|
2008-02-03 21:48:56 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-02-21 23:13:36 +00:00
|
|
|
sdev = to_scsi_device(edev->edev.parent);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
if (sdev->host != sed->shost)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sed->edev = edev;
|
|
|
|
return 1;
|
|
|
|
}
|
2009-03-04 20:06:05 +00:00
|
|
|
#endif /* 0 */
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
static void ses_process_descriptor(struct enclosure_component *ecomp,
|
|
|
|
unsigned char *desc)
|
|
|
|
{
|
|
|
|
int eip = desc[0] & 0x10;
|
|
|
|
int invalid = desc[0] & 0x80;
|
|
|
|
enum scsi_protocol proto = desc[0] & 0x0f;
|
|
|
|
u64 addr = 0;
|
2014-12-30 22:46:17 +00:00
|
|
|
int slot = -1;
|
2008-02-03 21:48:56 +00:00
|
|
|
struct ses_component *scomp = ecomp->scratch;
|
|
|
|
unsigned char *d;
|
|
|
|
|
|
|
|
if (invalid)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (proto) {
|
2014-12-30 22:46:17 +00:00
|
|
|
case SCSI_PROTOCOL_FCP:
|
|
|
|
if (eip) {
|
|
|
|
d = desc + 4;
|
|
|
|
slot = d[3];
|
|
|
|
}
|
|
|
|
break;
|
2008-02-03 21:48:56 +00:00
|
|
|
case SCSI_PROTOCOL_SAS:
|
2014-12-30 22:46:17 +00:00
|
|
|
if (eip) {
|
|
|
|
d = desc + 4;
|
|
|
|
slot = d[3];
|
2008-02-03 21:48:56 +00:00
|
|
|
d = desc + 8;
|
2014-12-30 22:46:17 +00:00
|
|
|
} else
|
2008-02-03 21:48:56 +00:00
|
|
|
d = desc + 4;
|
|
|
|
/* only take the phy0 addr */
|
|
|
|
addr = (u64)d[12] << 56 |
|
|
|
|
(u64)d[13] << 48 |
|
|
|
|
(u64)d[14] << 40 |
|
|
|
|
(u64)d[15] << 32 |
|
|
|
|
(u64)d[16] << 24 |
|
|
|
|
(u64)d[17] << 16 |
|
|
|
|
(u64)d[18] << 8 |
|
|
|
|
(u64)d[19];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* FIXME: Need to add more protocols than just SAS */
|
|
|
|
break;
|
|
|
|
}
|
2014-12-30 22:46:17 +00:00
|
|
|
ecomp->slot = slot;
|
2008-02-03 21:48:56 +00:00
|
|
|
scomp->addr = addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct efd {
|
|
|
|
u64 addr;
|
|
|
|
struct device *dev;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int ses_enclosure_find_by_addr(struct enclosure_device *edev,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct efd *efd = data;
|
|
|
|
int i;
|
|
|
|
struct ses_component *scomp;
|
|
|
|
|
|
|
|
if (!edev->component[0].scratch)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < edev->components; i++) {
|
|
|
|
scomp = edev->component[i].scratch;
|
|
|
|
if (scomp->addr != efd->addr)
|
|
|
|
continue;
|
|
|
|
|
2014-12-30 22:46:15 +00:00
|
|
|
if (enclosure_add_device(edev, i, efd->dev) == 0)
|
|
|
|
kobject_uevent(&efd->dev->kobj, KOBJ_CHANGE);
|
2008-02-03 21:48:56 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-01 00:43:59 +00:00
|
|
|
#define INIT_ALLOC_SIZE 32
|
|
|
|
|
|
|
|
static void ses_enclosure_data_process(struct enclosure_device *edev,
|
|
|
|
struct scsi_device *sdev,
|
|
|
|
int create)
|
|
|
|
{
|
|
|
|
u32 result;
|
|
|
|
unsigned char *buf = NULL, *type_ptr, *desc_ptr, *addl_desc_ptr = NULL;
|
|
|
|
int i, j, page7_len, len, components;
|
|
|
|
struct ses_device *ses_dev = edev->scratch;
|
2011-03-18 15:24:23 +00:00
|
|
|
int types = ses_dev->page1_num_types;
|
2009-08-01 00:43:59 +00:00
|
|
|
unsigned char *hdr_buf = kzalloc(INIT_ALLOC_SIZE, GFP_KERNEL);
|
|
|
|
|
|
|
|
if (!hdr_buf)
|
|
|
|
goto simple_populate;
|
|
|
|
|
|
|
|
/* re-read page 10 */
|
|
|
|
if (ses_dev->page10)
|
|
|
|
ses_recv_diag(sdev, 10, ses_dev->page10, ses_dev->page10_len);
|
|
|
|
/* Page 7 for the descriptors is optional */
|
|
|
|
result = ses_recv_diag(sdev, 7, hdr_buf, INIT_ALLOC_SIZE);
|
|
|
|
if (result)
|
|
|
|
goto simple_populate;
|
|
|
|
|
|
|
|
page7_len = len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
|
|
|
/* add 1 for trailing '\0' we'll use */
|
|
|
|
buf = kzalloc(len + 1, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
goto simple_populate;
|
|
|
|
result = ses_recv_diag(sdev, 7, buf, len);
|
|
|
|
if (result) {
|
|
|
|
simple_populate:
|
|
|
|
kfree(buf);
|
|
|
|
buf = NULL;
|
|
|
|
desc_ptr = NULL;
|
|
|
|
len = 0;
|
|
|
|
page7_len = 0;
|
|
|
|
} else {
|
|
|
|
desc_ptr = buf + 8;
|
|
|
|
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
|
|
|
/* skip past overall descriptor */
|
|
|
|
desc_ptr += len + 4;
|
|
|
|
}
|
2009-11-04 18:01:22 +00:00
|
|
|
if (ses_dev->page10)
|
|
|
|
addl_desc_ptr = ses_dev->page10 + 8;
|
2011-03-18 15:24:23 +00:00
|
|
|
type_ptr = ses_dev->page1_types;
|
2009-08-01 00:43:59 +00:00
|
|
|
components = 0;
|
|
|
|
for (i = 0; i < types; i++, type_ptr += 4) {
|
|
|
|
for (j = 0; j < type_ptr[1]; j++) {
|
|
|
|
char *name = NULL;
|
|
|
|
struct enclosure_component *ecomp;
|
|
|
|
|
|
|
|
if (desc_ptr) {
|
|
|
|
if (desc_ptr >= buf + page7_len) {
|
|
|
|
desc_ptr = NULL;
|
|
|
|
} else {
|
|
|
|
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
|
|
|
desc_ptr += 4;
|
|
|
|
/* Add trailing zero - pushes into
|
|
|
|
* reserved space */
|
|
|
|
desc_ptr[len] = '\0';
|
|
|
|
name = desc_ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE) {
|
|
|
|
|
|
|
|
if (create)
|
2014-12-30 22:46:14 +00:00
|
|
|
ecomp = enclosure_component_alloc(
|
|
|
|
edev,
|
|
|
|
components++,
|
|
|
|
type_ptr[0],
|
|
|
|
name);
|
2009-08-01 00:43:59 +00:00
|
|
|
else
|
|
|
|
ecomp = &edev->component[components++];
|
|
|
|
|
2014-12-30 22:46:14 +00:00
|
|
|
if (!IS_ERR(ecomp)) {
|
|
|
|
if (addl_desc_ptr)
|
|
|
|
ses_process_descriptor(
|
|
|
|
ecomp,
|
|
|
|
addl_desc_ptr);
|
|
|
|
if (create)
|
|
|
|
enclosure_component_register(
|
|
|
|
ecomp);
|
|
|
|
}
|
2009-08-01 00:43:59 +00:00
|
|
|
}
|
|
|
|
if (desc_ptr)
|
|
|
|
desc_ptr += len;
|
|
|
|
|
2015-12-11 17:16:38 +00:00
|
|
|
if (addl_desc_ptr &&
|
|
|
|
/* only find additional descriptions for specific devices */
|
|
|
|
(type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_SAS_EXPANDER ||
|
|
|
|
/* these elements are optional */
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_SCSI_TARGET_PORT ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_SCSI_INITIATOR_PORT ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_CONTROLLER_ELECTRONICS))
|
2009-08-01 00:43:59 +00:00
|
|
|
addl_desc_ptr += addl_desc_ptr[1] + 2;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kfree(buf);
|
|
|
|
kfree(hdr_buf);
|
|
|
|
}
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
static void ses_match_to_enclosure(struct enclosure_device *edev,
|
2017-11-13 23:48:04 +00:00
|
|
|
struct scsi_device *sdev,
|
|
|
|
int refresh)
|
2008-02-03 21:48:56 +00:00
|
|
|
{
|
2017-11-13 23:48:04 +00:00
|
|
|
struct scsi_device *edev_sdev = to_scsi_device(edev->edev.parent);
|
2008-02-03 21:48:56 +00:00
|
|
|
struct efd efd = {
|
|
|
|
.addr = 0,
|
|
|
|
};
|
|
|
|
|
2017-11-13 23:48:04 +00:00
|
|
|
if (refresh)
|
|
|
|
ses_enclosure_data_process(edev, edev_sdev, 0);
|
2009-08-01 00:43:59 +00:00
|
|
|
|
2017-01-09 21:33:36 +00:00
|
|
|
if (scsi_is_sas_rphy(sdev->sdev_target->dev.parent))
|
2015-12-09 20:56:07 +00:00
|
|
|
efd.addr = sas_get_address(sdev);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2014-03-15 08:51:51 +00:00
|
|
|
if (efd.addr) {
|
|
|
|
efd.dev = &sdev->sdev_gendev;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2014-03-15 08:51:51 +00:00
|
|
|
enclosure_for_each_device(ses_enclosure_find_by_addr, &efd);
|
|
|
|
}
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
2008-02-21 23:13:36 +00:00
|
|
|
static int ses_intf_add(struct device *cdev,
|
2008-02-03 21:48:56 +00:00
|
|
|
struct class_interface *intf)
|
|
|
|
{
|
2008-02-21 23:13:36 +00:00
|
|
|
struct scsi_device *sdev = to_scsi_device(cdev->parent);
|
2008-02-03 21:48:56 +00:00
|
|
|
struct scsi_device *tmp_sdev;
|
2017-08-15 08:21:42 +00:00
|
|
|
unsigned char *buf = NULL, *hdr_buf, *type_ptr, page;
|
2008-02-03 21:48:56 +00:00
|
|
|
struct ses_device *ses_dev;
|
|
|
|
u32 result;
|
2009-08-01 00:43:59 +00:00
|
|
|
int i, types, len, components = 0;
|
2008-02-03 21:48:56 +00:00
|
|
|
int err = -ENOMEM;
|
2011-03-18 15:24:23 +00:00
|
|
|
int num_enclosures;
|
2008-02-03 21:48:56 +00:00
|
|
|
struct enclosure_device *edev;
|
2008-02-11 07:25:25 +00:00
|
|
|
struct ses_component *scomp = NULL;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
if (!scsi_device_enclosure(sdev)) {
|
|
|
|
/* not an enclosure, but might be in one */
|
2009-08-01 00:39:36 +00:00
|
|
|
struct enclosure_device *prev = NULL;
|
|
|
|
|
|
|
|
while ((edev = enclosure_find(&sdev->host->shost_gendev, prev)) != NULL) {
|
2017-11-13 23:48:04 +00:00
|
|
|
ses_match_to_enclosure(edev, sdev, 1);
|
2009-08-01 00:39:36 +00:00
|
|
|
prev = edev;
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TYPE_ENCLOSURE prints a message in probe */
|
|
|
|
if (sdev->type != TYPE_ENCLOSURE)
|
|
|
|
sdev_printk(KERN_NOTICE, sdev, "Embedded Enclosure Device\n");
|
|
|
|
|
|
|
|
ses_dev = kzalloc(sizeof(*ses_dev), GFP_KERNEL);
|
|
|
|
hdr_buf = kzalloc(INIT_ALLOC_SIZE, GFP_KERNEL);
|
|
|
|
if (!hdr_buf || !ses_dev)
|
|
|
|
goto err_init_free;
|
|
|
|
|
2017-08-15 08:21:42 +00:00
|
|
|
page = 1;
|
|
|
|
result = ses_recv_diag(sdev, page, hdr_buf, INIT_ALLOC_SIZE);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (result)
|
|
|
|
goto recv_failed;
|
|
|
|
|
|
|
|
len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
|
|
|
buf = kzalloc(len, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
goto err_free;
|
|
|
|
|
2017-08-15 08:21:42 +00:00
|
|
|
result = ses_recv_diag(sdev, page, buf, len);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (result)
|
|
|
|
goto recv_failed;
|
|
|
|
|
2011-03-18 15:24:23 +00:00
|
|
|
types = 0;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2011-03-18 15:24:23 +00:00
|
|
|
/* we always have one main enclosure and the rest are referred
|
|
|
|
* to as secondary subenclosures */
|
|
|
|
num_enclosures = buf[1] + 1;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2011-03-18 15:24:23 +00:00
|
|
|
/* begin at the enclosure descriptor */
|
|
|
|
type_ptr = buf + 8;
|
|
|
|
/* skip all the enclosure descriptors */
|
|
|
|
for (i = 0; i < num_enclosures && type_ptr < buf + len; i++) {
|
|
|
|
types += type_ptr[2];
|
|
|
|
type_ptr += type_ptr[3] + 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
ses_dev->page1_types = type_ptr;
|
|
|
|
ses_dev->page1_num_types = types;
|
|
|
|
|
|
|
|
for (i = 0; i < types && type_ptr < buf + len; i++, type_ptr += 4) {
|
2008-02-03 21:48:56 +00:00
|
|
|
if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
|
|
|
type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE)
|
|
|
|
components += type_ptr[1];
|
|
|
|
}
|
2008-02-11 07:25:25 +00:00
|
|
|
ses_dev->page1 = buf;
|
|
|
|
ses_dev->page1_len = len;
|
|
|
|
buf = NULL;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2017-08-15 08:21:42 +00:00
|
|
|
page = 2;
|
|
|
|
result = ses_recv_diag(sdev, page, hdr_buf, INIT_ALLOC_SIZE);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (result)
|
2017-08-15 08:21:43 +00:00
|
|
|
goto page2_not_supported;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
|
|
|
buf = kzalloc(len, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
goto err_free;
|
|
|
|
|
|
|
|
/* make sure getting page 2 actually works */
|
|
|
|
result = ses_recv_diag(sdev, 2, buf, len);
|
|
|
|
if (result)
|
|
|
|
goto recv_failed;
|
|
|
|
ses_dev->page2 = buf;
|
|
|
|
ses_dev->page2_len = len;
|
2008-02-11 07:25:25 +00:00
|
|
|
buf = NULL;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
/* The additional information page --- allows us
|
|
|
|
* to match up the devices */
|
2017-08-15 08:21:42 +00:00
|
|
|
page = 10;
|
|
|
|
result = ses_recv_diag(sdev, page, hdr_buf, INIT_ALLOC_SIZE);
|
2008-02-14 00:25:16 +00:00
|
|
|
if (!result) {
|
|
|
|
|
|
|
|
len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
|
|
|
buf = kzalloc(len, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
goto err_free;
|
|
|
|
|
2017-08-15 08:21:42 +00:00
|
|
|
result = ses_recv_diag(sdev, page, buf, len);
|
2008-02-14 00:25:16 +00:00
|
|
|
if (result)
|
|
|
|
goto recv_failed;
|
|
|
|
ses_dev->page10 = buf;
|
|
|
|
ses_dev->page10_len = len;
|
|
|
|
buf = NULL;
|
|
|
|
}
|
2017-08-15 08:21:43 +00:00
|
|
|
page2_not_supported:
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 21:03:40 +00:00
|
|
|
scomp = kcalloc(components, sizeof(struct ses_component), GFP_KERNEL);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (!scomp)
|
2008-02-11 07:25:25 +00:00
|
|
|
goto err_free;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2008-12-03 21:41:36 +00:00
|
|
|
edev = enclosure_register(cdev->parent, dev_name(&sdev->sdev_gendev),
|
2008-02-03 21:48:56 +00:00
|
|
|
components, &ses_enclosure_callbacks);
|
|
|
|
if (IS_ERR(edev)) {
|
|
|
|
err = PTR_ERR(edev);
|
|
|
|
goto err_free;
|
|
|
|
}
|
|
|
|
|
2010-03-10 23:20:42 +00:00
|
|
|
kfree(hdr_buf);
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
edev->scratch = ses_dev;
|
|
|
|
for (i = 0; i < components; i++)
|
2008-02-11 07:25:25 +00:00
|
|
|
edev->component[i].scratch = scomp + i;
|
2008-02-03 21:48:56 +00:00
|
|
|
|
2009-08-01 00:43:59 +00:00
|
|
|
ses_enclosure_data_process(edev, sdev, 1);
|
2008-02-03 21:48:56 +00:00
|
|
|
|
|
|
|
/* see if there are any devices matching before
|
|
|
|
* we found the enclosure */
|
|
|
|
shost_for_each_device(tmp_sdev, sdev->host) {
|
|
|
|
if (tmp_sdev->lun != 0 || scsi_device_enclosure(tmp_sdev))
|
|
|
|
continue;
|
2017-11-13 23:48:04 +00:00
|
|
|
ses_match_to_enclosure(edev, tmp_sdev, 0);
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
recv_failed:
|
|
|
|
sdev_printk(KERN_ERR, sdev, "Failed to get diagnostic page 0x%x\n",
|
2017-08-15 08:21:42 +00:00
|
|
|
page);
|
2008-02-03 21:48:56 +00:00
|
|
|
err = -ENODEV;
|
|
|
|
err_free:
|
|
|
|
kfree(buf);
|
2008-02-11 07:25:25 +00:00
|
|
|
kfree(scomp);
|
2008-02-03 21:48:56 +00:00
|
|
|
kfree(ses_dev->page10);
|
|
|
|
kfree(ses_dev->page2);
|
|
|
|
kfree(ses_dev->page1);
|
|
|
|
err_init_free:
|
|
|
|
kfree(ses_dev);
|
|
|
|
kfree(hdr_buf);
|
|
|
|
sdev_printk(KERN_ERR, sdev, "Failed to bind enclosure %d\n", err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ses_remove(struct device *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-01 00:41:22 +00:00
|
|
|
static void ses_intf_remove_component(struct scsi_device *sdev)
|
|
|
|
{
|
|
|
|
struct enclosure_device *edev, *prev = NULL;
|
|
|
|
|
|
|
|
while ((edev = enclosure_find(&sdev->host->shost_gendev, prev)) != NULL) {
|
|
|
|
prev = edev;
|
|
|
|
if (!enclosure_remove_device(edev, &sdev->sdev_gendev))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (edev)
|
|
|
|
put_device(&edev->edev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ses_intf_remove_enclosure(struct scsi_device *sdev)
|
2008-02-03 21:48:56 +00:00
|
|
|
{
|
|
|
|
struct enclosure_device *edev;
|
|
|
|
struct ses_device *ses_dev;
|
|
|
|
|
2009-08-01 00:39:36 +00:00
|
|
|
/* exact match to this enclosure */
|
2009-08-01 00:41:22 +00:00
|
|
|
edev = enclosure_find(&sdev->sdev_gendev, NULL);
|
2008-02-03 21:48:56 +00:00
|
|
|
if (!edev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ses_dev = edev->scratch;
|
|
|
|
edev->scratch = NULL;
|
|
|
|
|
2008-02-11 07:25:25 +00:00
|
|
|
kfree(ses_dev->page10);
|
2008-02-03 21:48:56 +00:00
|
|
|
kfree(ses_dev->page1);
|
|
|
|
kfree(ses_dev->page2);
|
|
|
|
kfree(ses_dev);
|
|
|
|
|
|
|
|
kfree(edev->component[0].scratch);
|
|
|
|
|
2008-02-21 23:13:36 +00:00
|
|
|
put_device(&edev->edev);
|
2017-08-24 13:13:52 +00:00
|
|
|
enclosure_unregister(edev);
|
2008-02-03 21:48:56 +00:00
|
|
|
}
|
|
|
|
|
2009-08-01 00:41:22 +00:00
|
|
|
static void ses_intf_remove(struct device *cdev,
|
|
|
|
struct class_interface *intf)
|
|
|
|
{
|
|
|
|
struct scsi_device *sdev = to_scsi_device(cdev->parent);
|
|
|
|
|
|
|
|
if (!scsi_device_enclosure(sdev))
|
|
|
|
ses_intf_remove_component(sdev);
|
|
|
|
else
|
|
|
|
ses_intf_remove_enclosure(sdev);
|
|
|
|
}
|
|
|
|
|
2008-02-03 21:48:56 +00:00
|
|
|
static struct class_interface ses_interface = {
|
2008-02-21 23:13:36 +00:00
|
|
|
.add_dev = ses_intf_add,
|
|
|
|
.remove_dev = ses_intf_remove,
|
2008-02-03 21:48:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct scsi_driver ses_template = {
|
|
|
|
.gendrv = {
|
|
|
|
.name = "ses",
|
2014-11-12 17:34:51 +00:00
|
|
|
.owner = THIS_MODULE,
|
2008-02-03 21:48:56 +00:00
|
|
|
.probe = ses_probe,
|
|
|
|
.remove = ses_remove,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init ses_init(void)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = scsi_register_interface(&ses_interface);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = scsi_register_driver(&ses_template.gendrv);
|
|
|
|
if (err)
|
|
|
|
goto out_unreg;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_unreg:
|
|
|
|
scsi_unregister_interface(&ses_interface);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit ses_exit(void)
|
|
|
|
{
|
|
|
|
scsi_unregister_driver(&ses_template.gendrv);
|
|
|
|
scsi_unregister_interface(&ses_interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(ses_init);
|
|
|
|
module_exit(ses_exit);
|
|
|
|
|
|
|
|
MODULE_ALIAS_SCSI_DEVICE(TYPE_ENCLOSURE);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("James Bottomley");
|
|
|
|
MODULE_DESCRIPTION("SCSI Enclosure Services (ses) driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|