Merge remote-tracking branches 'spi/topic/octeon', 'spi/topic/omap2-mcspi', 'spi...
[deliverable/linux.git] / arch / arm / mach-tegra / board-paz00.c
CommitLineData
65b935aa
MD
1/*
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
d54bbaf4 20#include <linux/property.h>
0a6d3158 21#include <linux/gpio/machine.h>
a0524acc 22#include <linux/platform_device.h>
a0524acc 23
65b935aa 24#include "board.h"
65b935aa 25
d54bbaf4
HK
26static struct property_entry __initdata wifi_rfkill_prop[] = {
27 PROPERTY_ENTRY_STRING("name", "wifi_rfkill"),
28 PROPERTY_ENTRY_STRING("type", "wlan"),
29 { },
30};
31
32static struct property_set __initdata wifi_rfkill_pset = {
33 .properties = wifi_rfkill_prop,
9aaa15a7
MD
34};
35
36static struct platform_device wifi_rfkill_device = {
37 .name = "rfkill_gpio",
38 .id = -1,
9aaa15a7
MD
39};
40
7bb3ed21
HK
41static struct gpiod_lookup_table wifi_gpio_lookup = {
42 .dev_id = "rfkill_gpio",
43 .table = {
e77b675f
DO
44 GPIO_LOOKUP("tegra-gpio", 25, "reset", 0),
45 GPIO_LOOKUP("tegra-gpio", 85, "shutdown", 0),
7bb3ed21
HK
46 { },
47 },
48};
49
b64a02c6
SW
50void __init tegra_paz00_wifikill_init(void)
51{
d54bbaf4 52 platform_device_add_properties(&wifi_rfkill_device, &wifi_rfkill_pset);
7bb3ed21 53 gpiod_add_lookup_table(&wifi_gpio_lookup);
b64a02c6
SW
54 platform_device_register(&wifi_rfkill_device);
55}
This page took 0.303616 seconds and 5 git commands to generate.