1 /******************************************************************************* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 * 21 * Copyright 2014 QLogic Corporation 22 * The contents of this file are subject to the terms of the 23 * QLogic End User License (the "License"). 24 * You may not use this file except in compliance with the License. 25 * 26 * You can obtain a copy of the License at 27 * http://www.qlogic.com/Resources/Documents/DriverDownloadHelp/ 28 * QLogic_End_User_Software_License.txt 29 * See the License for the specific language governing permissions 30 * and limitations under the License. 31 * 32 * 33 * Module Description: 34 * 35 * 36 * History: 37 * 02/05/07 Alon Elhanani Inception. 38 ******************************************************************************/ 39 #ifndef _DMAE_H 40 #define _DMAE_H 41 42 // DMAE commands allocations: 43 44 #define DMAE_CMD_DRV_0 0 45 #define DMAE_CMD_DRV_1 1 46 #define DMAE_CMD_DRV_2 2 47 #define DMAE_CMD_DRV_3 3 48 #define DMAE_CMD_DRV_4 4 49 #define DMAE_CMD_DRV_5 5 50 #define DMAE_CMD_DRV_6 6 51 #define DMAE_CMD_DRV_7 7 52 #define DMAE_CMD_DRV_8 8 53 #define DMAE_CMD_DRV_9 9 54 #define DMAE_CMD_DRV_10 10 55 #define DMAE_CMD_DRV_11 11 56 #define DMAE_CMD_DRV_12 12 57 #define DMAE_CMD_DRV_13 13 58 #define DMAE_CMD_MFW_0 14 59 #define DMAE_CMD_MFW_1 15 60 61 /* continue with other DAME clietns: 62 e.g.: 63 . 64 . 65 . 66 . 67 #define DMAE_CMD_XXX_1 15 68 */ 69 70 #endif // _DMAE_H 71