blob: 958c99d7e36eaf7b908bcc97bfa896c55fb10ce3 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8ca151b2013-01-24 14:25:36 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#ifndef __rs_h__
28#define __rs_h__
29
30#include <net/mac80211.h>
31
32#include "iwl-config.h"
33
34#include "fw-api.h"
35#include "iwl-trans.h"
36
37struct iwl_rs_rate_info {
Eyal Shapirad310e402013-08-11 18:43:47 +030038 u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
39 u8 plcp_ht_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
40 u8 plcp_ht_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
41 u8 plcp_vht_siso;
42 u8 plcp_vht_mimo2;
Johannes Berg8ca151b2013-01-24 14:25:36 +010043 u8 prev_rs; /* previous rate used in rs algo */
44 u8 next_rs; /* next rate used in rs algo */
Johannes Berg8ca151b2013-01-24 14:25:36 +010045};
46
47#define IWL_RATE_60M_PLCP 3
48
49enum {
50 IWL_RATE_INVM_INDEX = IWL_RATE_COUNT,
51 IWL_RATE_INVALID = IWL_RATE_COUNT,
52};
53
54#define LINK_QUAL_MAX_RETRY_NUM 16
55
56enum {
57 IWL_RATE_6M_INDEX_TABLE = 0,
58 IWL_RATE_9M_INDEX_TABLE,
59 IWL_RATE_12M_INDEX_TABLE,
60 IWL_RATE_18M_INDEX_TABLE,
61 IWL_RATE_24M_INDEX_TABLE,
62 IWL_RATE_36M_INDEX_TABLE,
63 IWL_RATE_48M_INDEX_TABLE,
64 IWL_RATE_54M_INDEX_TABLE,
65 IWL_RATE_1M_INDEX_TABLE,
66 IWL_RATE_2M_INDEX_TABLE,
67 IWL_RATE_5M_INDEX_TABLE,
68 IWL_RATE_11M_INDEX_TABLE,
69 IWL_RATE_INVM_INDEX_TABLE = IWL_RATE_INVM_INDEX - 1,
70};
71
72/* #define vs. enum to keep from defaulting to 'large integer' */
73#define IWL_RATE_6M_MASK (1 << IWL_RATE_6M_INDEX)
74#define IWL_RATE_9M_MASK (1 << IWL_RATE_9M_INDEX)
75#define IWL_RATE_12M_MASK (1 << IWL_RATE_12M_INDEX)
76#define IWL_RATE_18M_MASK (1 << IWL_RATE_18M_INDEX)
77#define IWL_RATE_24M_MASK (1 << IWL_RATE_24M_INDEX)
78#define IWL_RATE_36M_MASK (1 << IWL_RATE_36M_INDEX)
79#define IWL_RATE_48M_MASK (1 << IWL_RATE_48M_INDEX)
80#define IWL_RATE_54M_MASK (1 << IWL_RATE_54M_INDEX)
81#define IWL_RATE_60M_MASK (1 << IWL_RATE_60M_INDEX)
82#define IWL_RATE_1M_MASK (1 << IWL_RATE_1M_INDEX)
83#define IWL_RATE_2M_MASK (1 << IWL_RATE_2M_INDEX)
84#define IWL_RATE_5M_MASK (1 << IWL_RATE_5M_INDEX)
85#define IWL_RATE_11M_MASK (1 << IWL_RATE_11M_INDEX)
86
87
Eyal Shapirad310e402013-08-11 18:43:47 +030088/* uCode API values for HT/VHT bit rates */
Johannes Berg8ca151b2013-01-24 14:25:36 +010089enum {
Eyal Shapirad310e402013-08-11 18:43:47 +030090 IWL_RATE_HT_SISO_MCS_0_PLCP = 0,
91 IWL_RATE_HT_SISO_MCS_1_PLCP = 1,
92 IWL_RATE_HT_SISO_MCS_2_PLCP = 2,
93 IWL_RATE_HT_SISO_MCS_3_PLCP = 3,
94 IWL_RATE_HT_SISO_MCS_4_PLCP = 4,
95 IWL_RATE_HT_SISO_MCS_5_PLCP = 5,
96 IWL_RATE_HT_SISO_MCS_6_PLCP = 6,
97 IWL_RATE_HT_SISO_MCS_7_PLCP = 7,
98 IWL_RATE_HT_MIMO2_MCS_0_PLCP = 0x8,
99 IWL_RATE_HT_MIMO2_MCS_1_PLCP = 0x9,
100 IWL_RATE_HT_MIMO2_MCS_2_PLCP = 0xA,
101 IWL_RATE_HT_MIMO2_MCS_3_PLCP = 0xB,
102 IWL_RATE_HT_MIMO2_MCS_4_PLCP = 0xC,
103 IWL_RATE_HT_MIMO2_MCS_5_PLCP = 0xD,
104 IWL_RATE_HT_MIMO2_MCS_6_PLCP = 0xE,
105 IWL_RATE_HT_MIMO2_MCS_7_PLCP = 0xF,
106 IWL_RATE_VHT_SISO_MCS_0_PLCP = 0,
107 IWL_RATE_VHT_SISO_MCS_1_PLCP = 1,
108 IWL_RATE_VHT_SISO_MCS_2_PLCP = 2,
109 IWL_RATE_VHT_SISO_MCS_3_PLCP = 3,
110 IWL_RATE_VHT_SISO_MCS_4_PLCP = 4,
111 IWL_RATE_VHT_SISO_MCS_5_PLCP = 5,
112 IWL_RATE_VHT_SISO_MCS_6_PLCP = 6,
113 IWL_RATE_VHT_SISO_MCS_7_PLCP = 7,
114 IWL_RATE_VHT_SISO_MCS_8_PLCP = 8,
115 IWL_RATE_VHT_SISO_MCS_9_PLCP = 9,
116 IWL_RATE_VHT_MIMO2_MCS_0_PLCP = 0x10,
117 IWL_RATE_VHT_MIMO2_MCS_1_PLCP = 0x11,
118 IWL_RATE_VHT_MIMO2_MCS_2_PLCP = 0x12,
119 IWL_RATE_VHT_MIMO2_MCS_3_PLCP = 0x13,
120 IWL_RATE_VHT_MIMO2_MCS_4_PLCP = 0x14,
121 IWL_RATE_VHT_MIMO2_MCS_5_PLCP = 0x15,
122 IWL_RATE_VHT_MIMO2_MCS_6_PLCP = 0x16,
123 IWL_RATE_VHT_MIMO2_MCS_7_PLCP = 0x17,
124 IWL_RATE_VHT_MIMO2_MCS_8_PLCP = 0x18,
125 IWL_RATE_VHT_MIMO2_MCS_9_PLCP = 0x19,
126 IWL_RATE_HT_SISO_MCS_INV_PLCP,
127 IWL_RATE_HT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
128 IWL_RATE_VHT_SISO_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
129 IWL_RATE_VHT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
130 IWL_RATE_HT_SISO_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
131 IWL_RATE_HT_SISO_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
132 IWL_RATE_HT_MIMO2_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
133 IWL_RATE_HT_MIMO2_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100134};
135
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136#define IWL_RATES_MASK ((1 << IWL_RATE_COUNT) - 1)
137
138#define IWL_INVALID_VALUE -1
139
140#define IWL_MIN_RSSI_VAL -100
141#define IWL_MAX_RSSI_VAL 0
142
143/* These values specify how many Tx frame attempts before
144 * searching for a new modulation mode */
145#define IWL_LEGACY_FAILURE_LIMIT 160
146#define IWL_LEGACY_SUCCESS_LIMIT 480
147#define IWL_LEGACY_TABLE_COUNT 160
148
149#define IWL_NONE_LEGACY_FAILURE_LIMIT 400
150#define IWL_NONE_LEGACY_SUCCESS_LIMIT 4500
151#define IWL_NONE_LEGACY_TABLE_COUNT 1500
152
153/* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
154#define IWL_RS_GOOD_RATIO 12800 /* 100% */
155#define IWL_RATE_SCALE_SWITCH 10880 /* 85% */
156#define IWL_RATE_HIGH_TH 10880 /* 85% */
157#define IWL_RATE_INCREASE_TH 6400 /* 50% */
Eyal Shapirac48075d2013-11-21 01:18:47 +0200158#define RS_SR_FORCE_DECREASE 1920 /* 15% */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100159
Eliad Peller2fd647f2014-03-13 17:21:36 +0200160#define TPC_SR_FORCE_INCREASE 9600 /* 75% */
161#define TPC_SR_NO_INCREASE 10880 /* 85% */
162#define TPC_TX_POWER_STEP 3
163#define TPC_MAX_REDUCTION 15
164#define TPC_NO_REDUCTION 0
165#define TPC_INVALID 0xff
166
Johannes Berg8ca151b2013-01-24 14:25:36 +0100167#define LINK_QUAL_AGG_TIME_LIMIT_DEF (4000) /* 4 milliseconds */
168#define LINK_QUAL_AGG_TIME_LIMIT_MAX (8000)
169#define LINK_QUAL_AGG_TIME_LIMIT_MIN (100)
170
171#define LINK_QUAL_AGG_DISABLE_START_DEF (3)
172#define LINK_QUAL_AGG_DISABLE_START_MAX (255)
173#define LINK_QUAL_AGG_DISABLE_START_MIN (0)
174
175#define LINK_QUAL_AGG_FRAME_LIMIT_DEF (63)
176#define LINK_QUAL_AGG_FRAME_LIMIT_MAX (63)
177#define LINK_QUAL_AGG_FRAME_LIMIT_MIN (0)
178
179#define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
180
181/* load per tid defines for A-MPDU activation */
182#define IWL_AGG_TPT_THREHOLD 0
183#define IWL_AGG_LOAD_THRESHOLD 10
184#define IWL_AGG_ALL_TID 0xff
185#define TID_QUEUE_CELL_SPACING 50 /*mS */
186#define TID_QUEUE_MAX_SIZE 20
187#define TID_ROUND_VALUE 5 /* mS */
188
189#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
190#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
191
192enum iwl_table_type {
193 LQ_NONE,
Eyal Shapirad310e402013-08-11 18:43:47 +0300194 LQ_LEGACY_G, /* legacy types */
195 LQ_LEGACY_A,
196 LQ_HT_SISO, /* HT types */
197 LQ_HT_MIMO2,
198 LQ_VHT_SISO, /* VHT types */
199 LQ_VHT_MIMO2,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100200 LQ_MAX,
201};
202
Eyal Shapira5aa33552013-11-23 01:06:36 +0200203struct rs_rate {
204 int index;
205 enum iwl_table_type type;
206 u8 ant;
207 u32 bw;
208 bool sgi;
209};
Eyal Shapirad310e402013-08-11 18:43:47 +0300210
Eyal Shapira5aa33552013-11-23 01:06:36 +0200211
212#define is_type_legacy(type) (((type) == LQ_LEGACY_G) || \
213 ((type) == LQ_LEGACY_A))
214#define is_type_ht_siso(type) ((type) == LQ_HT_SISO)
215#define is_type_ht_mimo2(type) ((type) == LQ_HT_MIMO2)
216#define is_type_vht_siso(type) ((type) == LQ_VHT_SISO)
217#define is_type_vht_mimo2(type) ((type) == LQ_VHT_MIMO2)
218#define is_type_siso(type) (is_type_ht_siso(type) || is_type_vht_siso(type))
219#define is_type_mimo2(type) (is_type_ht_mimo2(type) || is_type_vht_mimo2(type))
220#define is_type_mimo(type) (is_type_mimo2(type))
221#define is_type_ht(type) (is_type_ht_siso(type) || is_type_ht_mimo2(type))
222#define is_type_vht(type) (is_type_vht_siso(type) || is_type_vht_mimo2(type))
223#define is_type_a_band(type) ((type) == LQ_LEGACY_A)
224#define is_type_g_band(type) ((type) == LQ_LEGACY_G)
225
226#define is_legacy(rate) is_type_legacy((rate)->type)
227#define is_ht_siso(rate) is_type_ht_siso((rate)->type)
228#define is_ht_mimo2(rate) is_type_ht_mimo2((rate)->type)
229#define is_vht_siso(rate) is_type_vht_siso((rate)->type)
230#define is_vht_mimo2(rate) is_type_vht_mimo2((rate)->type)
231#define is_siso(rate) is_type_siso((rate)->type)
232#define is_mimo2(rate) is_type_mimo2((rate)->type)
233#define is_mimo(rate) is_type_mimo((rate)->type)
234#define is_ht(rate) is_type_ht((rate)->type)
235#define is_vht(rate) is_type_vht((rate)->type)
236#define is_a_band(rate) is_type_a_band((rate)->type)
237#define is_g_band(rate) is_type_g_band((rate)->type)
238
239#define is_ht20(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_20)
240#define is_ht40(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_40)
241#define is_ht80(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_80)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100242
243#define IWL_MAX_MCS_DISPLAY_SIZE 12
244
245struct iwl_rate_mcs_info {
246 char mbps[IWL_MAX_MCS_DISPLAY_SIZE];
247 char mcs[IWL_MAX_MCS_DISPLAY_SIZE];
248};
249
250/**
251 * struct iwl_rate_scale_data -- tx success history for one rate
252 */
253struct iwl_rate_scale_data {
254 u64 data; /* bitmap of successful frames */
255 s32 success_counter; /* number of frames successful */
256 s32 success_ratio; /* per-cent * 128 */
257 s32 counter; /* number of frames attempted */
258 s32 average_tpt; /* success ratio * expected throughput */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100259};
260
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200261/* Possible Tx columns
262 * Tx Column = a combo of legacy/siso/mimo x antenna x SGI
263 */
264enum rs_column {
265 RS_COLUMN_LEGACY_ANT_A = 0,
266 RS_COLUMN_LEGACY_ANT_B,
267 RS_COLUMN_SISO_ANT_A,
268 RS_COLUMN_SISO_ANT_B,
269 RS_COLUMN_SISO_ANT_A_SGI,
270 RS_COLUMN_SISO_ANT_B_SGI,
271 RS_COLUMN_MIMO2,
272 RS_COLUMN_MIMO2_SGI,
273
274 RS_COLUMN_LAST = RS_COLUMN_MIMO2_SGI,
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200275 RS_COLUMN_COUNT = RS_COLUMN_LAST + 1,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200276 RS_COLUMN_INVALID,
277};
278
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200279/* Packet stats per rate */
280struct rs_rate_stats {
281 u64 success;
282 u64 total;
283};
284
Johannes Berg8ca151b2013-01-24 14:25:36 +0100285/**
286 * struct iwl_scale_tbl_info -- tx params and success history for all rates
287 *
288 * There are two of these in struct iwl_lq_sta,
289 * one for "active", and one for "search".
290 */
291struct iwl_scale_tbl_info {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200292 struct rs_rate rate;
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200293 enum rs_column column;
Johannes Berga34529e2014-01-20 22:57:21 +0100294 const u16 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100295 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
Eliad Peller2fd647f2014-03-13 17:21:36 +0200296 /* per txpower-reduction history */
297 struct iwl_rate_scale_data tpc_win[TPC_MAX_REDUCTION + 1];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100298};
299
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200300enum {
301 RS_STATE_SEARCH_CYCLE_STARTED,
302 RS_STATE_SEARCH_CYCLE_ENDED,
303 RS_STATE_STAY_IN_COLUMN,
304};
305
Johannes Berg8ca151b2013-01-24 14:25:36 +0100306/**
307 * struct iwl_lq_sta -- driver's rate scaling private structure
308 *
309 * Pointer to this gets passed back and forth between driver and mac80211.
310 */
311struct iwl_lq_sta {
312 u8 active_tbl; /* index of active table, range 0-1 */
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200313 u8 rs_state; /* RS_STATE_* */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100314 u8 search_better_tbl; /* 1: currently trying alternate mode */
315 s32 last_tpt;
316
317 /* The following determine when to search for a new mode */
318 u32 table_count_limit;
319 u32 max_failure_limit; /* # failed frames before new search */
320 u32 max_success_limit; /* # successful frames before new search */
321 u32 table_count;
322 u32 total_failed; /* total failed frames, any/all rates */
323 u32 total_success; /* total successful frames, any/all rates */
324 u64 flush_timer; /* time staying in mode before new search */
325
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200326 u32 visited_columns; /* Bitmask marking which Tx columns were
327 * explored during a search cycle
328 */
Eyal Shapirad310e402013-08-11 18:43:47 +0300329 bool is_vht;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100330 enum ieee80211_band band;
331
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200332 struct rs_rate_stats tx_stats[RS_COLUMN_COUNT][IWL_RATE_COUNT];
333
Johannes Berg8ca151b2013-01-24 14:25:36 +0100334 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100335 u16 active_legacy_rate;
336 u16 active_siso_rate;
337 u16 active_mimo2_rate;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338 s8 max_rate_idx; /* Max rate set by user */
339 u8 missed_rate_counter;
340
341 struct iwl_lq_cmd lq;
342 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100343 u8 tx_agg_tid_en;
344#ifdef CONFIG_MAC80211_DEBUGFS
345 struct dentry *rs_sta_dbgfs_scale_table_file;
346 struct dentry *rs_sta_dbgfs_stats_table_file;
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200347 struct dentry *rs_sta_dbgfs_drv_tx_stats_file;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100348 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
Eliad Peller9a75b3d2014-03-13 17:15:04 +0200349 struct dentry *rs_sta_dbgfs_reduced_txp_file;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100350 u32 dbg_fixed_rate;
Eliad Peller9a75b3d2014-03-13 17:15:04 +0200351 u8 dbg_fixed_txp_reduction;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352#endif
353 struct iwl_mvm *drv;
354
355 /* used to be in sta_info */
356 int last_txrate_idx;
357 /* last tx rate_n_flags */
358 u32 last_rate_n_flags;
359 /* packets destined for this STA are aggregated */
360 u8 is_agg;
Eliad Peller2fd647f2014-03-13 17:21:36 +0200361
362 /* tx power reduce for this sta */
363 int tpc_reduce;
Emmanuel Grumbach36946ce2013-05-28 23:12:47 +0300364};
365
Johannes Berg8ca151b2013-01-24 14:25:36 +0100366/* Initialize station's rate scaling information after adding station */
Joe Perchesb3818392013-09-23 11:37:59 -0700367void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Eyal Shapirab87c2172013-11-09 23:37:55 +0200368 enum ieee80211_band band, bool init);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100369
370/**
371 * iwl_rate_control_register - Register the rate control algorithm callbacks
372 *
373 * Since the rate control algorithm is hardware specific, there is no need
374 * or reason to place it as a stand alone module. The driver can call
375 * iwl_rate_control_register in order to register the rate control callbacks
376 * with the mac80211 subsystem. This should be performed prior to calling
377 * ieee80211_register_hw
378 *
379 */
Joe Perchesb3818392013-09-23 11:37:59 -0700380int iwl_mvm_rate_control_register(void);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100381
382/**
383 * iwl_rate_control_unregister - Unregister the rate control callbacks
384 *
385 * This should be called after calling ieee80211_unregister_hw, but before
386 * the driver is unloaded.
387 */
Joe Perchesb3818392013-09-23 11:37:59 -0700388void iwl_mvm_rate_control_unregister(void);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100389
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300390struct iwl_mvm_sta;
391
Johannes Berge126b5d2013-06-28 13:39:18 +0200392int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
393 bool enable);
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300394
Johannes Berg8ca151b2013-01-24 14:25:36 +0100395#endif /* __rs__ */