Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 214715
b: refs/heads/master
c: 15cea99
h: refs/heads/master
i:
  214713: fe4427c
  214711: ca9dee5
v: v3
  • Loading branch information
Ohad Ben-Cohen authored and John W. Linville committed Sep 21, 2010
1 parent af60b43 commit c8fd54a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 09cecc340b3b4d9960b039c0f576548bbf857f5a
refs/heads/master: 15cea99306ae14ce5f7c3d3989bcc17202e2b0be
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/wl12xx/wl1271.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ struct wl1271 {

void (*set_power)(bool enable);
int irq;
int ref_clock;

spinlock_t wl_lock;

Expand Down
11 changes: 7 additions & 4 deletions trunk/drivers/net/wireless/wl12xx/wl1271_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,17 +457,20 @@ int wl1271_boot(struct wl1271 *wl)
{
int ret = 0;
u32 tmp, clk, pause;
int ref_clock = wl->ref_clock;

wl1271_boot_hw_version(wl);

if (REF_CLOCK == 0 || REF_CLOCK == 2 || REF_CLOCK == 4)
if (ref_clock == 0 || ref_clock == 2 || ref_clock == 4)
/* ref clk: 19.2/38.4/38.4-XTAL */
clk = 0x3;
else if (REF_CLOCK == 1 || REF_CLOCK == 3)
else if (ref_clock == 1 || ref_clock == 3)
/* ref clk: 26/52 */
clk = 0x5;
else
return -EINVAL;

if (REF_CLOCK != 0) {
if (ref_clock != 0) {
u16 val;
/* Set clock type (open drain) */
val = wl1271_top_reg_read(wl, OCP_REG_CLK_TYPE);
Expand Down Expand Up @@ -516,7 +519,7 @@ int wl1271_boot(struct wl1271 *wl)
wl1271_debug(DEBUG_BOOT, "clk2 0x%x", clk);

/* 2 */
clk |= (REF_CLOCK << 1) << 4;
clk |= (ref_clock << 1) << 4;
wl1271_write32(wl, DRPW_SCRATCH_START, clk);

wl1271_set_partition(wl, &part_table[PART_WORK]);
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/net/wireless/wl12xx/wl1271_boot.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ struct wl1271_static_data {
/* delay between retries */
#define INIT_LOOP_DELAY 50

#define REF_CLOCK 2
#define WU_COUNTER_PAUSE_VAL 0x3FF
#define WELP_ARM_COMMAND_VAL 0x4

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/wl12xx/wl1271_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ static int __devinit wl1271_probe(struct sdio_func *func,
}

wl->irq = wlan_data->irq;
wl->ref_clock = wlan_data->board_ref_clock;

ret = request_irq(wl->irq, wl1271_irq, 0, DRIVER_NAME, wl);
if (ret < 0) {
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/net/wireless/wl12xx/wl1271_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ static int __devinit wl1271_probe(struct spi_device *spi)
goto out_free;
}

wl->ref_clock = pdata->board_ref_clock;

wl->irq = spi->irq;
if (wl->irq < 0) {
wl1271_error("irq missing in platform data");
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/wl12xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ struct wl12xx_platform_data {
/* SDIO only: IRQ number if WLAN_IRQ line is used, 0 for SDIO IRQs */
int irq;
bool use_eeprom;
int board_ref_clock;
};

int wl12xx_set_platform_data(const struct wl12xx_platform_data *data);
Expand Down

0 comments on commit c8fd54a

Please sign in to comment.