mpc5121_ads.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (C) 2007, 2008 Freescale Semiconductor, Inc. All rights reserved.
  3. *
  4. * Author: John Rigby, <jrigby@freescale.com>, Thur Mar 29 2007
  5. *
  6. * Description:
  7. * MPC5121 ADS board setup
  8. *
  9. * This is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/io.h>
  17. #include <linux/of_platform.h>
  18. #include <asm/machdep.h>
  19. #include <asm/ipic.h>
  20. #include <asm/prom.h>
  21. #include <asm/time.h>
  22. #include <sysdev/fsl_pci.h>
  23. #include "mpc512x.h"
  24. #include "mpc5121_ads.h"
  25. static void __init mpc5121_ads_setup_arch(void)
  26. {
  27. #ifdef CONFIG_PCI
  28. struct device_node *np;
  29. #endif
  30. printk(KERN_INFO "MPC5121 ADS board from Freescale Semiconductor\n");
  31. /*
  32. * cpld regs are needed early
  33. */
  34. mpc5121_ads_cpld_map();
  35. #ifdef CONFIG_PCI
  36. for_each_compatible_node(np, "pci", "fsl,mpc5121-pci")
  37. mpc83xx_add_bridge(np);
  38. #endif
  39. #if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
  40. mpc512x_setup_diu();
  41. #endif
  42. }
  43. static void __init mpc5121_ads_init_IRQ(void)
  44. {
  45. mpc512x_init_IRQ();
  46. mpc5121_ads_cpld_pic_init();
  47. }
  48. /*
  49. * Called very early, MMU is off, device-tree isn't unflattened
  50. */
  51. static int __init mpc5121_ads_probe(void)
  52. {
  53. unsigned long root = of_get_flat_dt_root();
  54. return of_flat_dt_is_compatible(root, "fsl,mpc5121ads");
  55. }
  56. define_machine(mpc5121_ads) {
  57. .name = "MPC5121 ADS",
  58. .probe = mpc5121_ads_probe,
  59. .setup_arch = mpc5121_ads_setup_arch,
  60. .init = mpc512x_init,
  61. .init_early = mpc512x_init_diu,
  62. .init_IRQ = mpc5121_ads_init_IRQ,
  63. .get_irq = ipic_get_irq,
  64. .calibrate_decr = generic_calibrate_decr,
  65. .restart = mpc512x_restart,
  66. };