mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
198b51e8a6
Since we switched to use pxa_timer, we need to provide the OSTIMER0
clock. However, as the clock is initialised early, we need to provide
the clock early as well, so that pxa_timer can find it. Adding the
clock to the clkdev table at core_initcall() time is way too late.
Move the initialisation earlier.
Fixes: ee3a4020f7
("ARM: 8250/1: sa1100: provide OSTIMER0 clock for pxa_timer")
Acked-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*
|
|
* linux/arch/arm/mach-sa1100/generic.h
|
|
*
|
|
* Author: Nicolas Pitre
|
|
*/
|
|
#include <linux/cpufreq.h>
|
|
#include <linux/reboot.h>
|
|
|
|
extern void sa1100_timer_init(void);
|
|
extern void __init sa1100_map_io(void);
|
|
extern void __init sa1100_init_irq(void);
|
|
extern void __init sa1100_init_gpio(void);
|
|
extern void sa11x0_restart(enum reboot_mode, const char *);
|
|
extern void sa11x0_init_late(void);
|
|
|
|
#define SET_BANK(__nr,__start,__size) \
|
|
mi->bank[__nr].start = (__start), \
|
|
mi->bank[__nr].size = (__size)
|
|
|
|
extern void sa1110_mb_enable(void);
|
|
extern void sa1110_mb_disable(void);
|
|
|
|
extern struct cpufreq_frequency_table sa11x0_freq_table[];
|
|
extern unsigned int sa11x0_getspeed(unsigned int cpu);
|
|
|
|
struct flash_platform_data;
|
|
struct resource;
|
|
|
|
void sa11x0_register_mtd(struct flash_platform_data *flash,
|
|
struct resource *res, int nr);
|
|
|
|
struct irda_platform_data;
|
|
void sa11x0_register_irda(struct irda_platform_data *irda);
|
|
|
|
struct mcp_plat_data;
|
|
void sa11x0_ppc_configure_mcp(void);
|
|
void sa11x0_register_mcp(struct mcp_plat_data *data);
|
|
|
|
struct sa1100fb_mach_info;
|
|
void sa11x0_register_lcd(struct sa1100fb_mach_info *inf);
|
|
|
|
#ifdef CONFIG_PM
|
|
int sa11x0_pm_init(void);
|
|
#else
|
|
static inline int sa11x0_pm_init(void) { return 0; }
|
|
#endif
|
|
|
|
int sa11xx_clk_init(void);
|