omap2-restart.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * omap2-restart.c - code common to all OMAP2xxx machines.
  3. *
  4. * Copyright (C) 2012 Texas Instruments
  5. * Paul Walmsley
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/clk.h>
  14. #include <linux/io.h>
  15. #include "soc.h"
  16. #include "common.h"
  17. #include "prm.h"
  18. /*
  19. * reset_virt_prcm_set_ck, reset_sys_ck: pointers to the virt_prcm_set
  20. * clock and the sys_ck. Used during the reset process
  21. */
  22. static struct clk *reset_virt_prcm_set_ck, *reset_sys_ck;
  23. /* Reboot handling */
  24. /**
  25. * omap2xxx_restart - Set DPLL to bypass mode for reboot to work
  26. *
  27. * Set the DPLL to bypass so that reboot completes successfully. No
  28. * return value.
  29. */
  30. void omap2xxx_restart(enum reboot_mode mode, const char *cmd)
  31. {
  32. u32 rate;
  33. rate = clk_get_rate(reset_sys_ck);
  34. clk_set_rate(reset_virt_prcm_set_ck, rate);
  35. /* XXX Should save the cmd argument for use after the reboot */
  36. omap_prm_reset_system();
  37. }
  38. /**
  39. * omap2xxx_common_look_up_clks_for_reset - look up clocks needed for restart
  40. *
  41. * Some clocks need to be looked up in advance for the SoC restart
  42. * operation to work - see omap2xxx_restart(). Returns -EINVAL upon
  43. * error or 0 upon success.
  44. */
  45. static int __init omap2xxx_common_look_up_clks_for_reset(void)
  46. {
  47. reset_virt_prcm_set_ck = clk_get(NULL, "virt_prcm_set");
  48. if (IS_ERR(reset_virt_prcm_set_ck))
  49. return -EINVAL;
  50. reset_sys_ck = clk_get(NULL, "sys_ck");
  51. if (IS_ERR(reset_sys_ck))
  52. return -EINVAL;
  53. return 0;
  54. }
  55. omap_postcore_initcall(omap2xxx_common_look_up_clks_for_reset);