omap_hwmod_reset.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * OMAP IP block custom reset and preprogramming stubs
  3. *
  4. * Copyright (C) 2012 Texas Instruments, Inc.
  5. * Paul Walmsley
  6. *
  7. * A small number of IP blocks need custom reset and preprogramming
  8. * functions. The stubs in this file provide a standard way for the
  9. * hwmod code to call these functions, which are to be located under
  10. * drivers/.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation version 2.
  15. *
  16. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  17. * kind, whether express or implied; without even the implied warranty
  18. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  24. * 02110-1301 USA
  25. */
  26. #include <linux/kernel.h>
  27. #include <linux/errno.h>
  28. #include <sound/aess.h>
  29. #include "omap_hwmod.h"
  30. /**
  31. * omap_hwmod_aess_preprogram - enable AESS internal autogating
  32. * @oh: struct omap_hwmod *
  33. *
  34. * The AESS will not IdleAck to the PRCM until its internal autogating
  35. * is enabled. Since internal autogating is disabled by default after
  36. * AESS reset, we must enable autogating after the hwmod code resets
  37. * the AESS. Returns 0.
  38. */
  39. int omap_hwmod_aess_preprogram(struct omap_hwmod *oh)
  40. {
  41. void __iomem *va;
  42. va = omap_hwmod_get_mpu_rt_va(oh);
  43. if (!va)
  44. return -EINVAL;
  45. aess_enable_autogating(va);
  46. return 0;
  47. }