platform.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Generic RDC321x platform devices
  3. *
  4. * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  19. * Boston, MA 02110-1301, USA.
  20. *
  21. */
  22. #include <linux/init.h>
  23. #include <linux/kernel.h>
  24. #include <linux/list.h>
  25. #include <linux/device.h>
  26. #include <linux/platform_device.h>
  27. #include <linux/leds.h>
  28. #include <asm/gpio.h>
  29. /* LEDS */
  30. static struct gpio_led default_leds[] = {
  31. { .name = "rdc:dmz", .gpio = 1, },
  32. };
  33. static struct gpio_led_platform_data rdc321x_led_data = {
  34. .num_leds = ARRAY_SIZE(default_leds),
  35. .leds = default_leds,
  36. };
  37. static struct platform_device rdc321x_leds = {
  38. .name = "leds-gpio",
  39. .id = -1,
  40. .dev = {
  41. .platform_data = &rdc321x_led_data,
  42. }
  43. };
  44. /* Watchdog */
  45. static struct platform_device rdc321x_wdt = {
  46. .name = "rdc321x-wdt",
  47. .id = -1,
  48. .num_resources = 0,
  49. };
  50. static struct platform_device *rdc321x_devs[] = {
  51. &rdc321x_leds,
  52. &rdc321x_wdt
  53. };
  54. static int __init rdc_board_setup(void)
  55. {
  56. rdc321x_gpio_setup();
  57. return platform_add_devices(rdc321x_devs, ARRAY_SIZE(rdc321x_devs));
  58. }
  59. arch_initcall(rdc_board_setup);