blob: 06f024070dab6ef9a826a2090d068328adeeea50 [file] [log] [blame]
Marc Dietrich65b935a2011-03-07 21:01:31 +01001/*
2 * arch/arm/mach-tegra/board-paz00.c
3 *
4 * Copyright (C) 2011 Marc Dietrich <marvin24@gmx.de>
5 *
6 * Based on board-harmony.c
7 * Copyright (C) 2010 Google, Inc.
8 *
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.
12 *
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.
17 *
18 */
19
Marc Dietrich65b935a2011-03-07 21:01:31 +010020#include <linux/platform_device.h>
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020021#include <linux/rfkill-gpio.h>
Marc Dietrich65b935a2011-03-07 21:01:31 +010022#include "board.h"
Marc Dietrich65b935a2011-03-07 21:01:31 +010023
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020024static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = {
25 .name = "wifi_rfkill",
Stephen Warren6ae89412013-08-20 16:11:29 -060026 .reset_gpio = 25, /* PD1 */
27 .shutdown_gpio = 85, /* PK5 */
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020028 .type = RFKILL_TYPE_WLAN,
29};
30
31static struct platform_device wifi_rfkill_device = {
32 .name = "rfkill_gpio",
33 .id = -1,
34 .dev = {
35 .platform_data = &wifi_rfkill_platform_data,
36 },
37};
38
Stephen Warrenb64a02c2012-05-02 16:05:44 -060039void __init tegra_paz00_wifikill_init(void)
40{
41 platform_device_register(&wifi_rfkill_device);
42}