From: Roland Dreier <rdreier@cisco.com>
To: linux-kernel@vger.kernel.org, general@lists.openfabrics.org,
netdev@vger.kernel.org
Subject: [last RFC] mlx4 (Mellanox ConnectX adapter) InfiniBand drivers
Date: Mon, 07 May 2007 19:40:29 -0700 [thread overview]
Message-ID: <adaejls597m.fsf@cisco.com> (raw)
I've added my InfiniBand drivers for the new Mellanox ConnectX adapter
to what's queued up for 2.6.22 in:
git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git for-2.6.22
This is still a new driver, with some things missing and undoubtedly
some bugs and opportunities for cleanup, but I trust myself to keep
improving the driver even after it's upstream. Unless I hear a good
reason why I shouldn't, I'll ask Linus to pull this tomorrow.
I received no responses to my earlier posts, so I'm not going to spam
everyone with a big patch series again. But here's the diffstat at
least -- if you want to see details, just pull the git URL above.
commit 0c2f16963d60c30920ee4fb3c900ae29d6ed0f74
Author: Roland Dreier <rolandd@cisco.com>
Date: Mon May 7 15:48:06 2007 -0700
IB/mlx4: Add a driver Mellanox ConnectX InfiniBand adapters
Add an InfiniBand driver for Mellanox ConnectX adapters. Because
these adapters can also be used as ethernet NICs and Fibre Channel
HBAs, the driver is split into two modules:
mlx4_core: Handles low-level things like device initialization and
processing firmware commands. Also controls resource allocation
so that the InfiniBand, ethernet and FC functions can share a
device without stepping on each other.
mlx4_ib: Handles InfiniBand-specific things; plugs into the
InfiniBand midlayer.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/Kconfig | 2 +
drivers/infiniband/Makefile | 1 +
drivers/infiniband/hw/mlx4/Kconfig | 9 +
drivers/infiniband/hw/mlx4/Makefile | 3 +
drivers/infiniband/hw/mlx4/ah.c | 100 +++
drivers/infiniband/hw/mlx4/cq.c | 525 +++++++++++++
drivers/infiniband/hw/mlx4/doorbell.c | 216 ++++++
drivers/infiniband/hw/mlx4/mad.c | 339 +++++++++
drivers/infiniband/hw/mlx4/main.c | 651 +++++++++++++++++
drivers/infiniband/hw/mlx4/mlx4_ib.h | 285 ++++++++
drivers/infiniband/hw/mlx4/mr.c | 184 +++++
drivers/infiniband/hw/mlx4/qp.c | 1294 +++++++++++++++++++++++++++++++++
drivers/infiniband/hw/mlx4/srq.c | 334 +++++++++
drivers/infiniband/hw/mlx4/user.h | 92 +++
drivers/net/Kconfig | 14 +
drivers/net/Makefile | 1 +
drivers/net/mlx4/Makefile | 4 +
drivers/net/mlx4/alloc.c | 179 +++++
drivers/net/mlx4/catas.c | 70 ++
drivers/net/mlx4/cmd.c | 429 +++++++++++
drivers/net/mlx4/cq.c | 254 +++++++
drivers/net/mlx4/eq.c | 696 ++++++++++++++++++
drivers/net/mlx4/fw.c | 775 ++++++++++++++++++++
drivers/net/mlx4/fw.h | 167 +++++
drivers/net/mlx4/icm.c | 379 ++++++++++
drivers/net/mlx4/icm.h | 135 ++++
drivers/net/mlx4/intf.c | 165 +++++
drivers/net/mlx4/main.c | 936 ++++++++++++++++++++++++
drivers/net/mlx4/mcg.c | 380 ++++++++++
drivers/net/mlx4/mlx4.h | 348 +++++++++
drivers/net/mlx4/mr.c | 479 ++++++++++++
drivers/net/mlx4/pd.c | 102 +++
drivers/net/mlx4/profile.c | 238 ++++++
drivers/net/mlx4/qp.c | 273 +++++++
drivers/net/mlx4/reset.c | 181 +++++
drivers/net/mlx4/srq.c | 227 ++++++
include/linux/mlx4/cmd.h | 178 +++++
include/linux/mlx4/cq.h | 123 ++++
include/linux/mlx4/device.h | 331 +++++++++
include/linux/mlx4/doorbell.h | 97 +++
include/linux/mlx4/driver.h | 59 ++
include/linux/mlx4/qp.h | 288 ++++++++
include/linux/mlx4/srq.h | 42 ++
43 files changed, 11585 insertions(+), 0 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Roland Dreier <rdreier@cisco.com>
To: linux-kernel@vger.kernel.org, general@lists.openfabrics.org,
netdev@vger.kernel.org
Subject: [ofa-general] [last RFC] mlx4 (Mellanox ConnectX adapter) InfiniBand drivers
Date: Mon, 07 May 2007 19:40:29 -0700 [thread overview]
Message-ID: <adaejls597m.fsf@cisco.com> (raw)
I've added my InfiniBand drivers for the new Mellanox ConnectX adapter
to what's queued up for 2.6.22 in:
git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git for-2.6.22
This is still a new driver, with some things missing and undoubtedly
some bugs and opportunities for cleanup, but I trust myself to keep
improving the driver even after it's upstream. Unless I hear a good
reason why I shouldn't, I'll ask Linus to pull this tomorrow.
I received no responses to my earlier posts, so I'm not going to spam
everyone with a big patch series again. But here's the diffstat at
least -- if you want to see details, just pull the git URL above.
commit 0c2f16963d60c30920ee4fb3c900ae29d6ed0f74
Author: Roland Dreier <rolandd@cisco.com>
Date: Mon May 7 15:48:06 2007 -0700
IB/mlx4: Add a driver Mellanox ConnectX InfiniBand adapters
Add an InfiniBand driver for Mellanox ConnectX adapters. Because
these adapters can also be used as ethernet NICs and Fibre Channel
HBAs, the driver is split into two modules:
mlx4_core: Handles low-level things like device initialization and
processing firmware commands. Also controls resource allocation
so that the InfiniBand, ethernet and FC functions can share a
device without stepping on each other.
mlx4_ib: Handles InfiniBand-specific things; plugs into the
InfiniBand midlayer.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/Kconfig | 2 +
drivers/infiniband/Makefile | 1 +
drivers/infiniband/hw/mlx4/Kconfig | 9 +
drivers/infiniband/hw/mlx4/Makefile | 3 +
drivers/infiniband/hw/mlx4/ah.c | 100 +++
drivers/infiniband/hw/mlx4/cq.c | 525 +++++++++++++
drivers/infiniband/hw/mlx4/doorbell.c | 216 ++++++
drivers/infiniband/hw/mlx4/mad.c | 339 +++++++++
drivers/infiniband/hw/mlx4/main.c | 651 +++++++++++++++++
drivers/infiniband/hw/mlx4/mlx4_ib.h | 285 ++++++++
drivers/infiniband/hw/mlx4/mr.c | 184 +++++
drivers/infiniband/hw/mlx4/qp.c | 1294 +++++++++++++++++++++++++++++++++
drivers/infiniband/hw/mlx4/srq.c | 334 +++++++++
drivers/infiniband/hw/mlx4/user.h | 92 +++
drivers/net/Kconfig | 14 +
drivers/net/Makefile | 1 +
drivers/net/mlx4/Makefile | 4 +
drivers/net/mlx4/alloc.c | 179 +++++
drivers/net/mlx4/catas.c | 70 ++
drivers/net/mlx4/cmd.c | 429 +++++++++++
drivers/net/mlx4/cq.c | 254 +++++++
drivers/net/mlx4/eq.c | 696 ++++++++++++++++++
drivers/net/mlx4/fw.c | 775 ++++++++++++++++++++
drivers/net/mlx4/fw.h | 167 +++++
drivers/net/mlx4/icm.c | 379 ++++++++++
drivers/net/mlx4/icm.h | 135 ++++
drivers/net/mlx4/intf.c | 165 +++++
drivers/net/mlx4/main.c | 936 ++++++++++++++++++++++++
drivers/net/mlx4/mcg.c | 380 ++++++++++
drivers/net/mlx4/mlx4.h | 348 +++++++++
drivers/net/mlx4/mr.c | 479 ++++++++++++
drivers/net/mlx4/pd.c | 102 +++
drivers/net/mlx4/profile.c | 238 ++++++
drivers/net/mlx4/qp.c | 273 +++++++
drivers/net/mlx4/reset.c | 181 +++++
drivers/net/mlx4/srq.c | 227 ++++++
include/linux/mlx4/cmd.h | 178 +++++
include/linux/mlx4/cq.h | 123 ++++
include/linux/mlx4/device.h | 331 +++++++++
include/linux/mlx4/doorbell.h | 97 +++
include/linux/mlx4/driver.h | 59 ++
include/linux/mlx4/qp.h | 288 ++++++++
include/linux/mlx4/srq.h | 42 ++
43 files changed, 11585 insertions(+), 0 deletions(-)
next reply other threads:[~2007-05-08 2:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-08 2:40 Roland Dreier [this message]
2007-05-08 2:40 ` [ofa-general] [last RFC] mlx4 (Mellanox ConnectX adapter) InfiniBand drivers Roland Dreier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=adaejls597m.fsf@cisco.com \
--to=rdreier@cisco.com \
--cc=general@lists.openfabrics.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.