Commit 50579d3d authored by Raghu Vatsavayi's avatar Raghu Vatsavayi Committed by David S. Miller

liquidio CN23XX: copyrights changes and alignment

Updated copyrights comments and also changed some other comments
alignments.
Signed-off-by: default avatarRaghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
Signed-off-by: default avatarDerek Chickles <derek.chickles@caviumnetworks.com>
Signed-off-by: default avatarSatanand Burla <satananda.burla@caviumnetworks.com>
Signed-off-by: default avatarFelix Manlunas <felix.manlunas@caviumnetworks.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 763185a3
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
#include "liquidio_common.h" #include "liquidio_common.h"
...@@ -421,10 +415,10 @@ static int cn23xx_pf_setup_global_input_regs(struct octeon_device *oct) ...@@ -421,10 +415,10 @@ static int cn23xx_pf_setup_global_input_regs(struct octeon_device *oct)
return -1; return -1;
/** Set the MAC_NUM and PVF_NUM in IQ_PKT_CONTROL reg /** Set the MAC_NUM and PVF_NUM in IQ_PKT_CONTROL reg
* for all queues.Only PF can set these bits. * for all queues.Only PF can set these bits.
* bits 29:30 indicate the MAC num. * bits 29:30 indicate the MAC num.
* bits 32:47 indicate the PVF num. * bits 32:47 indicate the PVF num.
*/ */
for (q_no = 0; q_no < ern; q_no++) { for (q_no = 0; q_no < ern; q_no++) {
reg_val = oct->pcie_port << CN23XX_PKT_INPUT_CTL_MAC_NUM_POS; reg_val = oct->pcie_port << CN23XX_PKT_INPUT_CTL_MAC_NUM_POS;
...@@ -547,8 +541,8 @@ static void cn23xx_pf_setup_global_output_regs(struct octeon_device *oct) ...@@ -547,8 +541,8 @@ static void cn23xx_pf_setup_global_output_regs(struct octeon_device *oct)
writeq(0x40, (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OQ_WMARK); writeq(0x40, (u8 *)oct->mmio[0].hw_addr + CN23XX_SLI_OQ_WMARK);
/** Disabling setting OQs in reset when ring has no dorebells /** Disabling setting OQs in reset when ring has no dorebells
* enabling this will cause of head of line blocking * enabling this will cause of head of line blocking
*/ */
/* Do it only for pass1.1. and pass1.2 */ /* Do it only for pass1.1. and pass1.2 */
if ((oct->rev_id == OCTEON_CN23XX_REV_1_0) || if ((oct->rev_id == OCTEON_CN23XX_REV_1_0) ||
(oct->rev_id == OCTEON_CN23XX_REV_1_1)) (oct->rev_id == OCTEON_CN23XX_REV_1_1))
...@@ -1391,8 +1385,7 @@ void cn23xx_dump_iq_regs(struct octeon_device *oct) ...@@ -1391,8 +1385,7 @@ void cn23xx_dump_iq_regs(struct octeon_device *oct)
dev_dbg(&oct->pci_dev->dev, "SLI_PKT[%d]_INPUT_CTL [0x%x]: 0x%016llx\n", dev_dbg(&oct->pci_dev->dev, "SLI_PKT[%d]_INPUT_CTL [0x%x]: 0x%016llx\n",
q_no, CN23XX_SLI_IQ_PKT_CONTROL64(q_no), q_no, CN23XX_SLI_IQ_PKT_CONTROL64(q_no),
CVM_CAST64(octeon_read_csr64 CVM_CAST64(octeon_read_csr64
(oct, (oct, CN23XX_SLI_IQ_PKT_CONTROL64(q_no))));
CN23XX_SLI_IQ_PKT_CONTROL64(q_no))));
} }
pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval); pci_read_config_dword(oct->pci_dev, CN23XX_CONFIG_PCIE_DEVCTL, &regval);
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn23xx_device.h /*! \file cn23xx_device.h
* \brief Host Driver: Routines that perform CN23XX specific operations. * \brief Host Driver: Routines that perform CN23XX specific operations.
*/ */
#ifndef __CN23XX_PF_DEVICE_H__ #ifndef __CN23XX_PF_DEVICE_H__
#define __CN23XX_PF_DEVICE_H__ #define __CN23XX_PF_DEVICE_H__
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn23xx_regs.h /*! \file cn23xx_regs.h
* \brief Host Driver: Register Address and Register Mask values for * \brief Host Driver: Register Address and Register Mask values for
* Octeon CN23XX devices. * Octeon CN23XX devices.
*/ */
#ifndef __CN23XX_PF_REGS_H__ #ifndef __CN23XX_PF_REGS_H__
#define __CN23XX_PF_REGS_H__ #define __CN23XX_PF_REGS_H__
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include "liquidio_common.h" #include "liquidio_common.h"
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn66xx_device.h /*! \file cn66xx_device.h
* \brief Host Driver: Routines that perform CN66XX specific operations. * \brief Host Driver: Routines that perform CN66XX specific operations.
*/ */
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn66xx_regs.h /*! \file cn66xx_regs.h
* \brief Host Driver: Register Address and Register Mask values for * \brief Host Driver: Register Address and Register Mask values for
* Octeon CN66XX devices. * Octeon CN66XX devices.
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include "liquidio_common.h" #include "liquidio_common.h"
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn68xx_device.h /*! \file cn68xx_device.h
* \brief Host Driver: Routines that perform CN68XX specific operations. * \brief Host Driver: Routines that perform CN68XX specific operations.
*/ */
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file cn68xx_regs.h /*! \file cn68xx_regs.h
* \brief Host Driver: Register Address and Register Mask values for * \brief Host Driver: Register Address and Register Mask values for
* Octeon CN68XX devices. The register map for CN66XX is the same * Octeon CN68XX devices. The register map for CN66XX is the same
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/if_vlan.h> #include <linux/if_vlan.h>
#include "liquidio_common.h" #include "liquidio_common.h"
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include <linux/net_tstamp.h> #include <linux/net_tstamp.h>
#include <linux/pci.h> #include <linux/pci.h>
...@@ -87,9 +83,9 @@ static const char oct_stats_strings[][ETH_GSTRING_LEN] = { ...@@ -87,9 +83,9 @@ static const char oct_stats_strings[][ETH_GSTRING_LEN] = {
"tx_bytes", "tx_bytes",
"rx_errors", /*jabber_err+l2_err+frame_err */ "rx_errors", /*jabber_err+l2_err+frame_err */
"tx_errors", /*fw_err_pko+fw_err_link+fw_err_drop */ "tx_errors", /*fw_err_pko+fw_err_link+fw_err_drop */
"rx_dropped", /*st->fromwire.total_rcvd - st->fromwire.fw_total_rcvd "rx_dropped", /*st->fromwire.total_rcvd - st->fromwire.fw_total_rcvd +
*+st->fromwire.dmac_drop + st->fromwire.fw_err_drop *st->fromwire.dmac_drop + st->fromwire.fw_err_drop
*/ */
"tx_dropped", "tx_dropped",
"tx_total_sent", "tx_total_sent",
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/firmware.h> #include <linux/firmware.h>
#include <net/vxlan.h> #include <net/vxlan.h>
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file liquidio_common.h /*! \file liquidio_common.h
* \brief Common: Structures and macros used in PCI-NIC package by core and * \brief Common: Structures and macros used in PCI-NIC package by core and
* host driver. * host driver.
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#ifndef _LIQUIDIO_IMAGE_H_ #ifndef _LIQUIDIO_IMAGE_H_
#define _LIQUIDIO_IMAGE_H_ #define _LIQUIDIO_IMAGE_H_
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file octeon_config.h /*! \file octeon_config.h
* \brief Host Driver: Configuration data structures for the host driver. * \brief Host Driver: Configuration data structures for the host driver.
*/ */
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/** /**
* @file octeon_console.c * @file octeon_console.c
*/ */
...@@ -76,9 +71,9 @@ MODULE_PARM_DESC(console_bitmask, ...@@ -76,9 +71,9 @@ MODULE_PARM_DESC(console_bitmask,
#define OCTEON_CONSOLE_POLL_INTERVAL_MS 100 /* 10 times per second */ #define OCTEON_CONSOLE_POLL_INTERVAL_MS 100 /* 10 times per second */
/* First three members of cvmx_bootmem_desc are left in original /* First three members of cvmx_bootmem_desc are left in original
** positions for backwards compatibility. * positions for backwards compatibility.
** Assumes big endian target * Assumes big endian target
*/ */
struct cvmx_bootmem_desc { struct cvmx_bootmem_desc {
/** spinlock to control access to list */ /** spinlock to control access to list */
u32 lock; u32 lock;
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file octeon_device.h /*! \file octeon_device.h
* \brief Host Driver: This file defines the octeon device structure. * \brief Host Driver: This file defines the octeon device structure.
*/ */
...@@ -93,9 +88,9 @@ enum octeon_pci_swap_mode { ...@@ -93,9 +88,9 @@ enum octeon_pci_swap_mode {
#define OCT_DEV_STATES OCT_DEV_STATE_INVALID #define OCT_DEV_STATES OCT_DEV_STATE_INVALID
/** Octeon Device interrupts /** Octeon Device interrupts
* These interrupt bits are set in int_status filed of * These interrupt bits are set in int_status filed of
* octeon_device structure * octeon_device structure
*/ */
#define OCT_DEV_INTR_DMA0_FORCE 0x01 #define OCT_DEV_INTR_DMA0_FORCE 0x01
#define OCT_DEV_INTR_DMA1_FORCE 0x02 #define OCT_DEV_INTR_DMA1_FORCE 0x02
#define OCT_DEV_INTR_PKT_DATA 0x04 #define OCT_DEV_INTR_PKT_DATA 0x04
...@@ -548,7 +543,7 @@ struct oct_intrmod_cmd { ...@@ -548,7 +543,7 @@ struct oct_intrmod_cmd {
void octeon_init_device_list(int conf_type); void octeon_init_device_list(int conf_type);
/** Free memory for Input and Output queue structures for a octeon device */ /** Free memory for Input and Output queue structures for a octeon device */
void octeon_free_device_mem(struct octeon_device *); void octeon_free_device_mem(struct octeon_device *oct);
/* Look up a free entry in the octeon_device table and allocate resources /* Look up a free entry in the octeon_device table and allocate resources
* for the octeon_device structure for an octeon device. Called at init * for the octeon_device structure for an octeon device. Called at init
......
/********************************************************************** /**********************************************************************
* Author: Cavium, Inc. * Author: Cavium, Inc.
* *
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
* published by the Free Software Foundation. * published by the Free Software Foundation.
* *
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -13,13 +13,8 @@ ...@@ -13,13 +13,8 @@
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file octeon_droq.h /*! \file octeon_droq.h
* \brief Implementation of Octeon Output queues. "Output" is with * \brief Implementation of Octeon Output queues. "Output" is with
* respect to the Octeon device on the NIC. From this driver's point of * respect to the Octeon device on the NIC. From this driver's point of
...@@ -81,7 +76,7 @@ struct octeon_skb_page_info { ...@@ -81,7 +76,7 @@ struct octeon_skb_page_info {
* the Octeon device. Since the descriptor ring keeps physical (bus) * the Octeon device. Since the descriptor ring keeps physical (bus)
* addresses, this field is required for the driver to keep track of * addresses, this field is required for the driver to keep track of
* the virtual address pointers. * the virtual address pointers.
*/ */
struct octeon_recv_buffer { struct octeon_recv_buffer {
/** Packet buffer, including metadata. */ /** Packet buffer, including metadata. */
void *buffer; void *buffer;
...@@ -358,7 +353,7 @@ struct octeon_droq { ...@@ -358,7 +353,7 @@ struct octeon_droq {
* @param q_no - droq no. ranges from 0 - 3. * @param q_no - droq no. ranges from 0 - 3.
* @param app_ctx - pointer to application context * @param app_ctx - pointer to application context
* @return Success: 0 Failure: 1 * @return Success: 0 Failure: 1
*/ */
int octeon_init_droq(struct octeon_device *oct_dev, int octeon_init_droq(struct octeon_device *oct_dev,
u32 q_no, u32 q_no,
u32 num_descs, u32 num_descs,
...@@ -371,7 +366,7 @@ int octeon_init_droq(struct octeon_device *oct_dev, ...@@ -371,7 +366,7 @@ int octeon_init_droq(struct octeon_device *oct_dev,
* @param oct_dev - pointer to the octeon device structure * @param oct_dev - pointer to the octeon device structure
* @param q_no - droq no. ranges from 0 - 3. * @param q_no - droq no. ranges from 0 - 3.
* @return: Success: 0 Failure: 1 * @return: Success: 0 Failure: 1
*/ */
int octeon_delete_droq(struct octeon_device *oct_dev, u32 q_no); int octeon_delete_droq(struct octeon_device *oct_dev, u32 q_no);
/** Register a change in droq operations. The ops field has a pointer to a /** Register a change in droq operations. The ops field has a pointer to a
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -13,13 +13,8 @@ ...@@ -13,13 +13,8 @@
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file octeon_iq.h /*! \file octeon_iq.h
* \brief Host Driver: Implementation of Octeon input queues. "Input" is * \brief Host Driver: Implementation of Octeon input queues. "Input" is
* with respect to the Octeon device on the NIC. From this driver's * with respect to the Octeon device on the NIC. From this driver's
...@@ -77,7 +72,7 @@ struct oct_iq_stats { ...@@ -77,7 +72,7 @@ struct oct_iq_stats {
* The input queue is used to post raw (instruction) mode data or packet * The input queue is used to post raw (instruction) mode data or packet
* data to Octeon device from the host. Each input queue (upto 4) for * data to Octeon device from the host. Each input queue (upto 4) for
* a Octeon device has one such structure to represent it. * a Octeon device has one such structure to represent it.
*/ */
struct octeon_instr_queue { struct octeon_instr_queue {
struct octeon_device *oct_dev; struct octeon_device *oct_dev;
...@@ -117,8 +112,8 @@ struct octeon_instr_queue { ...@@ -117,8 +112,8 @@ struct octeon_instr_queue {
u32 octeon_read_index; u32 octeon_read_index;
/** This index aids in finding the window in the queue where Octeon /** This index aids in finding the window in the queue where Octeon
* has read the commands. * has read the commands.
*/ */
u32 flush_index; u32 flush_index;
/** This field keeps track of the instructions pending in this queue. */ /** This field keeps track of the instructions pending in this queue. */
...@@ -149,8 +144,8 @@ struct octeon_instr_queue { ...@@ -149,8 +144,8 @@ struct octeon_instr_queue {
u64 last_db_time; u64 last_db_time;
/** The doorbell timeout. If the doorbell was not rung for this time and /** The doorbell timeout. If the doorbell was not rung for this time and
* fill_cnt is non-zero, ring the doorbell again. * fill_cnt is non-zero, ring the doorbell again.
*/ */
u32 db_timeout; u32 db_timeout;
/** Statistics for this input queue. */ /** Statistics for this input queue. */
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -13,13 +13,8 @@ ...@@ -13,13 +13,8 @@
* This file is distributed in the hope that it will be useful, but * This file is distributed in the hope that it will be useful, but
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more details.
* details. ***********************************************************************/
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/
/*! \file octeon_main.h /*! \file octeon_main.h
* \brief Host Driver: This file is included by all host driver source files * \brief Host Driver: This file is included by all host driver source files
* to include common definitions. * to include common definitions.
...@@ -78,10 +73,10 @@ static inline void octeon_swap_8B_data(u64 *data, u32 blocks) ...@@ -78,10 +73,10 @@ static inline void octeon_swap_8B_data(u64 *data, u32 blocks)
} }
/** /**
* \brief unmaps a PCI BAR * \brief unmaps a PCI BAR
* @param oct Pointer to Octeon device * @param oct Pointer to Octeon device
* @param baridx bar index * @param baridx bar index
*/ */
static inline void octeon_unmap_pci_barx(struct octeon_device *oct, int baridx) static inline void octeon_unmap_pci_barx(struct octeon_device *oct, int baridx)
{ {
dev_dbg(&oct->pci_dev->dev, "Freeing PCI mapped regions for Bar%d\n", dev_dbg(&oct->pci_dev->dev, "Freeing PCI mapped regions for Bar%d\n",
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include "liquidio_common.h" #include "liquidio_common.h"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
/*! \file octeon_mem_ops.h /*! \file octeon_mem_ops.h
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
/*! \file octeon_network.h /*! \file octeon_network.h
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
/*! \file octeon_nic.h /*! \file octeon_nic.h
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/netdevice.h> #include <linux/netdevice.h>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Contact: support@cavium.com * Contact: support@cavium.com
* Please include "LiquidIO" in the subject. * Please include "LiquidIO" in the subject.
* *
* Copyright (c) 2003-2015 Cavium, Inc. * Copyright (c) 2003-2016 Cavium, Inc.
* *
* This file is free software; you can redistribute it and/or modify * This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2, as * it under the terms of the GNU General Public License, Version 2, as
...@@ -15,9 +15,6 @@ ...@@ -15,9 +15,6 @@
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
* NONINFRINGEMENT. See the GNU General Public License for more * NONINFRINGEMENT. See the GNU General Public License for more
* details. * details.
*
* This file may also be available under a different license from Cavium.
* Contact Cavium, Inc. for more information
**********************************************************************/ **********************************************************************/
/*! \file response_manager.h /*! \file response_manager.h
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment