prcm.c 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * linux/arch/arm/mach-omap2/prcm.c
  3. *
  4. * OMAP 24xx Power Reset and Clock Management (PRCM) functions
  5. *
  6. * Copyright (C) 2005 Nokia Corporation
  7. *
  8. * Written by Tony Lindgren <tony.lindgren@nokia.com>
  9. *
  10. * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. */
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/clk.h>
  19. #include "prcm-regs.h"
  20. u32 omap_prcm_get_reset_sources(void)
  21. {
  22. return RM_RSTST_WKUP & 0x7f;
  23. }
  24. EXPORT_SYMBOL(omap_prcm_get_reset_sources);
  25. /* Resets clock rates and reboots the system. Only called from system.h */
  26. void omap_prcm_arch_reset(char mode)
  27. {
  28. u32 rate;
  29. struct clk *vclk, *sclk;
  30. vclk = clk_get(NULL, "virt_prcm_set");
  31. sclk = clk_get(NULL, "sys_ck");
  32. rate = clk_get_rate(sclk);
  33. clk_set_rate(vclk, rate); /* go to bypass for OMAP limitation */
  34. RM_RSTCTRL_WKUP |= 2;
  35. }