1 /****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 * You should have received a copy of the GNU General Public License along with 15 * this program; if not, write to the Free Software Foundation, Inc., 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 17 * 18 * 19 ******************************************************************************/ 20 #ifndef __RTL8712_INTERRUPT_BITDEF_H__ 21 #define __RTL8712_INTERRUPT_BITDEF_H__ 22 23 /*HIMR*/ 24 /*HISR*/ 25 #define _CPUERR BIT(29) 26 #define _ATIMEND BIT(28) 27 #define _TXBCNOK BIT(27) 28 #define _TXBCNERR BIT(26) 29 #define _BCNDMAINT4 BIT(25) 30 #define _BCNDMAINT3 BIT(24) 31 #define _BCNDMAINT2 BIT(23) 32 #define _BCNDMAINT1 BIT(22) 33 #define _BCNDOK4 BIT(21) 34 #define _BCNDOK3 BIT(20) 35 #define _BCNDOK2 BIT(19) 36 #define _BCNDOK1 BIT(18) 37 #define _TIMEOUT2 BIT(17) 38 #define _TIMEOUT1 BIT(16) 39 #define _TXFOVW BIT(15) 40 #define _PSTIMEOUT BIT(14) 41 #define _BCNDMAINT0 BIT(13) 42 #define _FOVW BIT(12) 43 #define _RDU BIT(11) 44 #define _RXCMDOK BIT(10) 45 #define _BCNDOK0 BIT(9) 46 #define _HIGHDOK BIT(8) 47 #define _COMDOK BIT(7) 48 #define _MGTDOK BIT(6) 49 #define _HCCADOK BIT(5) 50 #define _BKDOK BIT(4) 51 #define _BEDOK BIT(3) 52 #define _VIDOK BIT(2) 53 #define _VODOK BIT(1) 54 #define _RXOK BIT(0) 55 56 57 #endif /*__RTL8712_INTERRUPT_BITDEF_H__*/ 58 59