mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mlxsw: Introduce Mellanox SwitchX-2 ASIC support
Benefit from the previously introduced Mellanox Switch infrastructure and add driver for SwitchX-2 ASIC. Note that this driver is very simple now. It implements bare minimum for getting device to work on slow-path. Fast-path offload functionality is going to be added soon. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: Elad Raz <eladr@mellanox.com> Reviewed-by: Scott Feldman <sfeldma@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4ec14b7634
commit
31557f0f97
8 changed files with 1655 additions and 0 deletions
|
@ -19,3 +19,14 @@ config MLXSW_PCI
|
|||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called mlxsw_pci.
|
||||
|
||||
config MLXSW_SWITCHX2
|
||||
tristate "Mellanox Technologies SwitchX-2 support"
|
||||
depends on MLXSW_CORE && NET_SWITCHDEV
|
||||
default m
|
||||
---help---
|
||||
This driver supports Mellanox Technologies SwitchX-2 Ethernet
|
||||
Switch ASICs.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called mlxsw_switchx2.
|
||||
|
|
|
@ -2,3 +2,5 @@ obj-$(CONFIG_MLXSW_CORE) += mlxsw_core.o
|
|||
mlxsw_core-objs := core.o
|
||||
obj-$(CONFIG_MLXSW_PCI) += mlxsw_pci.o
|
||||
mlxsw_pci-objs := pci.o
|
||||
obj-$(CONFIG_MLXSW_SWITCHX2) += mlxsw_switchx2.o
|
||||
mlxsw_switchx2-objs := switchx2.o
|
||||
|
|
|
@ -53,6 +53,8 @@
|
|||
#define MODULE_MLXSW_DRIVER_ALIAS(kind) \
|
||||
MODULE_ALIAS(MLXSW_MODULE_ALIAS_PREFIX kind)
|
||||
|
||||
#define MLXSW_DEVICE_KIND_SWITCHX2 "switchx2"
|
||||
|
||||
struct mlxsw_core;
|
||||
struct mlxsw_driver;
|
||||
struct mlxsw_bus;
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
static const char mlxsw_pci_driver_name[] = "mlxsw_pci";
|
||||
|
||||
static const struct pci_device_id mlxsw_pci_id_table[] = {
|
||||
{PCI_VDEVICE(MELLANOX, PCI_DEVICE_ID_MELLANOX_SWITCHX2), 0},
|
||||
{0, }
|
||||
};
|
||||
|
||||
|
@ -63,6 +64,8 @@ static struct dentry *mlxsw_pci_dbg_root;
|
|||
static const char *mlxsw_pci_device_kind_get(const struct pci_device_id *id)
|
||||
{
|
||||
switch (id->device) {
|
||||
case PCI_DEVICE_ID_MELLANOX_SWITCHX2:
|
||||
return MLXSW_DEVICE_KIND_SWITCHX2;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
|
||||
#include "item.h"
|
||||
|
||||
#define PCI_DEVICE_ID_MELLANOX_SWITCHX2 0xc738
|
||||
#define MLXSW_PCI_BAR0_SIZE (1024 * 1024) /* 1MB */
|
||||
#define MLXSW_PCI_PAGE_SIZE 4096
|
||||
|
||||
|
|
|
@ -51,6 +51,10 @@
|
|||
#define MLXSW_PORT_MAX_PHY_PORTS 0x40
|
||||
#define MLXSW_PORT_MAX_PORTS MLXSW_PORT_MAX_PHY_PORTS
|
||||
|
||||
#define MLXSW_PORT_DEVID_BITS_OFFSET 10
|
||||
#define MLXSW_PORT_PHY_BITS_OFFSET 4
|
||||
#define MLXSW_PORT_PHY_BITS_MASK (MLXSW_PORT_MAX_PHY_PORTS - 1)
|
||||
|
||||
#define MLXSW_PORT_CPU_PORT 0x0
|
||||
|
||||
#define MLXSW_PORT_DONT_CARE (MLXSW_PORT_MAX_PORTS)
|
||||
|
|
1552
drivers/net/ethernet/mellanox/mlxsw/switchx2.c
Normal file
1552
drivers/net/ethernet/mellanox/mlxsw/switchx2.c
Normal file
File diff suppressed because it is too large
Load diff
80
drivers/net/ethernet/mellanox/mlxsw/txheader.h
Normal file
80
drivers/net/ethernet/mellanox/mlxsw/txheader.h
Normal file
|
@ -0,0 +1,80 @@
|
|||
/*
|
||||
* drivers/net/ethernet/mellanox/mlxsw/txheader.h
|
||||
* Copyright (c) 2015 Mellanox Technologies. All rights reserved.
|
||||
* Copyright (c) 2015 Ido Schimmel <idosch@mellanox.com>
|
||||
* Copyright (c) 2015 Jiri Pirko <jiri@mellanox.com>
|
||||
*
|
||||
* 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.
|
||||
* 3. Neither the names of the copyright holders nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* Alternatively, this software may be distributed under the terms of the
|
||||
* GNU General Public License ("GPL") version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifndef _MLXSW_TXHEADER_H
|
||||
#define _MLXSW_TXHEADER_H
|
||||
|
||||
#define MLXSW_TXHDR_LEN 0x10
|
||||
#define MLXSW_TXHDR_VERSION_0 0
|
||||
|
||||
enum {
|
||||
MLXSW_TXHDR_ETH_CTL,
|
||||
MLXSW_TXHDR_ETH_DATA,
|
||||
};
|
||||
|
||||
#define MLXSW_TXHDR_PROTO_ETH 1
|
||||
|
||||
enum {
|
||||
MLXSW_TXHDR_ETCLASS_0,
|
||||
MLXSW_TXHDR_ETCLASS_1,
|
||||
MLXSW_TXHDR_ETCLASS_2,
|
||||
MLXSW_TXHDR_ETCLASS_3,
|
||||
MLXSW_TXHDR_ETCLASS_4,
|
||||
MLXSW_TXHDR_ETCLASS_5,
|
||||
MLXSW_TXHDR_ETCLASS_6,
|
||||
MLXSW_TXHDR_ETCLASS_7,
|
||||
};
|
||||
|
||||
enum {
|
||||
MLXSW_TXHDR_RDQ_OTHER,
|
||||
MLXSW_TXHDR_RDQ_EMAD = 0x1f,
|
||||
};
|
||||
|
||||
#define MLXSW_TXHDR_CTCLASS3 0
|
||||
#define MLXSW_TXHDR_CPU_SIG 0
|
||||
#define MLXSW_TXHDR_SIG 0xE0E0
|
||||
#define MLXSW_TXHDR_STCLASS_NONE 0
|
||||
|
||||
enum {
|
||||
MLXSW_TXHDR_NOT_EMAD,
|
||||
MLXSW_TXHDR_EMAD,
|
||||
};
|
||||
|
||||
enum {
|
||||
MLXSW_TXHDR_TYPE_DATA,
|
||||
MLXSW_TXHDR_TYPE_CONTROL = 6,
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue