blob: 9c6029ba526fff85005d8195c311138be7074a94 [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>
Heikki Krogerus7bb3ed22013-12-03 14:49:58 +020021#include <linux/gpio/driver.h>
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020022#include <linux/rfkill-gpio.h>
Marc Dietrich65b935a2011-03-07 21:01:31 +010023#include "board.h"
Marc Dietrich65b935a2011-03-07 21:01:31 +010024
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020025static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = {
Heikki Krogerus7bd49442014-04-01 17:02:52 +030026 .name = "wifi_rfkill",
Marc Dietrich9aaa15a2011-08-07 21:00:52 +020027 .type = RFKILL_TYPE_WLAN,
28};
29
30static struct platform_device wifi_rfkill_device = {
31 .name = "rfkill_gpio",
32 .id = -1,
33 .dev = {
34 .platform_data = &wifi_rfkill_platform_data,
35 },
36};
37
Heikki Krogerus7bb3ed22013-12-03 14:49:58 +020038static struct gpiod_lookup_table wifi_gpio_lookup = {
39 .dev_id = "rfkill_gpio",
40 .table = {
41 GPIO_LOOKUP_IDX("tegra-gpio", 25, NULL, 0, 0),
42 GPIO_LOOKUP_IDX("tegra-gpio", 85, NULL, 1, 0),
43 { },
44 },
45};
46
Stephen Warrenb64a02c2012-05-02 16:05:44 -060047void __init tegra_paz00_wifikill_init(void)
48{
Heikki Krogerus7bb3ed22013-12-03 14:49:58 +020049 gpiod_add_lookup_table(&wifi_gpio_lookup);
Stephen Warrenb64a02c2012-05-02 16:05:44 -060050 platform_device_register(&wifi_rfkill_device);
51}