common.h 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Header for code common to all DaVinci machines.
 *
 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
 *
 * 2007 (c) MontaVista Software, Inc. This file is licensed under
 * the terms of the GNU General Public License version 2. This program
 * is licensed "as is" without any warranty of any kind, whether express
 * or implied.
 */

#ifndef __ARCH_ARM_MACH_DAVINCI_COMMON_H
#define __ARCH_ARM_MACH_DAVINCI_COMMON_H

struct sys_timer;

extern struct sys_timer davinci_timer;

19
extern void davinci_irq_init(void);
20
extern void __iomem *davinci_intc_base;
21
extern int davinci_intc_type;
22 23 24 25

/* parameters describe VBUS sourcing for host mode */
extern void setup_usb(unsigned mA, unsigned potpgt_msec);

D
David Brownell 已提交
26 27 28
/* parameters describe VBUS sourcing for host mode */
extern void setup_usb(unsigned mA, unsigned potpgt_msec);

29 30 31 32 33 34 35 36 37 38 39 40
struct davinci_timer_instance {
	void __iomem	*base;
	u32		bottom_irq;
	u32		top_irq;
};

struct davinci_timer_info {
	struct davinci_timer_instance	*timers;
	unsigned int			clockevent_id;
	unsigned int			clocksource_id;
};

41 42 43 44
/* SoC specific init support */
struct davinci_soc_info {
	struct map_desc			*io_desc;
	unsigned long			io_desc_num;
45 46 47 48 49
	u32				cpu_id;
	u32				jtag_id;
	void __iomem			*jtag_id_base;
	struct davinci_id		*ids;
	unsigned long			ids_num;
50
	struct davinci_clk		*cpu_clks;
51 52
	void __iomem			**psc_bases;
	unsigned long			psc_bases_num;
53 54 55
	void __iomem			*pinmux_base;
	const struct mux_config		*pinmux_pins;
	unsigned long			pinmux_pins_num;
56 57 58 59
	void __iomem			*intc_base;
	int				intc_type;
	u8				*intc_irq_prios;
	unsigned long			intc_irq_num;
60
	struct davinci_timer_info	*timer_info;
61
	void __iomem			*wdt_base;
62 63 64
	void __iomem			*gpio_base;
	unsigned			gpio_num;
	unsigned			gpio_irq;
65
	struct platform_device		*serial_dev;
66
	struct emac_platform_data	*emac_pdata;
67 68 69 70 71 72
};

extern struct davinci_soc_info davinci_soc_info;

extern void davinci_common_init(struct davinci_soc_info *soc_info);

73
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */