mpc836x_rdk.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * MPC8360E-RDK board file.
  3. *
  4. * Copyright (c) 2006 Freescale Semicondutor, Inc.
  5. * Copyright (c) 2007-2008 MontaVista Software, Inc.
  6. *
  7. * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/pci.h>
  16. #include <linux/of_platform.h>
  17. #include <linux/io.h>
  18. #include <asm/prom.h>
  19. #include <asm/time.h>
  20. #include <asm/ipic.h>
  21. #include <asm/udbg.h>
  22. #include <asm/qe.h>
  23. #include <asm/qe_ic.h>
  24. #include <sysdev/fsl_soc.h>
  25. #include <sysdev/fsl_pci.h>
  26. #include "mpc83xx.h"
  27. machine_device_initcall(mpc836x_rdk, mpc83xx_declare_of_platform_devices);
  28. static void __init mpc836x_rdk_setup_arch(void)
  29. {
  30. #ifdef CONFIG_PCI
  31. struct device_node *np;
  32. #endif
  33. if (ppc_md.progress)
  34. ppc_md.progress("mpc836x_rdk_setup_arch()", 0);
  35. #ifdef CONFIG_PCI
  36. for_each_compatible_node(np, "pci", "fsl,mpc8349-pci")
  37. mpc83xx_add_bridge(np);
  38. #endif
  39. #ifdef CONFIG_QUICC_ENGINE
  40. qe_reset();
  41. #endif
  42. }
  43. /*
  44. * Called very early, MMU is off, device-tree isn't unflattened.
  45. */
  46. static int __init mpc836x_rdk_probe(void)
  47. {
  48. unsigned long root = of_get_flat_dt_root();
  49. return of_flat_dt_is_compatible(root, "fsl,mpc8360rdk");
  50. }
  51. define_machine(mpc836x_rdk) {
  52. .name = "MPC836x RDK",
  53. .probe = mpc836x_rdk_probe,
  54. .setup_arch = mpc836x_rdk_setup_arch,
  55. .init_IRQ = mpc83xx_ipic_and_qe_init_IRQ,
  56. .get_irq = ipic_get_irq,
  57. .restart = mpc83xx_restart,
  58. .time_init = mpc83xx_time_init,
  59. .calibrate_decr = generic_calibrate_decr,
  60. .progress = udbg_progress,
  61. };