Lines Matching full:pwr
57 tx-pwr-table:
63 for all transceivers. This property must be used with tx-pwr-min and
64 tx-pwr-max for normal operations. The number of elements is defined by
65 the size of the tx-pwr-table array property. The max entry value for
71 linear_step = (tx-pwr-max - tx-pwr-min)
72 / (sizeof(tx-pwr-table) - 1.0);
73 table_index = abs((value_in_dbm - tx-pwr-max) / linear_step);
74 output_power = tx-pwr-table[table_index];
77 tx-pwr-min = -17 dBm and tx-pwr-max = +4 dBm. Using 48 elements in the
78 tx-pwr-table array. The table array is filled from higher to lower power.
80 tx-pwr-min = [01 11]; /* -17.0 dBm */
81 tx-pwr-max = [00 04]; /* 4.0 dBm */
82 tx-pwr-table = [00 01 03 04 05 05 06 06
97 output_power = tx-pwr-table[9] => 0x07 ( 0 dBm as table 9-9 )
99 Note when tx-pwr-min is [0x00, 0x00] and tx-pwr-max is [0x00, 0x00]
101 first element of the tx-pwr-table array, which is 0x00 by default. This
102 is defined as general case when user not define any tx-pwr-* entries. It
105 tx-pwr-min:
110 output power. This property must be used when tx-pwr-table is defined.
114 the combination of tx-pwr-min as [0x00, 0x00] and tx-pwr-max as [0x00,
117 tx-pwr-max:
122 output power. This property must be used when tx-pwr-table is defined.
126 combination of tx-pwr-max as [0x00, 0x00] and tx-pwr-min as [0x00,