|
@@ -607,7 +607,7 @@ static int wl127x_prepare_read(struct wl1271 *wl, u32 rx_desc, u32 len)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
- if (wl->chip.id != CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id != CHIP_ID_128X_PG20) {
|
|
|
struct wl1271_acx_mem_map *wl_mem_map = wl->target_mem_map;
|
|
|
struct wl127x_rx_mem_pool_addr rx_mem_addr;
|
|
|
|
|
@@ -637,7 +637,7 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
int ret = 0;
|
|
|
|
|
|
switch (wl->chip.id) {
|
|
|
- case CHIP_ID_1271_PG10:
|
|
|
+ case CHIP_ID_127X_PG10:
|
|
|
wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete",
|
|
|
wl->chip.id);
|
|
|
|
|
@@ -658,7 +658,7 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
WL127X_MINOR_VER);
|
|
|
break;
|
|
|
|
|
|
- case CHIP_ID_1271_PG20:
|
|
|
+ case CHIP_ID_127X_PG20:
|
|
|
wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1271 PG20)",
|
|
|
wl->chip.id);
|
|
|
|
|
@@ -680,7 +680,7 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
WL127X_MINOR_VER);
|
|
|
break;
|
|
|
|
|
|
- case CHIP_ID_1283_PG20:
|
|
|
+ case CHIP_ID_128X_PG20:
|
|
|
wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1283 PG20)",
|
|
|
wl->chip.id);
|
|
|
wl->plt_fw_name = WL128X_PLT_FW_NAME;
|
|
@@ -697,7 +697,7 @@ static int wl12xx_identify_chip(struct wl1271 *wl)
|
|
|
WL128X_MAJOR_VER, WL128X_SUBTYPE_VER,
|
|
|
WL128X_MINOR_VER);
|
|
|
break;
|
|
|
- case CHIP_ID_1283_PG10:
|
|
|
+ case CHIP_ID_128X_PG10:
|
|
|
default:
|
|
|
wl1271_warning("unsupported chip id: 0x%x", wl->chip.id);
|
|
|
ret = -ENODEV;
|
|
@@ -1082,7 +1082,7 @@ static int wl12xx_pre_boot(struct wl1271 *wl)
|
|
|
u32 clk;
|
|
|
int selected_clock = -1;
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
ret = wl128x_boot_clk(wl, &selected_clock);
|
|
|
if (ret < 0)
|
|
|
goto out;
|
|
@@ -1113,7 +1113,7 @@ static int wl12xx_pre_boot(struct wl1271 *wl)
|
|
|
|
|
|
wl1271_debug(DEBUG_BOOT, "clk2 0x%x", clk);
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20)
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20)
|
|
|
clk |= ((selected_clock & 0x3) << 1) << 4;
|
|
|
else
|
|
|
clk |= (priv->ref_clock << 1) << 4;
|
|
@@ -1167,7 +1167,7 @@ static int wl12xx_pre_upload(struct wl1271 *wl)
|
|
|
/* WL1271: The reference driver skips steps 7 to 10 (jumps directly
|
|
|
* to upload_fw) */
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
ret = wl12xx_top_reg_write(wl, SDIO_IO_DS, HCI_IO_DS_6MA);
|
|
|
if (ret < 0)
|
|
|
goto out;
|
|
@@ -1293,7 +1293,7 @@ static void
|
|
|
wl12xx_set_tx_desc_blocks(struct wl1271 *wl, struct wl1271_tx_hw_descr *desc,
|
|
|
u32 blks, u32 spare_blks)
|
|
|
{
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
desc->wl128x_mem.total_mem_blocks = blks;
|
|
|
} else {
|
|
|
desc->wl127x_mem.extra_blocks = spare_blks;
|
|
@@ -1307,7 +1307,7 @@ wl12xx_set_tx_desc_data_len(struct wl1271 *wl, struct wl1271_tx_hw_descr *desc,
|
|
|
{
|
|
|
u32 aligned_len = wlcore_calc_packet_alignment(wl, skb->len);
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
desc->wl128x_mem.extra_bytes = aligned_len - skb->len;
|
|
|
desc->length = cpu_to_le16(aligned_len >> 2);
|
|
|
|
|
@@ -1371,7 +1371,7 @@ static int wl12xx_hw_init(struct wl1271 *wl)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
u32 host_cfg_bitmap = HOST_IF_CFG_RX_FIFO_ENABLE;
|
|
|
|
|
|
ret = wl128x_cmd_general_parms(wl);
|
|
@@ -1458,7 +1458,7 @@ static bool wl12xx_mac_in_fuse(struct wl1271 *wl)
|
|
|
bool supported = false;
|
|
|
u8 major, minor;
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20) {
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20) {
|
|
|
major = WL128X_PG_GET_MAJOR(wl->hw_pg_ver);
|
|
|
minor = WL128X_PG_GET_MINOR(wl->hw_pg_ver);
|
|
|
|
|
@@ -1514,7 +1514,7 @@ static int wl12xx_get_pg_ver(struct wl1271 *wl, s8 *ver)
|
|
|
u16 die_info;
|
|
|
int ret;
|
|
|
|
|
|
- if (wl->chip.id == CHIP_ID_1283_PG20)
|
|
|
+ if (wl->chip.id == CHIP_ID_128X_PG20)
|
|
|
ret = wl12xx_top_reg_read(wl, WL128X_REG_FUSE_DATA_2_1,
|
|
|
&die_info);
|
|
|
else
|