2 * arch/arm/mach-tegra/board-paz00.c
4 * Copyright (C) 2011 Marc Dietrich <marvin24@gmx.de>
6 * Based on board-harmony.c
7 * Copyright (C) 2010 Google, Inc.
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
20 #include <linux/platform_device.h>
21 #include <linux/gpio/driver.h>
22 #include <linux/rfkill-gpio.h>
25 static struct rfkill_gpio_platform_data wifi_rfkill_platform_data
= {
26 .name
= "wifi_rfkill",
27 .reset_gpio
= 25, /* PD1 */
28 .shutdown_gpio
= 85, /* PK5 */
29 .type
= RFKILL_TYPE_WLAN
,
32 static struct platform_device wifi_rfkill_device
= {
33 .name
= "rfkill_gpio",
36 .platform_data
= &wifi_rfkill_platform_data
,
40 static struct gpiod_lookup_table wifi_gpio_lookup
= {
41 .dev_id
= "rfkill_gpio",
43 GPIO_LOOKUP_IDX("tegra-gpio", 25, NULL
, 0, 0),
44 GPIO_LOOKUP_IDX("tegra-gpio", 85, NULL
, 1, 0),
49 void __init
tegra_paz00_wifikill_init(void)
51 gpiod_add_lookup_table(&wifi_gpio_lookup
);
52 platform_device_register(&wifi_rfkill_device
);