p720t-leds.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * linux/arch/arm/mach-clps711x/leds.c
  3. *
  4. * Integrator LED control routines
  5. *
  6. * Copyright (C) 2000 Deep Blue Solutions Ltd
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  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. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #include <linux/kernel.h>
  23. #include <linux/init.h>
  24. #include <linux/io.h>
  25. #include <mach/hardware.h>
  26. #include <asm/leds.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/hardware/clps7111.h>
  29. #include <asm/hardware/ep7212.h>
  30. static void p720t_leds_event(led_event_t ledevt)
  31. {
  32. unsigned long flags;
  33. u32 pddr;
  34. local_irq_save(flags);
  35. switch(ledevt) {
  36. case led_idle_start:
  37. break;
  38. case led_idle_end:
  39. break;
  40. case led_timer:
  41. pddr = clps_readb(PDDR);
  42. clps_writeb(pddr ^ 1, PDDR);
  43. break;
  44. default:
  45. break;
  46. }
  47. local_irq_restore(flags);
  48. }
  49. static int __init leds_init(void)
  50. {
  51. if (machine_is_p720t())
  52. leds_event = p720t_leds_event;
  53. return 0;
  54. }
  55. arch_initcall(leds_init);