2009-04-29 14:33:31 -06:00
|
|
|
/*
|
|
|
|
* This file is part of wl12xx
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
|
|
*
|
2010-08-22 13:46:28 -06:00
|
|
|
* Contact: Luciano Coelho <luciano.coelho@nokia.com>
|
2009-04-29 14:33:31 -06:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-09-16 05:16:02 -06:00
|
|
|
#ifndef _LINUX_WL12XX_H
|
|
|
|
#define _LINUX_WL12XX_H
|
2009-04-29 14:33:31 -06:00
|
|
|
|
|
|
|
struct wl12xx_platform_data {
|
|
|
|
void (*set_power)(bool enable);
|
2010-04-16 04:22:12 -06:00
|
|
|
/* SDIO only: IRQ number if WLAN_IRQ line is used, 0 for SDIO IRQs */
|
|
|
|
int irq;
|
2009-11-17 09:50:09 -07:00
|
|
|
bool use_eeprom;
|
2010-09-15 17:31:51 -06:00
|
|
|
int board_ref_clock;
|
2009-04-29 14:33:31 -06:00
|
|
|
};
|
|
|
|
|
2010-09-28 12:20:28 -06:00
|
|
|
#ifdef CONFIG_WL12XX_PLATFORM_DATA
|
|
|
|
|
2010-09-15 17:31:12 -06:00
|
|
|
int wl12xx_set_platform_data(const struct wl12xx_platform_data *data);
|
2010-09-28 12:20:28 -06:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline
|
|
|
|
int wl12xx_set_platform_data(const struct wl12xx_platform_data *data)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-09-15 17:31:12 -06:00
|
|
|
const struct wl12xx_platform_data *wl12xx_get_platform_data(void);
|
|
|
|
|
2009-04-29 14:33:31 -06:00
|
|
|
#endif
|