1 /******************************************************************************
3 * Copyright(c) 2009-2012 Realtek Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * The full GNU General Public License is included in this distribution in the
15 * file called LICENSE.
17 * Contact Information:
18 * wlanfae <wlanfae@realtek.com>
19 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20 * Hsinchu 300, Taiwan.
22 * Larry Finger <Larry.Finger@lwfinger.net>
24 *****************************************************************************/
26 #ifndef __RTL_EFUSE_H_
27 #define __RTL_EFUSE_H_
29 #define EFUSE_IC_ID_OFFSET 506
31 #define EFUSE_MAX_WORD_UNIT 4
33 #define EFUSE_INIT_MAP 0
34 #define EFUSE_MODIFY_MAP 1
36 #define PG_STATE_HEADER 0x01
37 #define PG_STATE_WORD_0 0x02
38 #define PG_STATE_WORD_1 0x04
39 #define PG_STATE_WORD_2 0x08
40 #define PG_STATE_WORD_3 0x10
41 #define PG_STATE_DATA 0x20
43 #define EFUSE_REPEAT_THRESHOLD_ 3
44 #define EFUSE_ERROE_HANDLE 1
59 enum efuse_data_item
{
96 void read_efuse_byte(struct ieee80211_hw
*hw
, u16 _offset
, u8
*pbuf
);
97 void efuse_initialize(struct ieee80211_hw
*hw
);
98 u8
efuse_read_1byte(struct ieee80211_hw
*hw
, u16 address
);
99 int efuse_one_byte_read(struct ieee80211_hw
*hw
, u16 addr
, u8
*data
);
100 void efuse_write_1byte(struct ieee80211_hw
*hw
, u16 address
, u8 value
);
101 void read_efuse(struct ieee80211_hw
*hw
, u16 _offset
,
102 u16 _size_byte
, u8
*pbuf
);
103 void efuse_shadow_read(struct ieee80211_hw
*hw
, u8 type
,
104 u16 offset
, u32
*value
);
105 void efuse_shadow_write(struct ieee80211_hw
*hw
, u8 type
,
106 u16 offset
, u32 value
);
107 bool efuse_shadow_update(struct ieee80211_hw
*hw
);
108 bool efuse_shadow_update_chk(struct ieee80211_hw
*hw
);
109 void rtl_efuse_shadow_map_update(struct ieee80211_hw
*hw
);
110 void efuse_force_write_vendor_id(struct ieee80211_hw
*hw
);
111 void efuse_re_pg_section(struct ieee80211_hw
*hw
, u8 section_idx
);
112 void efuse_power_switch(struct ieee80211_hw
*hw
, u8 write
, u8 pwrstate
);
113 int rtl_get_hwinfo(struct ieee80211_hw
*hw
, struct rtl_priv
*rtlpriv
,
114 int max_size
, u8
*hwinfo
, int *params
);
115 void rtl_fill_dummy(u8
*pfwbuf
, u32
*pfwlen
);
116 void rtl_fw_page_write(struct ieee80211_hw
*hw
, u32 page
, const u8
*buffer
,
118 void rtl_fw_block_write(struct ieee80211_hw
*hw
, const u8
*buffer
, u32 size
);