cpu.c 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * Copyright (C) ST-Ericsson SA 2010
 *
 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
 * License terms: GNU General Public License (GPL) version 2
 */

#include <linux/platform_device.h>
#include <linux/io.h>
#include <linux/clk.h>
11
#include <linux/mfd/db8500-prcmu.h>
L
Linus Walleij 已提交
12
#include <linux/mfd/db5500-prcmu.h>
13
#include <linux/clksrc-dbx500-prcmu.h>
14 15 16

#include <asm/hardware/gic.h>
#include <asm/mach/map.h>
17
#include <asm/localtimer.h>
18 19 20

#include <mach/hardware.h>
#include <mach/setup.h>
21
#include <mach/devices.h>
22 23 24

#include "clock.h"

25 26
void __iomem *_PRCMU_BASE;

27 28
void __init ux500_init_irq(void)
{
29 30 31 32 33 34 35 36 37 38 39 40 41
	void __iomem *dist_base;
	void __iomem *cpu_base;

	if (cpu_is_u5500()) {
		dist_base = __io_address(U5500_GIC_DIST_BASE);
		cpu_base = __io_address(U5500_GIC_CPU_BASE);
	} else if (cpu_is_u8500()) {
		dist_base = __io_address(U8500_GIC_DIST_BASE);
		cpu_base = __io_address(U8500_GIC_CPU_BASE);
	} else
		ux500_unknown_soc();

	gic_init(0, 29, dist_base, cpu_base);
42 43 44 45 46

	/*
	 * Init clocks here so that they are available for system timer
	 * initialization.
	 */
L
Linus Walleij 已提交
47 48
	if (cpu_is_u5500())
		db5500_prcmu_early_init();
P
Per Forlin 已提交
49
	if (cpu_is_u8500())
50
		db8500_prcmu_early_init();
51
	clk_init();
52
}