92105bb706
Patch from Tony Lindgren This patch syncs the mainline kernel with linux-omap tree. The highlights of the patch are: - Clock updates by Tuukka Tikkanen, Juha Yrjola, Daniel Petrini and Tony Lindgren - DMA fixes by Imre Deak, Juha Yrjola and Daniel Petrini - Add support to dual-mode hardware timers by Lauri Leukkunen - GPIO support for 24xx by Paul Mundt - GPIO wake-up support by Tony Lindgren - Better GPIO interrupt handler to not lose interrupts by Ralph Walden and Ladislav Michl - Power Management updates by Tuukka Tikkanen - Make Power Management code use new SRAM functions by Tony Lindgren Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
21 lines
626 B
C
21 lines
626 B
C
/*
|
|
* linux/arch/arm/plat-omap/sram.h
|
|
*
|
|
* Interface for functions that need to be run in internal SRAM
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_OMAP_SRAM_H
|
|
#define __ARCH_ARM_OMAP_SRAM_H
|
|
|
|
extern void * omap_sram_push(void * start, unsigned long size);
|
|
extern void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl);
|
|
|
|
/* Do not use these */
|
|
extern void sram_reprogram_clock(u32 ckctl, u32 dpllctl);
|
|
extern unsigned long sram_reprogram_clock_sz;
|
|
|
|
#endif
|