wl1251: implement WMM
[safe/jmp/linux-2.6] / drivers / net / wireless / wl12xx / wl1271_rx.c
index ad8b690..ca645f3 100644 (file)
 static u8 wl1271_rx_get_mem_block(struct wl1271_fw_status *status,
                                  u32 drv_rx_counter)
 {
-       return status->rx_pkt_descs[drv_rx_counter] & RX_MEM_BLOCK_MASK;
+       return le32_to_cpu(status->rx_pkt_descs[drv_rx_counter]) &
+               RX_MEM_BLOCK_MASK;
 }
 
 static u32 wl1271_rx_get_buf_size(struct wl1271_fw_status *status,
                                 u32 drv_rx_counter)
 {
-       return (status->rx_pkt_descs[drv_rx_counter] & RX_BUF_SIZE_MASK) >>
-               RX_BUF_SIZE_SHIFT_DIV;
+       return (le32_to_cpu(status->rx_pkt_descs[drv_rx_counter]) &
+               RX_BUF_SIZE_MASK) >> RX_BUF_SIZE_SHIFT_DIV;
 }
 
 /* The values of this table must match the wl1271_rates[] array */
@@ -70,6 +71,36 @@ static u8 wl1271_rx_rate_to_idx[] = {
        0                           /* WL1271_RATE_1    */
 };
 
+/* The values of this table must match the wl1271_rates[] array */
+static u8 wl1271_5_ghz_rx_rate_to_idx[] = {
+       /* MCS rates are used only with 11n */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS7 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS6 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS5 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS4 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS3 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS2 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS1 */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_MCS0 */
+
+       7,                          /* WL1271_RATE_54   */
+       6,                          /* WL1271_RATE_48   */
+       5,                          /* WL1271_RATE_36   */
+       4,                          /* WL1271_RATE_24   */
+
+       /* TI-specific rate */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_22   */
+
+       3,                          /* WL1271_RATE_18   */
+       2,                          /* WL1271_RATE_12   */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_11   */
+       1,                          /* WL1271_RATE_9    */
+       0,                          /* WL1271_RATE_6    */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_5_5  */
+       WL1271_RX_RATE_UNSUPPORTED, /* WL1271_RATE_2    */
+       WL1271_RX_RATE_UNSUPPORTED  /* WL1271_RATE_1    */
+};
+
 static void wl1271_rx_status(struct wl1271 *wl,
                             struct wl1271_rx_descriptor *desc,
                             struct ieee80211_rx_status *status,
@@ -77,12 +108,21 @@ static void wl1271_rx_status(struct wl1271 *wl,
 {
        memset(status, 0, sizeof(struct ieee80211_rx_status));
 
-       if ((desc->flags & WL1271_RX_DESC_BAND_MASK) == WL1271_RX_DESC_BAND_BG)
+       if ((desc->flags & WL1271_RX_DESC_BAND_MASK) ==
+           WL1271_RX_DESC_BAND_BG) {
                status->band = IEEE80211_BAND_2GHZ;
-       else
+               status->rate_idx = wl1271_rx_rate_to_idx[desc->rate];
+       } else if ((desc->flags & WL1271_RX_DESC_BAND_MASK) ==
+                WL1271_RX_DESC_BAND_A) {
+               status->band = IEEE80211_BAND_5GHZ;
+               status->rate_idx = wl1271_5_ghz_rx_rate_to_idx[desc->rate];
+       } else
                wl1271_warning("unsupported band 0x%x",
                               desc->flags & WL1271_RX_DESC_BAND_MASK);
 
+       if (unlikely(status->rate_idx == WL1271_RX_RATE_UNSUPPORTED))
+               wl1271_warning("unsupported rate");
+
        /*
         * FIXME: Add mactime handling.  For IBSS (ad-hoc) we need to get the
         * timestamp from the beacon (acx_tsf_info).  In BSS mode (infra) we
@@ -91,12 +131,6 @@ static void wl1271_rx_status(struct wl1271 *wl,
         */
        status->signal = desc->rssi;
 
-       /* FIXME: Should this be optimized? */
-       status->qual = (desc->rssi - WL1271_RX_MIN_RSSI) * 100 /
-               (WL1271_RX_MAX_RSSI - WL1271_RX_MIN_RSSI);
-       status->qual = min(status->qual, 100);
-       status->qual = max(status->qual, 0);
-
        /*
         * FIXME: In wl1251, the SNR should be divided by two.  In wl1271 we
         * need to divide by two for now, but TI has been discussing about
@@ -109,17 +143,11 @@ static void wl1271_rx_status(struct wl1271 *wl,
        if (desc->flags & WL1271_RX_DESC_ENCRYPT_MASK) {
                status->flag |= RX_FLAG_IV_STRIPPED | RX_FLAG_MMIC_STRIPPED;
 
-               if (likely(!(desc->flags & WL1271_RX_DESC_DECRYPT_FAIL)))
+               if (likely(!(desc->status & WL1271_RX_DESC_DECRYPT_FAIL)))
                        status->flag |= RX_FLAG_DECRYPTED;
-
-               if (unlikely(desc->flags & WL1271_RX_DESC_MIC_FAIL))
+               if (unlikely(desc->status & WL1271_RX_DESC_MIC_FAIL))
                        status->flag |= RX_FLAG_MMIC_ERROR;
        }
-
-       status->rate_idx = wl1271_rx_rate_to_idx[desc->rate];
-
-       if (status->rate_idx == WL1271_RX_RATE_UNSUPPORTED)
-               wl1271_warning("unsupported rate");
 }
 
 static void wl1271_rx_handle_data(struct wl1271 *wl, u32 length)
@@ -131,14 +159,14 @@ static void wl1271_rx_handle_data(struct wl1271 *wl, u32 length)
        u8 *buf;
        u8 beacon = 0;
 
-       skb = dev_alloc_skb(length);
+       skb = __dev_alloc_skb(length, GFP_KERNEL);
        if (!skb) {
                wl1271_error("Couldn't allocate RX frame");
                return;
        }
 
        buf = skb_put(skb, length);
-       wl1271_spi_reg_read(wl, WL1271_SLV_MEM_DATA, buf, length, true);
+       wl1271_spi_read(wl, WL1271_SLV_MEM_DATA, buf, length, true);
 
        /* the data read starts with the descriptor */
        desc = (struct wl1271_rx_descriptor *) buf;
@@ -156,7 +184,7 @@ static void wl1271_rx_handle_data(struct wl1271 *wl, u32 length)
                     beacon ? "beacon" : "");
 
        memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
-       ieee80211_rx(wl->hw, skb);
+       ieee80211_rx_ni(wl->hw, skb);
 }
 
 void wl1271_rx(struct wl1271 *wl, struct wl1271_fw_status *status)
@@ -176,15 +204,15 @@ void wl1271_rx(struct wl1271 *wl, struct wl1271_fw_status *status)
                        break;
                }
 
-               wl->rx_mem_pool_addr.addr =
-                       (mem_block << 8) + wl_mem_map->packet_memory_pool_start;
+               wl->rx_mem_pool_addr.addr = (mem_block << 8) +
+                       le32_to_cpu(wl_mem_map->packet_memory_pool_start);
                wl->rx_mem_pool_addr.addr_extra =
                        wl->rx_mem_pool_addr.addr + 4;
 
                /* Choose the block we want to read */
-               wl1271_spi_reg_write(wl, WL1271_SLV_REG_DATA,
-                                    &wl->rx_mem_pool_addr,
-                                    sizeof(wl->rx_mem_pool_addr), false);
+               wl1271_spi_write(wl, WL1271_SLV_REG_DATA,
+                                &wl->rx_mem_pool_addr,
+                                sizeof(wl->rx_mem_pool_addr), false);
 
                wl1271_rx_handle_data(wl, buf_size);
 
@@ -192,9 +220,5 @@ void wl1271_rx(struct wl1271 *wl, struct wl1271_fw_status *status)
                drv_rx_counter = wl->rx_counter & NUM_RX_PKT_DESC_MOD_MASK;
        }
 
-       wl1271_reg_write32(wl, RX_DRIVER_COUNTER_ADDRESS, wl->rx_counter);
-
-       /* This is a workaround for some problems in the chip */
-       wl1271_reg_write32(wl, RX_DRIVER_DUMMY_WRITE_ADDRESS, 0x1);
-
+       wl1271_spi_write32(wl, RX_DRIVER_COUNTER_ADDRESS, wl->rx_counter);
 }