fd2aad9556
for 3200 and 8200 series cards. Submitted by: David C Somayajulu (david.somayajulu@qlogic.com), Qlogic Corporation MFC After: 3 days
120 lines
3.4 KiB
C
120 lines
3.4 KiB
C
/*
|
|
* Copyright (c) 2010-2011 Qlogic Corporation
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
/*
|
|
* File: qla_ioctl.c
|
|
* Author : David C Somayajulu, Qlogic Corporation, Aliso Viejo, CA 92656.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include "qla_os.h"
|
|
#include "qla_reg.h"
|
|
#include "qla_hw.h"
|
|
#include "qla_def.h"
|
|
#include "qla_reg.h"
|
|
#include "qla_inline.h"
|
|
#include "qla_glbl.h"
|
|
#include "qla_ioctl.h"
|
|
|
|
static struct cdevsw qla_cdevsw = {
|
|
.d_version = D_VERSION,
|
|
.d_ioctl = qla_eioctl,
|
|
.d_name = "qlcnic",
|
|
};
|
|
|
|
int
|
|
qla_make_cdev(qla_host_t *ha)
|
|
{
|
|
ha->ioctl_dev = make_dev(&qla_cdevsw,
|
|
ha->ifp->if_dunit,
|
|
UID_ROOT,
|
|
GID_WHEEL,
|
|
0600,
|
|
"%s",
|
|
if_name(ha->ifp));
|
|
|
|
if (ha->ioctl_dev == NULL)
|
|
return (-1);
|
|
|
|
ha->ioctl_dev->si_drv1 = ha;
|
|
|
|
return (0);
|
|
}
|
|
|
|
void
|
|
qla_del_cdev(qla_host_t *ha)
|
|
{
|
|
if (ha->ioctl_dev != NULL)
|
|
destroy_dev(ha->ioctl_dev);
|
|
return;
|
|
}
|
|
|
|
int
|
|
qla_eioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag,
|
|
struct thread *td)
|
|
{
|
|
qla_host_t *ha;
|
|
int rval = 0;
|
|
qla_reg_val_t *rv;
|
|
qla_rd_flash_t *rdf;
|
|
|
|
if ((ha = (qla_host_t *)dev->si_drv1) == NULL)
|
|
return ENXIO;
|
|
|
|
switch(cmd) {
|
|
|
|
case QLA_RDWR_REG:
|
|
|
|
rv = (qla_reg_val_t *)data;
|
|
|
|
if (rv->direct) {
|
|
if (rv->rd) {
|
|
rv->val = READ_OFFSET32(ha, rv->reg);
|
|
} else {
|
|
WRITE_OFFSET32(ha, rv->reg, rv->val);
|
|
}
|
|
} else {
|
|
if ((rval = qla_rdwr_indreg32(ha, rv->reg, &rv->val,
|
|
rv->rd)))
|
|
rval = ENXIO;
|
|
}
|
|
break;
|
|
|
|
case QLA_RD_FLASH:
|
|
rdf = (qla_rd_flash_t *)data;
|
|
if ((rval = qla_rd_flash32(ha, rdf->off, &rdf->data)))
|
|
rval = ENXIO;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return rval;
|
|
}
|
|
|