blob: 183f0238c5e26c611a066ebc781fa29116590f58 [file] [log] [blame]
viresh kumare024c3d2010-04-01 12:30:31 +01001/*
2 * arch/arm/mach-spear6xx/include/mach/generic.h
3 *
4 * SPEAr6XX machine family specific generic header file
5 *
6 * Copyright (C) 2009 ST Microelectronics
7 * Rajeev Kumar<rajeev-dlh.kumar@st.com>
8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14#ifndef __MACH_GENERIC_H
15#define __MACH_GENERIC_H
16
viresh kumare024c3d2010-04-01 12:30:31 +010017#include <linux/init.h>
18#include <linux/platform_device.h>
19#include <linux/amba/bus.h>
viresh kumar410782b2011-03-07 05:57:01 +010020#include <asm/mach/time.h>
21#include <asm/mach/map.h>
viresh kumare024c3d2010-04-01 12:30:31 +010022
23/*
24 * Each GPT has 2 timer channels
25 * Following GPT channels will be used as clock source and clockevent
26 */
27#define SPEAR_GPT0_BASE SPEAR6XX_CPU_TMR_BASE
28#define SPEAR_GPT0_CHAN0_IRQ IRQ_CPU_GPT1_1
29#define SPEAR_GPT0_CHAN1_IRQ IRQ_CPU_GPT1_2
30
31/* Add spear6xx family device structure declarations here */
32extern struct amba_device gpio_device[];
33extern struct amba_device uart_device[];
Shiraz Hashim5c881d92011-02-16 07:40:32 +010034extern struct sys_timer spear6xx_timer;
viresh kumare024c3d2010-04-01 12:30:31 +010035
36/* Add spear6xx family function declarations here */
Shiraz Hashim5c881d92011-02-16 07:40:32 +010037void __init spear_setup_timer(void);
viresh kumare024c3d2010-04-01 12:30:31 +010038void __init spear6xx_map_io(void);
39void __init spear6xx_init_irq(void);
40void __init spear6xx_init(void);
41void __init spear600_init(void);
viresh kumarb997f6e2011-05-20 08:34:18 +010042void __init spear6xx_clk_init(void);
viresh kumare024c3d2010-04-01 12:30:31 +010043
44/* Add spear600 machine device structure declarations here */
45
46#endif /* __MACH_GENERIC_H */