/* * nomadik.h * * Copyright (C) ST-Ericsson SA 2013 * Author: Gabriel Fernandez for ST-Ericsson. * License terms: GNU General Public License (GPL), version 2 */ #define INPUT_NOPULL 0 #define INPUT_PULLUP 1 #define INPUT_PULLDOWN 2 #define OUTPUT_LOW 0 #define OUTPUT_HIGH 1 #define DIR_OUTPUT 2 #define SLPM_DISABLED 0 #define SLPM_ENABLED 1 #define SLPM_INPUT_NOPULL 0 #define SLPM_INPUT_PULLUP 1 #define SLPM_INPUT_PULLDOWN 2 #define SLPM_DIR_INPUT 3 #define SLPM_OUTPUT_LOW 0 #define SLPM_OUTPUT_HIGH 1 #define SLPM_DIR_OUTPUT 2 #define SLPM_WAKEUP_DISABLE 0 #define SLPM_WAKEUP_ENABLE 1 #define GPIOMODE_DISABLED 0 #define GPIOMODE_ENABLED 1 #define SLPM_PDIS_DISABLED 0 #define SLPM_PDIS_ENABLED 1 ass='main'>index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2017-02-07 13:44:08 -0500
committerDavid S. Miller <davem@davemloft.net>2017-02-07 13:44:08 -0500
commit501ec18757abdaba95440dbbd1d5df0611f813c4 (patch)
tree6dc6aae36d3880ce2b13fc3ccd60b092e90bfca5 /include
parent219189e764be35372c298bee6492fc4c870b6ffd (diff)
parent8ca967ab67671f07ac7daef4f854559bc66799a3 (diff)
Merge tag 'mlx5-updates-2017-01-31' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux
Saeed Mahameed says: ==================== mlx5-updates-2017-01-31 This series includes some updates to mlx5 core and ethernet driver. We got one patch from Or to fix some static checker warnings. 2nd patche from Dan came to add the support for 128B cache line in the HCA, which will configures the hardware to use 128B alignment only on systems with 128B cache lines, otherwise it will be kept as the current default of 64B. From me three patches to support no inline copy on TX on ConnectX-5 and later HCAs. Starting with two small infrastructure changes and refactoring patches followed by two patches to add the actual support for both xmit ndo and XDP xmit routines. Last patch is a simple fix to return a mistakenly removed pointer from the SQ structure, which was remove in previous submission of mlx5 4K UAR. Saeed. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mlx5/device.h3
-rw-r--r--include/linux/mlx5/mlx5_ifc.h9
-rw-r--r--include/linux/mlx5/qp.h16
3 files changed, 22 insertions, 6 deletions
diff --git a/include/linux/mlx5/device.h b/include/linux/mlx5/device.h