sram.h 626 B

123456789101112131415161718192021
  1. /*
  2. * linux/arch/arm/plat-omap/sram.h
  3. *
  4. * Interface for functions that need to be run in internal SRAM
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef __ARCH_ARM_OMAP_SRAM_H
  11. #define __ARCH_ARM_OMAP_SRAM_H
  12. extern void * omap_sram_push(void * start, unsigned long size);
  13. extern void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl);
  14. /* Do not use these */
  15. extern void sram_reprogram_clock(u32 ckctl, u32 dpllctl);
  16. extern unsigned long sram_reprogram_clock_sz;
  17. #endif