2005-10-31 21:25:02 +07:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-realview/core.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 ARM Limited
|
|
|
|
* Copyright (C) 2000 Deep Blue Solutions Ltd
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_REALVIEW_H
|
|
|
|
#define __ASM_ARCH_REALVIEW_H
|
|
|
|
|
2006-01-07 20:52:45 +07:00
|
|
|
#include <linux/amba/bus.h>
|
2008-09-06 18:10:45 +07:00
|
|
|
#include <linux/io.h>
|
2006-01-07 20:52:45 +07:00
|
|
|
|
2009-11-04 19:19:04 +07:00
|
|
|
#include <asm/setup.h>
|
2005-10-31 21:25:02 +07:00
|
|
|
|
2011-12-18 20:38:49 +07:00
|
|
|
#define APB_DEVICE(name, busid, base, plat) \
|
|
|
|
static AMBA_APB_DEVICE(name, busid, 0, REALVIEW_##base##_BASE, base##_IRQ, plat)
|
|
|
|
|
|
|
|
#define AHB_DEVICE(name, busid, base, plat) \
|
|
|
|
static AMBA_AHB_DEVICE(name, busid, 0, REALVIEW_##base##_BASE, base##_IRQ, plat)
|
2005-10-31 21:25:02 +07:00
|
|
|
|
2009-11-04 19:19:04 +07:00
|
|
|
struct machine_desc;
|
|
|
|
|
2005-10-31 21:25:02 +07:00
|
|
|
extern struct platform_device realview_flash_device;
|
2009-02-12 21:59:21 +07:00
|
|
|
extern struct platform_device realview_cf_device;
|
2014-02-27 20:29:22 +07:00
|
|
|
extern struct platform_device realview_leds_device;
|
2006-12-11 03:21:32 +07:00
|
|
|
extern struct platform_device realview_i2c_device;
|
2009-09-22 20:29:36 +07:00
|
|
|
extern struct mmci_platform_data realview_mmc0_plat_data;
|
|
|
|
extern struct mmci_platform_data realview_mmc1_plat_data;
|
2005-10-31 21:25:02 +07:00
|
|
|
extern struct clcd_board clcd_plat_data;
|
2008-04-19 04:43:11 +07:00
|
|
|
extern void __iomem *timer0_va_base;
|
|
|
|
extern void __iomem *timer1_va_base;
|
|
|
|
extern void __iomem *timer2_va_base;
|
|
|
|
extern void __iomem *timer3_va_base;
|
2005-10-31 21:25:02 +07:00
|
|
|
|
2008-02-04 23:43:02 +07:00
|
|
|
extern void realview_timer_init(unsigned int timer_irq);
|
2008-04-19 04:43:10 +07:00
|
|
|
extern int realview_flash_register(struct resource *res, u32 num);
|
2008-12-01 21:54:58 +07:00
|
|
|
extern int realview_eth_register(const char *name, struct resource *res);
|
2009-02-12 22:00:21 +07:00
|
|
|
extern int realview_usb_register(struct resource *res);
|
2011-01-11 20:05:01 +07:00
|
|
|
extern void realview_init_early(void);
|
2014-04-14 04:54:58 +07:00
|
|
|
extern void realview_fixup(struct tag *tags, char **from);
|
2009-11-04 19:19:04 +07:00
|
|
|
|
2011-09-08 19:15:22 +07:00
|
|
|
extern struct smp_operations realview_smp_ops;
|
|
|
|
extern void realview_cpu_die(unsigned int cpu);
|
|
|
|
|
2005-10-31 21:25:02 +07:00
|
|
|
#endif
|