board-paz00.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. #include <linux/platform_device.h>
  20. #include <linux/rfkill-gpio.h>
  21. #include "board.h"
  22. static struct rfkill_gpio_platform_data wifi_rfkill_platform_data = {
  23. .name = "wifi_rfkill",
  24. .reset_gpio = 25, /* PD1 */
  25. .shutdown_gpio = 85, /* PK5 */
  26. .type = RFKILL_TYPE_WLAN,
  27. };
  28. static struct platform_device wifi_rfkill_device = {
  29. .name = "rfkill_gpio",
  30. .id = -1,
  31. .dev = {
  32. .platform_data = &wifi_rfkill_platform_data,
  33. },
  34. };
  35. void __init tegra_paz00_wifikill_init(void)
  36. {
  37. platform_device_register(&wifi_rfkill_device);
  38. }