board-dt.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Setup code for AT91SAM Evaluation Kits with Device Tree support
  3. *
  4. * Copyright (C) 2011 Atmel,
  5. * 2011 Nicolas Ferre <nicolas.ferre@atmel.com>
  6. *
  7. * Licensed under GPLv2 or later.
  8. */
  9. #include <linux/types.h>
  10. #include <linux/init.h>
  11. #include <linux/module.h>
  12. #include <linux/gpio.h>
  13. #include <linux/of.h>
  14. #include <linux/of_irq.h>
  15. #include <linux/of_platform.h>
  16. #include <mach/board.h>
  17. #include <asm/setup.h>
  18. #include <asm/irq.h>
  19. #include <asm/mach/arch.h>
  20. #include <asm/mach/map.h>
  21. #include <asm/mach/irq.h>
  22. #include "generic.h"
  23. static const struct of_device_id irq_of_match[] __initconst = {
  24. { .compatible = "atmel,at91rm9200-aic", .data = at91_aic_of_init },
  25. { .compatible = "atmel,at91rm9200-gpio", .data = at91_gpio_of_irq_setup },
  26. { .compatible = "atmel,at91sam9x5-gpio", .data = at91_gpio_of_irq_setup },
  27. { /*sentinel*/ }
  28. };
  29. static void __init at91_dt_init_irq(void)
  30. {
  31. of_irq_init(irq_of_match);
  32. }
  33. static void __init at91_dt_device_init(void)
  34. {
  35. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  36. }
  37. static const char *at91_dt_board_compat[] __initdata = {
  38. "atmel,at91sam9",
  39. NULL
  40. };
  41. DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
  42. /* Maintainer: Atmel */
  43. .timer = &at91sam926x_timer,
  44. .map_io = at91_map_io,
  45. .init_early = at91_dt_initialize,
  46. .init_irq = at91_dt_init_irq,
  47. .init_machine = at91_dt_device_init,
  48. .dt_compat = at91_dt_board_compat,
  49. MACHINE_END