| 
									
										
										
										
											2014-09-22 09:39:26 -05:00
										 |  |  |  | /******************************************************************************
 | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Copyright(c) 2009-2010  Realtek Corporation. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  |  * under the terms of version 2 of the GNU General Public License as | 
					
						
							|  |  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This program is distributed in the hope that it will be useful, but WITHOUT | 
					
						
							|  |  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |  |  * more details. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * The full GNU General Public License is included in this distribution in the | 
					
						
							|  |  |  |  |  * file called LICENSE. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Contact Information: | 
					
						
							|  |  |  |  |  * wlanfae <wlanfae@realtek.com> | 
					
						
							|  |  |  |  |  * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park, | 
					
						
							|  |  |  |  |  * Hsinchu 300, Taiwan. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Larry Finger <Larry.Finger@lwfinger.net> | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *****************************************************************************/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #include "../wifi.h"
 | 
					
						
							|  |  |  |  | #include "../pci.h"
 | 
					
						
							|  |  |  |  | #include "../base.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-26 16:40:27 -05:00
										 |  |  |  | #include "../core.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-22 09:39:26 -05:00
										 |  |  |  | #include "reg.h"
 | 
					
						
							|  |  |  |  | #include "def.h"
 | 
					
						
							|  |  |  |  | #include "fw.h"
 | 
					
						
							|  |  |  |  | #include "dm.h"
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_enable_fw_download(struct ieee80211_hw *hw, bool enable) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 tmp; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (enable) { | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_MCUFWDL, 0x05); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		tmp = rtl_read_byte(rtlpriv, REG_MCUFWDL + 2); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_MCUFWDL + 2, tmp & 0xf7); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		tmp = rtl_read_byte(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		tmp = rtl_read_byte(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_MCUFWDL, tmp & 0xfe); | 
					
						
							|  |  |  |  | 		tmp = rtl_read_byte(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_fw_block_write(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				      const u8 *buffer, u32 size) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u32 blocksize = sizeof(u32); | 
					
						
							|  |  |  |  | 	u8 *bufferptr = (u8 *)buffer; | 
					
						
							|  |  |  |  | 	u32 *pu4byteptr = (u32 *)buffer; | 
					
						
							|  |  |  |  | 	u32 i, offset, blockcount, remainsize; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	blockcount = size / blocksize; | 
					
						
							|  |  |  |  | 	remainsize = size % blocksize; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	for (i = 0; i < blockcount; i++) { | 
					
						
							|  |  |  |  | 		offset = i * blocksize; | 
					
						
							|  |  |  |  | 		rtl_write_dword(rtlpriv, (FW_8821AE_START_ADDRESS + offset), | 
					
						
							|  |  |  |  | 				*(pu4byteptr + i)); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (remainsize) { | 
					
						
							|  |  |  |  | 		offset = blockcount * blocksize; | 
					
						
							|  |  |  |  | 		bufferptr += offset; | 
					
						
							|  |  |  |  | 		for (i = 0; i < remainsize; i++) { | 
					
						
							|  |  |  |  | 			rtl_write_byte(rtlpriv, (FW_8821AE_START_ADDRESS + | 
					
						
							|  |  |  |  | 					offset + i), *(bufferptr + i)); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_fw_page_write(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				     u32 page, const u8 *buffer, u32 size) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 value8; | 
					
						
							|  |  |  |  | 	u8 u8page = (u8)(page & 0x07); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	value8 = (rtl_read_byte(rtlpriv, REG_MCUFWDL + 2) & 0xF8) | u8page; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl_write_byte(rtlpriv, (REG_MCUFWDL + 2), value8); | 
					
						
							|  |  |  |  | 	_rtl8821ae_fw_block_write(hw, buffer, size); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_fill_dummy(u8 *pfwbuf, u32 *pfwlen) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	u32 fwlen = *pfwlen; | 
					
						
							|  |  |  |  | 	u8 remain = (u8)(fwlen % 4); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	remain = (remain == 0) ? 0 : (4 - remain); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	while (remain > 0) { | 
					
						
							|  |  |  |  | 		pfwbuf[fwlen] = 0; | 
					
						
							|  |  |  |  | 		fwlen++; | 
					
						
							|  |  |  |  | 		remain--; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	*pfwlen = fwlen; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_write_fw(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				enum version_8821ae version, | 
					
						
							|  |  |  |  | 				u8 *buffer, u32 size) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 *bufferptr = (u8 *)buffer; | 
					
						
							|  |  |  |  | 	u32 pagenums, remainsize; | 
					
						
							|  |  |  |  | 	u32 page, offset; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "FW size is %d bytes,\n", size); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	_rtl8821ae_fill_dummy(bufferptr, &size); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	pagenums = size / FW_8821AE_PAGE_SIZE; | 
					
						
							|  |  |  |  | 	remainsize = size % FW_8821AE_PAGE_SIZE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (pagenums > 8) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | 
					
						
							|  |  |  |  | 			 "Page numbers should not greater then 8\n"); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	for (page = 0; page < pagenums; page++) { | 
					
						
							|  |  |  |  | 		offset = page * FW_8821AE_PAGE_SIZE; | 
					
						
							|  |  |  |  | 		_rtl8821ae_fw_page_write(hw, page, (bufferptr + offset), | 
					
						
							|  |  |  |  | 					 FW_8821AE_PAGE_SIZE); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (remainsize) { | 
					
						
							|  |  |  |  | 		offset = pagenums * FW_8821AE_PAGE_SIZE; | 
					
						
							|  |  |  |  | 		page = pagenums; | 
					
						
							|  |  |  |  | 		_rtl8821ae_fw_page_write(hw, page, (bufferptr + offset), | 
					
						
							|  |  |  |  | 					 remainsize); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static int _rtl8821ae_fw_free_to_go(struct ieee80211_hw *hw) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	int err = -EIO; | 
					
						
							|  |  |  |  | 	u32 counter = 0; | 
					
						
							|  |  |  |  | 	u32 value32; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	do { | 
					
						
							|  |  |  |  | 		value32 = rtl_read_dword(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 	} while ((counter++ < FW_8821AE_POLLING_TIMEOUT_COUNT) && | 
					
						
							|  |  |  |  | 		 (!(value32 & FWDL_CHKSUM_RPT))); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (counter >= FW_8821AE_POLLING_TIMEOUT_COUNT) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "chksum report faill ! REG_MCUFWDL:0x%08x .\n", | 
					
						
							|  |  |  |  | 			  value32); | 
					
						
							|  |  |  |  | 		goto exit; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_FW, DBG_EMERG, | 
					
						
							|  |  |  |  | 		 "Checksum report OK ! REG_MCUFWDL:0x%08x .\n", value32); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	value32 = rtl_read_dword(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 	value32 |= MCUFWDL_RDY; | 
					
						
							|  |  |  |  | 	value32 &= ~WINTINI_RDY; | 
					
						
							|  |  |  |  | 	rtl_write_dword(rtlpriv, REG_MCUFWDL, value32); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_firmware_selfreset(hw); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	counter = 0; | 
					
						
							|  |  |  |  | 	do { | 
					
						
							|  |  |  |  | 		value32 = rtl_read_dword(rtlpriv, REG_MCUFWDL); | 
					
						
							|  |  |  |  | 		if (value32 & WINTINI_RDY) { | 
					
						
							|  |  |  |  | 			RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, | 
					
						
							|  |  |  |  | 				 "Polling FW ready success!! REG_MCUFWDL:0x%08x .\n", | 
					
						
							|  |  |  |  | 				  value32); | 
					
						
							|  |  |  |  | 			err = 0; | 
					
						
							|  |  |  |  | 			goto exit; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		udelay(FW_8821AE_POLLING_DELAY); | 
					
						
							|  |  |  |  | 	} while (counter++ < FW_8821AE_POLLING_TIMEOUT_COUNT); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | 
					
						
							|  |  |  |  | 		 "Polling FW ready fail!! REG_MCUFWDL:0x%08x .\n", | 
					
						
							|  |  |  |  | 		 value32); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | exit: | 
					
						
							|  |  |  |  | 	return err; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_wait_for_h2c_cmd_finish(struct rtl_priv *rtlpriv) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	u8 val; | 
					
						
							|  |  |  |  | 	u16 count = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	do { | 
					
						
							|  |  |  |  | 		val = rtl_read_byte(rtlpriv, REG_HMETFR); | 
					
						
							|  |  |  |  | 		mdelay(1); | 
					
						
							|  |  |  |  | 		count++; | 
					
						
							|  |  |  |  | 	} while ((val & 0x0F) && (count < 1000)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | int rtl8821ae_download_fw(struct ieee80211_hw *hw, bool buse_wake_on_wlan_fw) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct rtl8821a_firmware_header *pfwheader; | 
					
						
							|  |  |  |  | 	u8 *pfwdata; | 
					
						
							|  |  |  |  | 	u32 fwsize; | 
					
						
							|  |  |  |  | 	int err; | 
					
						
							|  |  |  |  | 	bool support_remote_wakeup; | 
					
						
							|  |  |  |  | 	enum version_8821ae version = rtlhal->version; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtlpriv->cfg->ops->get_hw_reg(hw, HAL_DEF_WOWLAN, | 
					
						
							|  |  |  |  | 				      (u8 *)(&support_remote_wakeup)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (support_remote_wakeup) | 
					
						
							|  |  |  |  | 		_rtl8821ae_wait_for_h2c_cmd_finish(rtlpriv); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (buse_wake_on_wlan_fw) { | 
					
						
							|  |  |  |  | 		if (!rtlhal->wowlan_firmware) | 
					
						
							|  |  |  |  | 			return 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		pfwheader = | 
					
						
							|  |  |  |  | 		  (struct rtl8821a_firmware_header *)rtlhal->wowlan_firmware; | 
					
						
							|  |  |  |  | 		rtlhal->fw_version = pfwheader->version; | 
					
						
							|  |  |  |  | 		rtlhal->fw_subversion = pfwheader->subversion; | 
					
						
							|  |  |  |  | 		pfwdata = (u8 *)rtlhal->wowlan_firmware; | 
					
						
							|  |  |  |  | 		fwsize = rtlhal->wowlan_fwsize; | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		if (!rtlhal->pfirmware) | 
					
						
							|  |  |  |  | 			return 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		pfwheader = | 
					
						
							|  |  |  |  | 		  (struct rtl8821a_firmware_header *)rtlhal->pfirmware; | 
					
						
							|  |  |  |  | 		rtlhal->fw_version = pfwheader->version; | 
					
						
							|  |  |  |  | 		rtlhal->fw_subversion = pfwheader->subversion; | 
					
						
							|  |  |  |  | 		pfwdata = (u8 *)rtlhal->pfirmware; | 
					
						
							|  |  |  |  | 		fwsize = rtlhal->fwsize; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_FW, DBG_DMESG, | 
					
						
							|  |  |  |  | 		 "%s Firmware SIZE %d\n", | 
					
						
							|  |  |  |  | 		 buse_wake_on_wlan_fw ? "Wowlan" : "Normal", fwsize); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (IS_FW_HEADER_EXIST_8812(pfwheader) || | 
					
						
							|  |  |  |  | 	    IS_FW_HEADER_EXIST_8821(pfwheader)) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_DMESG, | 
					
						
							|  |  |  |  | 			 "Firmware Version(%d), Signature(%#x)\n", | 
					
						
							|  |  |  |  | 			 pfwheader->version, pfwheader->signature); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		pfwdata = pfwdata + sizeof(struct rtl8821a_firmware_header); | 
					
						
							|  |  |  |  | 		fwsize = fwsize - sizeof(struct rtl8821a_firmware_header); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (rtlhal->mac_func_enable) { | 
					
						
							|  |  |  |  | 		if (rtl_read_byte(rtlpriv, REG_MCUFWDL) & BIT(7)) { | 
					
						
							|  |  |  |  | 			rtl_write_byte(rtlpriv, REG_MCUFWDL, 0x00); | 
					
						
							|  |  |  |  | 			rtl8821ae_firmware_selfreset(hw); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	_rtl8821ae_enable_fw_download(hw, true); | 
					
						
							|  |  |  |  | 	_rtl8821ae_write_fw(hw, version, pfwdata, fwsize); | 
					
						
							|  |  |  |  | 	_rtl8821ae_enable_fw_download(hw, false); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	err = _rtl8821ae_fw_free_to_go(hw); | 
					
						
							|  |  |  |  | 	if (err) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, | 
					
						
							|  |  |  |  | 			 "Firmware is not ready to run!\n"); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "Firmware is ready to run!\n"); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	return 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #if (USE_SPECIFIC_FW_TO_SUPPORT_WOWLAN == 1)
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_related_for_wowlan(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					 bool used_wowlan_fw) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	/* 1. Before WoWLAN or After WOWLAN we need to re-download Fw. */ | 
					
						
							|  |  |  |  | 	if (rtl8821ae_download_fw(hw, used_wowlan_fw)) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, | 
					
						
							|  |  |  |  | 			 "Re-Download Firmware failed!!\n"); | 
					
						
							|  |  |  |  | 		rtlhal->fw_ready = false; | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, | 
					
						
							|  |  |  |  | 		 "Re-Download Firmware Success !!\n"); | 
					
						
							|  |  |  |  | 	rtlhal->fw_ready = true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/* 2. Re-Init the variables about Fw related setting. */ | 
					
						
							|  |  |  |  | 	ppsc->fw_current_inpsmode = false; | 
					
						
							|  |  |  |  | 	rtlhal->fw_ps_state = FW_PS_STATE_ALL_ON_8821AE; | 
					
						
							|  |  |  |  | 	rtlhal->fw_clk_change_in_progress = false; | 
					
						
							|  |  |  |  | 	rtlhal->allow_sw_to_change_hwclc = false; | 
					
						
							|  |  |  |  | 	rtlhal->last_hmeboxnum = 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static bool _rtl8821ae_check_fw_read_last_h2c(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					      u8 boxnum) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 val_hmetfr; | 
					
						
							|  |  |  |  | 	bool result = false; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	val_hmetfr = rtl_read_byte(rtlpriv, REG_HMETFR); | 
					
						
							|  |  |  |  | 	if (((val_hmetfr >> boxnum) & BIT(0)) == 0) | 
					
						
							|  |  |  |  | 		result = true; | 
					
						
							|  |  |  |  | 	return result; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_fill_h2c_command(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					u8 element_id, u32 cmd_len, | 
					
						
							|  |  |  |  | 					u8 *cmdbuffer) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 boxnum = 0; | 
					
						
							|  |  |  |  | 	u16 box_reg = 0, box_extreg = 0; | 
					
						
							|  |  |  |  | 	u8 u1b_tmp = 0; | 
					
						
							|  |  |  |  | 	bool isfw_read = false; | 
					
						
							|  |  |  |  | 	u8 buf_index = 0; | 
					
						
							|  |  |  |  | 	bool bwrite_sucess = false; | 
					
						
							|  |  |  |  | 	u8 wait_h2c_limmit = 100; | 
					
						
							|  |  |  |  | 	/*u8 wait_writeh2c_limmit = 100;*/ | 
					
						
							|  |  |  |  | 	u8 boxcontent[4], boxextcontent[4]; | 
					
						
							|  |  |  |  | 	u32 h2c_waitcounter = 0; | 
					
						
							|  |  |  |  | 	unsigned long flag = 0; | 
					
						
							|  |  |  |  | 	u8 idx = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, "come in\n"); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	while (true) { | 
					
						
							|  |  |  |  | 		spin_lock_irqsave(&rtlpriv->locks.h2c_lock, flag); | 
					
						
							|  |  |  |  | 		if (rtlhal->h2c_setinprogress) { | 
					
						
							|  |  |  |  | 			RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 				 "H2C set in progress! Wait to set..element_id(%d).\n", | 
					
						
							|  |  |  |  | 				 element_id); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			while (rtlhal->h2c_setinprogress) { | 
					
						
							|  |  |  |  | 				spin_unlock_irqrestore(&rtlpriv->locks.h2c_lock, | 
					
						
							|  |  |  |  | 						       flag); | 
					
						
							|  |  |  |  | 				h2c_waitcounter++; | 
					
						
							|  |  |  |  | 				RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 					 "Wait 100 us (%d times)...\n", | 
					
						
							|  |  |  |  | 					  h2c_waitcounter); | 
					
						
							|  |  |  |  | 				udelay(100); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 				if (h2c_waitcounter > 1000) | 
					
						
							|  |  |  |  | 					return; | 
					
						
							|  |  |  |  | 				spin_lock_irqsave(&rtlpriv->locks.h2c_lock, | 
					
						
							|  |  |  |  | 						  flag); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			spin_unlock_irqrestore(&rtlpriv->locks.h2c_lock, flag); | 
					
						
							|  |  |  |  | 		} else { | 
					
						
							|  |  |  |  | 			rtlhal->h2c_setinprogress = true; | 
					
						
							|  |  |  |  | 			spin_unlock_irqrestore(&rtlpriv->locks.h2c_lock, flag); | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	while (!bwrite_sucess) { | 
					
						
							|  |  |  |  | 		boxnum = rtlhal->last_hmeboxnum; | 
					
						
							|  |  |  |  | 		switch (boxnum) { | 
					
						
							|  |  |  |  | 		case 0: | 
					
						
							|  |  |  |  | 			box_reg = REG_HMEBOX_0; | 
					
						
							|  |  |  |  | 			box_extreg = REG_HMEBOX_EXT_0; | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 1: | 
					
						
							|  |  |  |  | 			box_reg = REG_HMEBOX_1; | 
					
						
							|  |  |  |  | 			box_extreg = REG_HMEBOX_EXT_1; | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 2: | 
					
						
							|  |  |  |  | 			box_reg = REG_HMEBOX_2; | 
					
						
							|  |  |  |  | 			box_extreg = REG_HMEBOX_EXT_2; | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 3: | 
					
						
							|  |  |  |  | 			box_reg = REG_HMEBOX_3; | 
					
						
							|  |  |  |  | 			box_extreg = REG_HMEBOX_EXT_3; | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		default: | 
					
						
							|  |  |  |  | 			RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD, | 
					
						
							|  |  |  |  | 				 "switch case not process\n"); | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		isfw_read = false; | 
					
						
							|  |  |  |  | 		u1b_tmp = rtl_read_byte(rtlpriv, REG_CR); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (u1b_tmp != 0xEA) { | 
					
						
							|  |  |  |  | 			isfw_read = true; | 
					
						
							|  |  |  |  | 		} else { | 
					
						
							|  |  |  |  | 			if (rtl_read_byte(rtlpriv, REG_TXDMA_STATUS) == 0xEA || | 
					
						
							|  |  |  |  | 			    rtl_read_byte(rtlpriv, REG_TXPKT_EMPTY) == 0xEA) | 
					
						
							|  |  |  |  | 				rtl_write_byte(rtlpriv, REG_SYS_CFG1 + 3, 0xFF); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (isfw_read) { | 
					
						
							|  |  |  |  | 			wait_h2c_limmit = 100; | 
					
						
							|  |  |  |  | 			isfw_read = | 
					
						
							|  |  |  |  | 			  _rtl8821ae_check_fw_read_last_h2c(hw, boxnum); | 
					
						
							|  |  |  |  | 			while (!isfw_read) { | 
					
						
							|  |  |  |  | 				/*wait until Fw read*/ | 
					
						
							|  |  |  |  | 				wait_h2c_limmit--; | 
					
						
							|  |  |  |  | 				if (wait_h2c_limmit == 0) { | 
					
						
							|  |  |  |  | 					RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 						 "Waiting too long for FW read clear HMEBox(%d)!\n", | 
					
						
							|  |  |  |  | 						 boxnum); | 
					
						
							|  |  |  |  | 					break; | 
					
						
							|  |  |  |  | 				} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 				udelay(10); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 				isfw_read = | 
					
						
							|  |  |  |  | 				  _rtl8821ae_check_fw_read_last_h2c(hw, boxnum); | 
					
						
							|  |  |  |  | 				u1b_tmp = rtl_read_byte(rtlpriv, 0x130); | 
					
						
							|  |  |  |  | 				RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 					 "Waiting for FW read clear HMEBox(%d)!!! 0x130 = %2x\n", | 
					
						
							|  |  |  |  | 					 boxnum, u1b_tmp); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if (!isfw_read) { | 
					
						
							|  |  |  |  | 			RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 				 "Write H2C register BOX[%d] fail!!!!! Fw do not read.\n", | 
					
						
							|  |  |  |  | 				 boxnum); | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		memset(boxcontent, 0, sizeof(boxcontent)); | 
					
						
							|  |  |  |  | 		memset(boxextcontent, 0, sizeof(boxextcontent)); | 
					
						
							|  |  |  |  | 		boxcontent[0] = element_id; | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "Write element_id box_reg(%4x) = %2x\n", | 
					
						
							|  |  |  |  | 			 box_reg, element_id); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		switch (cmd_len) { | 
					
						
							|  |  |  |  | 		case 1: | 
					
						
							|  |  |  |  | 		case 2: | 
					
						
							|  |  |  |  | 		case 3: | 
					
						
							|  |  |  |  | 			/*boxcontent[0] &= ~(BIT(7));*/ | 
					
						
							|  |  |  |  | 			memcpy((u8 *)(boxcontent) + 1, | 
					
						
							|  |  |  |  | 			       cmdbuffer + buf_index, cmd_len); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			for (idx = 0; idx < 4; idx++) { | 
					
						
							|  |  |  |  | 				rtl_write_byte(rtlpriv, box_reg + idx, | 
					
						
							|  |  |  |  | 					       boxcontent[idx]); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 4: | 
					
						
							|  |  |  |  | 		case 5: | 
					
						
							|  |  |  |  | 		case 6: | 
					
						
							|  |  |  |  | 		case 7: | 
					
						
							|  |  |  |  | 			/*boxcontent[0] |= (BIT(7));*/ | 
					
						
							|  |  |  |  | 			memcpy((u8 *)(boxextcontent), | 
					
						
							|  |  |  |  | 			       cmdbuffer + buf_index+3, cmd_len-3); | 
					
						
							|  |  |  |  | 			memcpy((u8 *)(boxcontent) + 1, | 
					
						
							|  |  |  |  | 			       cmdbuffer + buf_index, 3); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			for (idx = 0; idx < 4; idx++) { | 
					
						
							|  |  |  |  | 				rtl_write_byte(rtlpriv, box_extreg + idx, | 
					
						
							|  |  |  |  | 					       boxextcontent[idx]); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			for (idx = 0; idx < 4; idx++) { | 
					
						
							|  |  |  |  | 				rtl_write_byte(rtlpriv, box_reg + idx, | 
					
						
							|  |  |  |  | 					       boxcontent[idx]); | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		default: | 
					
						
							|  |  |  |  | 			RT_TRACE(rtlpriv, COMP_ERR, DBG_LOUD, | 
					
						
							|  |  |  |  | 				 "switch case not process\n"); | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		bwrite_sucess = true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		rtlhal->last_hmeboxnum = boxnum + 1; | 
					
						
							|  |  |  |  | 		if (rtlhal->last_hmeboxnum == 4) | 
					
						
							|  |  |  |  | 			rtlhal->last_hmeboxnum = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "pHalData->last_hmeboxnum  = %d\n", | 
					
						
							|  |  |  |  | 			  rtlhal->last_hmeboxnum); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	spin_lock_irqsave(&rtlpriv->locks.h2c_lock, flag); | 
					
						
							|  |  |  |  | 	rtlhal->h2c_setinprogress = false; | 
					
						
							|  |  |  |  | 	spin_unlock_irqrestore(&rtlpriv->locks.h2c_lock, flag); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_CMD, DBG_LOUD, "go out\n"); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_fill_h2c_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 			    u8 element_id, u32 cmd_len, u8 *cmdbuffer) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u32 tmp_cmdbuf[2]; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!rtlhal->fw_ready) { | 
					
						
							|  |  |  |  | 		RT_ASSERT(false, | 
					
						
							|  |  |  |  | 			  "return H2C cmd because of Fw download fail!!!\n"); | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	memset(tmp_cmdbuf, 0, 8); | 
					
						
							|  |  |  |  | 	memcpy(tmp_cmdbuf, cmdbuffer, cmd_len); | 
					
						
							|  |  |  |  | 	_rtl8821ae_fill_h2c_command(hw, element_id, cmd_len, (u8 *)&tmp_cmdbuf); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_firmware_selfreset(struct ieee80211_hw *hw) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 u1b_tmp; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (rtlhal->hw_type == HARDWARE_TYPE_RTL8812AE) { | 
					
						
							|  |  |  |  | 		u1b_tmp = rtl_read_byte(rtlpriv, REG_RSV_CTRL+1); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_RSV_CTRL+1, (u1b_tmp & (~BIT(3)))); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		u1b_tmp = rtl_read_byte(rtlpriv, REG_RSV_CTRL+1); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_RSV_CTRL+1, (u1b_tmp & (~BIT(0)))); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	u1b_tmp = rtl_read_byte(rtlpriv, REG_SYS_FUNC_EN+1); | 
					
						
							|  |  |  |  | 	rtl_write_byte(rtlpriv, REG_SYS_FUNC_EN+1, (u1b_tmp & (~BIT(2)))); | 
					
						
							|  |  |  |  | 	udelay(50); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (rtlhal->hw_type == HARDWARE_TYPE_RTL8812AE) { | 
					
						
							|  |  |  |  | 		u1b_tmp = rtl_read_byte(rtlpriv, REG_RSV_CTRL+1); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_RSV_CTRL+1, (u1b_tmp | BIT(3))); | 
					
						
							|  |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		u1b_tmp = rtl_read_byte(rtlpriv, REG_RSV_CTRL+1); | 
					
						
							|  |  |  |  | 		rtl_write_byte(rtlpriv, REG_RSV_CTRL+1, (u1b_tmp | BIT(0))); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	u1b_tmp = rtl_read_byte(rtlpriv, REG_SYS_FUNC_EN+1); | 
					
						
							|  |  |  |  | 	rtl_write_byte(rtlpriv, REG_SYS_FUNC_EN+1, (u1b_tmp | BIT(2))); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, | 
					
						
							|  |  |  |  | 		 "_8051Reset8812ae(): 8051 reset success .\n"); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_pwrmode_cmd(struct ieee80211_hw *hw, u8 mode) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 u1_h2c_set_pwrmode[H2C_8821AE_PWEMODE_LENGTH] = { 0 }; | 
					
						
							|  |  |  |  | 	struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 rlbm, power_state = 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "FW LPS mode = %d\n", mode); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_MODE(u1_h2c_set_pwrmode, ((mode) ? 1 : 0)); | 
					
						
							|  |  |  |  | 	rlbm = 0;/*YJ,temp,120316. FW now not support RLBM=2.*/ | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_RLBM(u1_h2c_set_pwrmode, rlbm); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_SMART_PS(u1_h2c_set_pwrmode, | 
					
						
							|  |  |  |  | 					 (rtlpriv->mac80211.p2p) ? | 
					
						
							|  |  |  |  | 					 ppsc->smart_ps : 1); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_AWAKE_INTERVAL(u1_h2c_set_pwrmode, | 
					
						
							|  |  |  |  | 					       ppsc->reg_max_lps_awakeintvl); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_ALL_QUEUE_UAPSD(u1_h2c_set_pwrmode, 0); | 
					
						
							|  |  |  |  | 	if (mode == FW_PS_ACTIVE_MODE) | 
					
						
							|  |  |  |  | 		power_state |= FW_PWR_STATE_ACTIVE; | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		power_state |= FW_PWR_STATE_RF_OFF; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_PWRMODE_PARM_PWR_STATE(u1_h2c_set_pwrmode, power_state); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_DMESG, | 
					
						
							|  |  |  |  | 		      "rtl92c_set_fw_pwrmode(): u1_h2c_set_pwrmode\n", | 
					
						
							|  |  |  |  | 		      u1_h2c_set_pwrmode, H2C_8821AE_PWEMODE_LENGTH); | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_SETPWRMODE, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_PWEMODE_LENGTH, | 
					
						
							|  |  |  |  | 			       u1_h2c_set_pwrmode); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_media_status_rpt_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					   u8 mstatus) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	u8 parm[3] = { 0, 0, 0 }; | 
					
						
							|  |  |  |  | 	/* parm[0]: bit0=0-->Disconnect, bit0=1-->Connect
 | 
					
						
							|  |  |  |  | 	 *          bit1=0-->update Media Status to MACID | 
					
						
							|  |  |  |  | 	 *          bit1=1-->update Media Status from MACID to MACID_End | 
					
						
							|  |  |  |  | 	 * parm[1]: MACID, if this is INFRA_STA, MacID = 0 | 
					
						
							|  |  |  |  | 	 * parm[2]: MACID_End | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_MSRRPT_PARM_OPMODE(parm, mstatus); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_MSRRPT_PARM_MACID_IND(parm, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_MSRRPT, 3, parm); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_ap_off_load_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				      u8 ap_offload_enable) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 u1_apoffload_parm[H2C_8821AE_AP_OFFLOAD_LENGTH] = { 0 }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_AP_OFFLOAD_ON(u1_apoffload_parm, ap_offload_enable); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_AP_OFFLOAD_HIDDEN(u1_apoffload_parm, mac->hiddenssid); | 
					
						
							|  |  |  |  | 	SET_H2CCMD_AP_OFFLOAD_DENYANY(u1_apoffload_parm, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_AP_OFFLOAD, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_AP_OFFLOAD_LENGTH, | 
					
						
							|  |  |  |  | 			       u1_apoffload_parm); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_wowlan_mode(struct ieee80211_hw *hw, bool func_en) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 fw_wowlan_info[H2C_8821AE_WOWLAN_LENGTH] = {0}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "enable(%d)\n", func_en); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_FUNC_ENABLE(fw_wowlan_info, | 
					
						
							|  |  |  |  | 					   (func_en ? true : false)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_PATTERN_MATCH_ENABLE(fw_wowlan_info, | 
					
						
							|  |  |  |  | 		((ppsc->wo_wlan_mode & WAKE_ON_PATTERN_MATCH) ? 1 : 0)); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_MAGIC_PKT_ENABLE(fw_wowlan_info, | 
					
						
							|  |  |  |  | 		((ppsc->wo_wlan_mode & WAKE_ON_MAGIC_PACKET) ? 1 : 0)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_UNICAST_PKT_ENABLE(fw_wowlan_info, 0); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_ALL_PKT_DROP(fw_wowlan_info, false); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_GPIO_ACTIVE(fw_wowlan_info, 0); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_DISCONNECT_WAKE_UP(fw_wowlan_info, 1); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_GPIONUM(fw_wowlan_info, 0); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_WOWLAN_GPIO_DURATION(fw_wowlan_info, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_POWER, DBG_DMESG, | 
					
						
							|  |  |  |  | 		      "wowlan mode: cmd 0x80: Content:\n", | 
					
						
							|  |  |  |  | 		      fw_wowlan_info, H2C_8821AE_WOWLAN_LENGTH); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_WO_WLAN, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_WOWLAN_LENGTH, | 
					
						
							|  |  |  |  | 			       fw_wowlan_info); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_remote_wake_ctrl_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					   u8 enable) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 remote_wake_ctrl_parm[H2C_8821AE_REMOTE_WAKE_CTRL_LEN] = {0}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, | 
					
						
							|  |  |  |  | 		 "enable=%d, ARP offload=%d, GTK offload=%d\n", | 
					
						
							|  |  |  |  | 		 enable, ppsc->arp_offload_enable, ppsc->gtk_offload_enable); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_REMOTE_WAKECTRL_ENABLE(remote_wake_ctrl_parm, enable); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_REMOTE_WAKE_CTRL_ARP_OFFLOAD_EN(remote_wake_ctrl_parm, | 
					
						
							|  |  |  |  | 					(ppsc->arp_offload_enable ? 1 : 0)); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_REMOTE_WAKE_CTRL_GTK_OFFLOAD_EN(remote_wake_ctrl_parm, | 
					
						
							|  |  |  |  | 					(ppsc->gtk_offload_enable ? 1 : 0)); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_REMOTE_WAKE_CTRL_REALWOWV2_EN(remote_wake_ctrl_parm, | 
					
						
							|  |  |  |  | 					(rtlhal->real_wow_v2_enable ? 1 : 0)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_POWER, DBG_TRACE, | 
					
						
							|  |  |  |  | 		      "remote_wake_ctrl: cmd 0x4: Content:\n", | 
					
						
							|  |  |  |  | 		      remote_wake_ctrl_parm, H2C_8821AE_REMOTE_WAKE_CTRL_LEN); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_REMOTE_WAKE_CTRL, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_REMOTE_WAKE_CTRL_LEN, | 
					
						
							|  |  |  |  | 			       remote_wake_ctrl_parm); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_keep_alive_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				     bool func_en) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 keep_alive_info[H2C_8821AE_KEEP_ALIVE_CTRL_LENGTH] = {0}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, "Enable(%d)\n", func_en); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_KEEP_ALIVE_ENABLE(keep_alive_info, func_en); | 
					
						
							|  |  |  |  | 	/* 1: the period is controled by driver, 0: by Fw default */ | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_KEEP_ALIVE_ACCPEPT_USER_DEFINED(keep_alive_info, 1); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_KEEP_ALIVE_PERIOD(keep_alive_info, 10); /* 10 sec */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_POWER, DBG_TRACE, | 
					
						
							|  |  |  |  | 		      "keep alive: cmd 0x3: Content:\n", | 
					
						
							|  |  |  |  | 		      keep_alive_info, H2C_8821AE_KEEP_ALIVE_CTRL); | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_KEEP_ALIVE_CTRL, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_KEEP_ALIVE_CTRL_LENGTH, | 
					
						
							|  |  |  |  | 			       keep_alive_info); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_disconnect_decision_ctrl_cmd(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 						   bool enabled) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 parm[H2C_8821AE_DISCONNECT_DECISION_CTRL_LEN] = {0}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_DISCONNECT_DECISION_CTRL_ENABLE(parm, enabled); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_DISCONNECT_DECISION_CTRL_USER_SETTING(parm, 1); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_DISCONNECT_DECISION_CTRL_CHECK_PERIOD(parm, 30); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_DISCONNECT_DECISION_CTRL_TRYPKT_NUM(parm, 3); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_POWER, DBG_TRACE, | 
					
						
							|  |  |  |  | 		      "disconnect_decision_ctrl: cmd 0x4: Content:\n", | 
					
						
							|  |  |  |  | 		      parm, H2C_8821AE_DISCONNECT_DECISION_CTRL_LEN); | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_DISCONNECT_DECISION, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_DISCONNECT_DECISION_CTRL_LEN, parm); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_global_info_cmd(struct ieee80211_hw *hw) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_security *sec = &rtlpriv->sec; | 
					
						
							|  |  |  |  | 	u8 remote_wakeup_sec_info[H2C_8821AE_AOAC_GLOBAL_INFO_LEN] = {0}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, | 
					
						
							|  |  |  |  | 		 "PairwiseEncAlgorithm=%d, GroupEncAlgorithm=%d\n", | 
					
						
							|  |  |  |  | 		 sec->pairwise_enc_algorithm, sec->group_enc_algorithm); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_AOAC_GLOBAL_INFO_PAIRWISE_ENC_ALG( | 
					
						
							|  |  |  |  | 						remote_wakeup_sec_info, | 
					
						
							|  |  |  |  | 						sec->pairwise_enc_algorithm); | 
					
						
							|  |  |  |  | 	SET_8812_H2CCMD_AOAC_GLOBAL_INFO_GROUP_ENC_ALG(remote_wakeup_sec_info, | 
					
						
							|  |  |  |  | 						      sec->group_enc_algorithm); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_AOAC_GLOBAL_INFO, | 
					
						
							|  |  |  |  | 			       H2C_8821AE_AOAC_GLOBAL_INFO_LEN, | 
					
						
							|  |  |  |  | 			       remote_wakeup_sec_info); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_TRACE, | 
					
						
							|  |  |  |  | 		      "rtl8821ae_set_global_info: cmd 0x82:\n", | 
					
						
							|  |  |  |  | 		      remote_wakeup_sec_info, H2C_8821AE_AOAC_GLOBAL_INFO_LEN); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define BEACON_PG		0
 | 
					
						
							|  |  |  |  | #define PSPOLL_PG		1
 | 
					
						
							|  |  |  |  | #define NULL_PG			2
 | 
					
						
							|  |  |  |  | #define QOSNULL_PG		3
 | 
					
						
							|  |  |  |  | #define ARPRESP_PG		4
 | 
					
						
							|  |  |  |  | #define REMOTE_PG		5
 | 
					
						
							|  |  |  |  | #define GTKEXT_PG		6
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #define TOTAL_RESERVED_PKT_LEN_8812	3584
 | 
					
						
							|  |  |  |  | #define TOTAL_RESERVED_PKT_LEN_8821	1792
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static u8 reserved_page_packet_8821[TOTAL_RESERVED_PKT_LEN_8821] = { | 
					
						
							|  |  |  |  | 	/* page 0: beacon */ | 
					
						
							|  |  |  |  | 	0x80, 0x00, 0x00, 0x00,  0xff, 0xff, 0xff, 0xff, | 
					
						
							|  |  |  |  | 	0xff, 0xff, 0x00, 0xe0,  0x4c, 0x02, 0xe2, 0x64, | 
					
						
							|  |  |  |  | 	0x40, 0x16, 0x9f, 0x23,  0xd4, 0x46, 0x20, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x64, 0x00, 0x20, 0x04,  0x00, 0x06, 0x64, 0x6c, | 
					
						
							|  |  |  |  | 	0x69, 0x6e, 0x6b, 0x31,  0x01, 0x08, 0x82, 0x84, | 
					
						
							|  |  |  |  | 	0x8b, 0x96, 0x0c, 0x18,  0x30, 0x48, 0x03, 0x01, | 
					
						
							|  |  |  |  | 	0x0b, 0x06, 0x02, 0x00,  0x00, 0x2a, 0x01, 0x8b, | 
					
						
							|  |  |  |  | 	0x32, 0x04, 0x12, 0x24,  0x60, 0x6c, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x10, 0x00, 0x28, 0x8c,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x81, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 1: ps-poll */ | 
					
						
							|  |  |  |  | 	0xa4, 0x10, 0x01, 0xc0,  0x40, 0x16, 0x9f, 0x23, | 
					
						
							|  |  |  |  | 	0xd4, 0x46, 0x00, 0xe0,  0x4c, 0x02, 0xe2, 0x64, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x18, 0x00, 0x28, 0x8c,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 2: null data */ | 
					
						
							|  |  |  |  | 	0x48, 0x01, 0x00, 0x00,  0x40, 0x16, 0x9f, 0x23, | 
					
						
							|  |  |  |  | 	0xd4, 0x46, 0x00, 0xe0,  0x4c, 0x02, 0xe2, 0x64, | 
					
						
							|  |  |  |  | 	0x40, 0x16, 0x9f, 0x23,  0xd4, 0x46, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x1A, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 3: qos null data */ | 
					
						
							|  |  |  |  | 	0xC8, 0x01, 0x00, 0x00,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x3C, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 4~6 is for wowlan */ | 
					
						
							|  |  |  |  | 	/* page 4: ARP resp */ | 
					
						
							|  |  |  |  | 	0x08, 0x01, 0x00, 0x00,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0xAA, 0xAA, 0x03, 0x00,  0x00, 0x00, 0x08, 0x06, | 
					
						
							|  |  |  |  | 	0x00, 0x01, 0x08, 0x00,  0x06, 0x04, 0x00, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0xE0, 0x4C, 0x02,  0x51, 0x02, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 5: H2C_REMOTE_WAKE_CTRL_INFO */ | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 6: Rsvd GTK extend memory (zero memory) */ | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static u8 reserved_page_packet_8812[TOTAL_RESERVED_PKT_LEN_8812] = { | 
					
						
							|  |  |  |  | 	/* page 0: beacon */ | 
					
						
							|  |  |  |  | 	0x80, 0x00, 0x00, 0x00,  0xFF, 0xFF, 0xFF, 0xFF, | 
					
						
							|  |  |  |  | 	0xFF, 0xFF, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x60, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x64, 0x00, 0x20, 0x04,  0x00, 0x03, 0x32, 0x31, | 
					
						
							|  |  |  |  | 	0x35, 0x01, 0x08, 0x82,  0x84, 0x8B, 0x96, 0x0C, | 
					
						
							|  |  |  |  | 	0x12, 0x18, 0x24, 0x03,  0x01, 0x01, 0x06, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x2A, 0x01,  0x02, 0x32, 0x04, 0x30, | 
					
						
							|  |  |  |  | 	0x48, 0x60, 0x6C, 0x2D,  0x1A, 0xED, 0x09, 0x03, | 
					
						
							|  |  |  |  | 	0xFF, 0xFF, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x3D, | 
					
						
							|  |  |  |  | 	0x00, 0xDD, 0x07, 0x00,  0xE0, 0x4C, 0x02, 0x02, | 
					
						
							|  |  |  |  | 	0x08, 0x04, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x10, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x81, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x04, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 1: ps-poll */ | 
					
						
							|  |  |  |  | 	0xA4, 0x10, 0x09, 0xC0,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x18, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 2: null data */ | 
					
						
							|  |  |  |  | 	0x48, 0x01, 0x00, 0x00,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x1A, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 3: Qos null data */ | 
					
						
							|  |  |  |  | 	0xC8, 0x01, 0x00, 0x00,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x3C, 0x00, 0x28, 0x8C,  0x00, 0x12, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x01, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x80, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 4~6 is for wowlan */ | 
					
						
							|  |  |  |  | 	/* page 4: ARP resp */ | 
					
						
							|  |  |  |  | 	0x08, 0x01, 0x00, 0x00,  0x84, 0xC9, 0xB2, 0xA7, | 
					
						
							|  |  |  |  | 	0xB3, 0x6E, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x84, 0xC9, 0xB2, 0xA7,  0xB3, 0x6E, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0xAA, 0xAA, 0x03, 0x00,  0x00, 0x00, 0x08, 0x06, | 
					
						
							|  |  |  |  | 	0x00, 0x01, 0x08, 0x00,  0x06, 0x04, 0x00, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0xE0, 0x4C, 0x02,  0x51, 0x02, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0xE0,  0x4C, 0x02, 0x51, 0x02, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 5: H2C_REMOTE_WAKE_CTRL_INFO */ | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	/* page 6: Rsvd GTK extend memory (zero memory) */ | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | 	0x00, 0x00, 0x00, 0x00,  0x00, 0x00, 0x00, 0x00, | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8812ae_set_fw_rsvdpagepkt(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				  bool b_dl_finished, bool dl_whole_packets) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_mac *mac = rtl_mac(rtlpriv); | 
					
						
							|  |  |  |  | 	struct sk_buff *skb = NULL; | 
					
						
							|  |  |  |  | 	u32 totalpacketlen; | 
					
						
							|  |  |  |  | 	bool rtstatus; | 
					
						
							|  |  |  |  | 	u8 u1RsvdPageLoc[5] = { 0 }; | 
					
						
							|  |  |  |  | 	u8 u1RsvdPageLoc2[7] = { 0 }; | 
					
						
							|  |  |  |  | 	bool b_dlok = false; | 
					
						
							|  |  |  |  | 	u8 *beacon; | 
					
						
							|  |  |  |  | 	u8 *p_pspoll; | 
					
						
							|  |  |  |  | 	u8 *nullfunc; | 
					
						
							|  |  |  |  | 	u8 *qosnull; | 
					
						
							|  |  |  |  | 	u8 *arpresp; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(1) beacon | 
					
						
							|  |  |  |  | 	 *--------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	beacon = &reserved_page_packet_8812[BEACON_PG * 512]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(beacon, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(beacon, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (b_dl_finished) { | 
					
						
							|  |  |  |  | 		totalpacketlen = 512 - 40; | 
					
						
							|  |  |  |  | 		goto out; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/*-------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(2) ps-poll | 
					
						
							|  |  |  |  | 	 *-------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	p_pspoll = &reserved_page_packet_8812[PSPOLL_PG * 512]; | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_AID(p_pspoll, (mac->assoc_id | 0xc000)); | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_BSSID(p_pspoll, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_TA(p_pspoll, mac->mac_addr); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_PSPOLL(u1RsvdPageLoc, PSPOLL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*--------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(3) null data | 
					
						
							|  |  |  |  | 	 *--------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	nullfunc = &reserved_page_packet_8812[NULL_PG * 512]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(nullfunc, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(nullfunc, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(nullfunc, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_NULL_DATA(u1RsvdPageLoc, NULL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(4) Qos null data | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	qosnull = &reserved_page_packet_8812[QOSNULL_PG * 512]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(qosnull, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(qosnull, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(qosnull, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_QOS_NULL_DATA(u1RsvdPageLoc, QOSNULL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!dl_whole_packets) { | 
					
						
							|  |  |  |  | 		totalpacketlen = 512 * (QOSNULL_PG + 1) - 40; | 
					
						
							|  |  |  |  | 		goto out; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(5) ARP Resp | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	arpresp = &reserved_page_packet_8812[ARPRESP_PG * 512]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(arpresp, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(arpresp, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(arpresp, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_ARP_RSP(u1RsvdPageLoc2, ARPRESP_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(6) Remote Wake Ctrl | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_REMOTE_WAKE_CTRL_INFO(u1RsvdPageLoc2, | 
					
						
							|  |  |  |  | 								REMOTE_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(7) GTK Ext Memory | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_GTK_EXT_MEM(u1RsvdPageLoc2, GTKEXT_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	totalpacketlen = TOTAL_RESERVED_PKT_LEN_8812 - 40; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | out: | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 		      "rtl8812ae_set_fw_rsvdpagepkt(): packet data\n", | 
					
						
							|  |  |  |  | 		      &reserved_page_packet_8812[0], totalpacketlen); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	skb = dev_alloc_skb(totalpacketlen); | 
					
						
							|  |  |  |  | 	memcpy((u8 *)skb_put(skb, totalpacketlen), | 
					
						
							|  |  |  |  | 	       &reserved_page_packet_8812, totalpacketlen); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-26 16:40:27 -05:00
										 |  |  |  | 	rtstatus = rtl_cmd_send_packet(hw, skb); | 
					
						
							| 
									
										
										
										
											2014-09-22 09:39:26 -05:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (rtstatus) | 
					
						
							|  |  |  |  | 		b_dlok = true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!b_dl_finished && b_dlok) { | 
					
						
							|  |  |  |  | 		RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_DMESG, | 
					
						
							|  |  |  |  | 			      "H2C_RSVDPAGE:\n", u1RsvdPageLoc, 5); | 
					
						
							|  |  |  |  | 		rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_RSVDPAGE, | 
					
						
							|  |  |  |  | 				       sizeof(u1RsvdPageLoc), u1RsvdPageLoc); | 
					
						
							|  |  |  |  | 		if (dl_whole_packets) { | 
					
						
							|  |  |  |  | 			RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_DMESG, | 
					
						
							|  |  |  |  | 				      "wowlan H2C_RSVDPAGE:\n", u1RsvdPageLoc2, 7); | 
					
						
							|  |  |  |  | 			rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_AOAC_RSVDPAGE, | 
					
						
							|  |  |  |  | 					       sizeof(u1RsvdPageLoc2), u1RsvdPageLoc2); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!b_dlok) | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, | 
					
						
							|  |  |  |  | 			 "Set RSVD page location to Fw FAIL!!!!!!.\n"); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_fw_rsvdpagepkt(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				  bool b_dl_finished, bool dl_whole_packets) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct sk_buff *skb = NULL; | 
					
						
							|  |  |  |  | 	u32 totalpacketlen; | 
					
						
							|  |  |  |  | 	bool rtstatus; | 
					
						
							|  |  |  |  | 	u8 u1RsvdPageLoc[5] = { 0 }; | 
					
						
							|  |  |  |  | 	u8 u1RsvdPageLoc2[7] = { 0 }; | 
					
						
							|  |  |  |  | 	bool b_dlok = false; | 
					
						
							|  |  |  |  | 	u8 *beacon; | 
					
						
							|  |  |  |  | 	u8 *p_pspoll; | 
					
						
							|  |  |  |  | 	u8 *nullfunc; | 
					
						
							|  |  |  |  | 	u8 *qosnull; | 
					
						
							|  |  |  |  | 	u8 *arpresp; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(1) beacon | 
					
						
							|  |  |  |  | 	 *--------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	beacon = &reserved_page_packet_8821[BEACON_PG * 256]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(beacon, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(beacon, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (b_dl_finished) { | 
					
						
							|  |  |  |  | 		totalpacketlen = 256 - 40; | 
					
						
							|  |  |  |  | 		goto out; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/*-------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(2) ps-poll | 
					
						
							|  |  |  |  | 	 *-------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	p_pspoll = &reserved_page_packet_8821[PSPOLL_PG * 256]; | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_AID(p_pspoll, (mac->assoc_id | 0xc000)); | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_BSSID(p_pspoll, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_PS_POLL_TA(p_pspoll, mac->mac_addr); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_PSPOLL(u1RsvdPageLoc, PSPOLL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*--------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(3) null data | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------i | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	nullfunc = &reserved_page_packet_8821[NULL_PG * 256]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(nullfunc, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(nullfunc, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(nullfunc, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_NULL_DATA(u1RsvdPageLoc, NULL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(4) Qos null data | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	qosnull = &reserved_page_packet_8821[QOSNULL_PG * 256]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(qosnull, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(qosnull, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(qosnull, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_H2CCMD_RSVDPAGE_LOC_QOS_NULL_DATA(u1RsvdPageLoc, QOSNULL_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!dl_whole_packets) { | 
					
						
							|  |  |  |  | 		totalpacketlen = 256 * (QOSNULL_PG + 1) - 40; | 
					
						
							|  |  |  |  | 		goto out; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(5) ARP Resp | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	arpresp = &reserved_page_packet_8821[ARPRESP_PG * 256]; | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS1(arpresp, mac->bssid); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS2(arpresp, mac->mac_addr); | 
					
						
							|  |  |  |  | 	SET_80211_HDR_ADDRESS3(arpresp, mac->bssid); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_ARP_RSP(u1RsvdPageLoc2, ARPRESP_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(6) Remote Wake Ctrl | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_REMOTE_WAKE_CTRL_INFO(u1RsvdPageLoc2, | 
					
						
							|  |  |  |  | 									REMOTE_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	/*---------------------------------------------------------
 | 
					
						
							|  |  |  |  | 	 *			(7) GTK Ext Memory | 
					
						
							|  |  |  |  | 	 *---------------------------------------------------------- | 
					
						
							|  |  |  |  | 	 */ | 
					
						
							|  |  |  |  | 	SET_8821AE_H2CCMD_AOAC_RSVDPAGE_LOC_GTK_EXT_MEM(u1RsvdPageLoc2, GTKEXT_PG); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	totalpacketlen = TOTAL_RESERVED_PKT_LEN_8821 - 40; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | out: | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_LOUD, | 
					
						
							|  |  |  |  | 		      "rtl8821ae_set_fw_rsvdpagepkt(): packet data\n", | 
					
						
							|  |  |  |  | 		      &reserved_page_packet_8821[0], totalpacketlen); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	skb = dev_alloc_skb(totalpacketlen); | 
					
						
							|  |  |  |  | 	memcpy((u8 *)skb_put(skb, totalpacketlen), | 
					
						
							|  |  |  |  | 	       &reserved_page_packet_8821, totalpacketlen); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-26 16:40:27 -05:00
										 |  |  |  | 	rtstatus = rtl_cmd_send_packet(hw, skb); | 
					
						
							| 
									
										
										
										
											2014-09-22 09:39:26 -05:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (rtstatus) | 
					
						
							|  |  |  |  | 		b_dlok = true; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!b_dl_finished && b_dlok) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "Set RSVD page location to Fw.\n"); | 
					
						
							|  |  |  |  | 		RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_DMESG, | 
					
						
							|  |  |  |  | 				"H2C_RSVDPAGE:\n", u1RsvdPageLoc, 5); | 
					
						
							|  |  |  |  | 		rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_RSVDPAGE, | 
					
						
							|  |  |  |  | 				       sizeof(u1RsvdPageLoc), u1RsvdPageLoc); | 
					
						
							|  |  |  |  | 		if (dl_whole_packets) { | 
					
						
							|  |  |  |  | 			RT_PRINT_DATA(rtlpriv, COMP_CMD, DBG_DMESG, | 
					
						
							|  |  |  |  | 				      "wowlan H2C_RSVDPAGE:\n", | 
					
						
							|  |  |  |  | 				      u1RsvdPageLoc2, 7); | 
					
						
							|  |  |  |  | 			rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_AOAC_RSVDPAGE, | 
					
						
							|  |  |  |  | 					       sizeof(u1RsvdPageLoc2), | 
					
						
							|  |  |  |  | 					       u1RsvdPageLoc2); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (!b_dlok) { | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING, | 
					
						
							|  |  |  |  | 			 "Set RSVD page location to Fw FAIL!!!!!!.\n"); | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /*Should check FW support p2p or not.*/ | 
					
						
							|  |  |  |  | static void rtl8821ae_set_p2p_ctw_period_cmd(struct ieee80211_hw *hw, u8 ctwindow) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	u8 u1_ctwindow_period[1] = { ctwindow}; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, H2C_8821AE_P2P_PS_CTW_CMD, 1, | 
					
						
							|  |  |  |  | 			       u1_ctwindow_period); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_set_p2p_ps_offload_cmd(struct ieee80211_hw *hw, u8 p2p_ps_state) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	struct rtl_ps_ctl *rtlps = rtl_psc(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	struct rtl_p2p_ps_info *p2pinfo = &rtlps->p2p_ps_info; | 
					
						
							|  |  |  |  | 	struct p2p_ps_offload_t *p2p_ps_offload = &rtlhal->p2p_ps_offload; | 
					
						
							|  |  |  |  | 	u8	i; | 
					
						
							|  |  |  |  | 	u16	ctwindow; | 
					
						
							|  |  |  |  | 	u32	start_time, tsf_low; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	switch (p2p_ps_state) { | 
					
						
							|  |  |  |  | 	case P2P_PS_DISABLE: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "P2P_PS_DISABLE\n"); | 
					
						
							| 
									
										
										
										
											2014-09-26 16:40:22 -05:00
										 |  |  |  | 		memset(p2p_ps_offload, 0, sizeof(*p2p_ps_offload)); | 
					
						
							| 
									
										
										
										
											2014-09-22 09:39:26 -05:00
										 |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case P2P_PS_ENABLE: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "P2P_PS_ENABLE\n"); | 
					
						
							|  |  |  |  | 		/* update CTWindow value. */ | 
					
						
							|  |  |  |  | 		if (p2pinfo->ctwindow > 0) { | 
					
						
							|  |  |  |  | 			p2p_ps_offload->ctwindow_en = 1; | 
					
						
							|  |  |  |  | 			ctwindow = p2pinfo->ctwindow; | 
					
						
							|  |  |  |  | 			rtl8821ae_set_p2p_ctw_period_cmd(hw, ctwindow); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		/* hw only support 2 set of NoA */ | 
					
						
							|  |  |  |  | 		for (i = 0 ; i < p2pinfo->noa_num ; i++) { | 
					
						
							|  |  |  |  | 			/* To control the register setting for which NOA*/ | 
					
						
							|  |  |  |  | 			rtl_write_byte(rtlpriv, 0x5cf, (i << 4)); | 
					
						
							|  |  |  |  | 			if (i == 0) | 
					
						
							|  |  |  |  | 				p2p_ps_offload->noa0_en = 1; | 
					
						
							|  |  |  |  | 			else | 
					
						
							|  |  |  |  | 				p2p_ps_offload->noa1_en = 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			/* config P2P NoA Descriptor Register */ | 
					
						
							|  |  |  |  | 			rtl_write_dword(rtlpriv, 0x5E0, p2pinfo->noa_duration[i]); | 
					
						
							|  |  |  |  | 			rtl_write_dword(rtlpriv, 0x5E4, p2pinfo->noa_interval[i]); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			/*Get Current TSF value */ | 
					
						
							|  |  |  |  | 			tsf_low = rtl_read_dword(rtlpriv, REG_TSFTR); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			start_time = p2pinfo->noa_start_time[i]; | 
					
						
							|  |  |  |  | 			if (p2pinfo->noa_count_type[i] != 1) { | 
					
						
							|  |  |  |  | 				while (start_time <= (tsf_low+(50*1024))) { | 
					
						
							|  |  |  |  | 					start_time += p2pinfo->noa_interval[i]; | 
					
						
							|  |  |  |  | 					if (p2pinfo->noa_count_type[i] != 255) | 
					
						
							|  |  |  |  | 						p2pinfo->noa_count_type[i]--; | 
					
						
							|  |  |  |  | 				} | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 			rtl_write_dword(rtlpriv, 0x5E8, start_time); | 
					
						
							|  |  |  |  | 			rtl_write_dword(rtlpriv, 0x5EC, | 
					
						
							|  |  |  |  | 					p2pinfo->noa_count_type[i]); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		if ((p2pinfo->opp_ps == 1) || (p2pinfo->noa_num > 0)) { | 
					
						
							|  |  |  |  | 			/* rst p2p circuit */ | 
					
						
							|  |  |  |  | 			rtl_write_byte(rtlpriv, REG_DUAL_TSF_RST, BIT(4)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			p2p_ps_offload->offload_en = 1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			if (P2P_ROLE_GO == rtlpriv->mac80211.p2p) { | 
					
						
							|  |  |  |  | 				p2p_ps_offload->role = 1; | 
					
						
							|  |  |  |  | 				p2p_ps_offload->allstasleep = 0; | 
					
						
							|  |  |  |  | 			} else { | 
					
						
							|  |  |  |  | 				p2p_ps_offload->role = 0; | 
					
						
							|  |  |  |  | 			} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 			p2p_ps_offload->discovery = 0; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case P2P_PS_SCAN: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "P2P_PS_SCAN\n"); | 
					
						
							|  |  |  |  | 		p2p_ps_offload->discovery = 1; | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case P2P_PS_SCAN_DONE: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "P2P_PS_SCAN_DONE\n"); | 
					
						
							|  |  |  |  | 		p2p_ps_offload->discovery = 0; | 
					
						
							|  |  |  |  | 		p2pinfo->p2p_ps_state = P2P_PS_ENABLE; | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	default: | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_fill_h2c_cmd(hw, | 
					
						
							|  |  |  |  | 			H2C_8821AE_P2P_PS_OFFLOAD, 1, (u8 *)p2p_ps_offload); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void rtl8821ae_c2h_ra_report_handler(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 				     u8 *cmd_buf, u8 cmd_len) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); | 
					
						
							|  |  |  |  | 	u8 rate = cmd_buf[0] & 0x3F; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtlhal->current_ra_rate = rtl8821ae_hw_rate_to_mrate(hw, rate); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	rtl8821ae_dm_update_init_rate(hw, rate); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void _rtl8821ae_c2h_content_parsing(struct ieee80211_hw *hw, | 
					
						
							|  |  |  |  | 					   u8 c2h_cmd_id, u8 c2h_cmd_len, | 
					
						
							|  |  |  |  | 					   u8 *tmp_buf) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	switch (c2h_cmd_id) { | 
					
						
							|  |  |  |  | 	case C2H_8812_DBG: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, "[C2H], C2H_8812_DBG!!\n"); | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case C2H_8812_RA_RPT: | 
					
						
							|  |  |  |  | 		rtl8821ae_c2h_ra_report_handler(hw, tmp_buf, c2h_cmd_len); | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case C2H_8812_BT_INFO: | 
					
						
							|  |  |  |  | 		RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, | 
					
						
							|  |  |  |  | 			 "[C2H], C2H_8812_BT_INFO!!\n"); | 
					
						
							|  |  |  |  | 		if (rtlpriv->cfg->ops->get_btc_status()) | 
					
						
							|  |  |  |  | 			rtlpriv->btcoexist.btc_ops->btc_btinfo_notify(rtlpriv, | 
					
						
							|  |  |  |  | 								      tmp_buf, | 
					
						
							|  |  |  |  | 								      c2h_cmd_len); | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	default: | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void rtl8821ae_c2h_packet_handler(struct ieee80211_hw *hw, u8 *buffer, | 
					
						
							|  |  |  |  | 				  u8 length) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	struct rtl_priv *rtlpriv = rtl_priv(hw); | 
					
						
							|  |  |  |  | 	u8 c2h_cmd_id = 0, c2h_cmd_seq = 0, c2h_cmd_len = 0; | 
					
						
							|  |  |  |  | 	u8 *tmp_buf = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	c2h_cmd_id = buffer[0]; | 
					
						
							|  |  |  |  | 	c2h_cmd_seq = buffer[1]; | 
					
						
							|  |  |  |  | 	c2h_cmd_len = length - 2; | 
					
						
							|  |  |  |  | 	tmp_buf = buffer + 2; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_TRACE(rtlpriv, COMP_FW, DBG_LOUD, | 
					
						
							|  |  |  |  | 		 "[C2H packet], c2hCmdId=0x%x, c2hCmdSeq=0x%x, c2hCmdLen=%d\n", | 
					
						
							|  |  |  |  | 		 c2h_cmd_id, c2h_cmd_seq, c2h_cmd_len); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	RT_PRINT_DATA(rtlpriv, COMP_FW, DBG_LOUD, | 
					
						
							|  |  |  |  | 		      "[C2H packet], Content Hex:\n", tmp_buf, c2h_cmd_len); | 
					
						
							|  |  |  |  | 	_rtl8821ae_c2h_content_parsing(hw, c2h_cmd_id, c2h_cmd_len, tmp_buf); | 
					
						
							|  |  |  |  | } |