common.h 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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

15 16 17
#include <linux/compiler.h>
#include <linux/types.h>

18 19 20 21
struct sys_timer;

extern struct sys_timer davinci_timer;

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

26
struct davinci_timer_instance {
27
	u32		base;
28 29
	u32		bottom_irq;
	u32		top_irq;
30 31
	unsigned long	cmp_off;
	unsigned int	cmp_irq;
32 33 34 35 36 37 38 39
};

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

40 41
struct davinci_gpio_controller;

42 43 44 45 46 47 48
/*
 * SoC info passed into common davinci modules.
 *
 * Base addresses in this structure should be physical and not virtual.
 * Modules that take such base addresses, should internally ioremap() them to
 * use.
 */
49 50 51
struct davinci_soc_info {
	struct map_desc			*io_desc;
	unsigned long			io_desc_num;
52 53
	u32				cpu_id;
	u32				jtag_id;
54
	u32				jtag_id_reg;
55 56
	struct davinci_id		*ids;
	unsigned long			ids_num;
57
	struct clk_lookup		*cpu_clks;
C
Cyril Chemparathy 已提交
58
	u32				*psc_bases;
59
	unsigned long			psc_bases_num;
60
	u32				pinmux_base;
61 62
	const struct mux_config		*pinmux_pins;
	unsigned long			pinmux_pins_num;
63
	u32				intc_base;
64 65 66
	int				intc_type;
	u8				*intc_irq_prios;
	unsigned long			intc_irq_num;
67
	u32				*intc_host_map;
68
	struct davinci_timer_info	*timer_info;
69
	int				gpio_type;
70
	u32				gpio_base;
71 72
	unsigned			gpio_num;
	unsigned			gpio_irq;
D
David Brownell 已提交
73
	unsigned			gpio_unbanked;
74 75
	struct davinci_gpio_controller	*gpio_ctlrs;
	int				gpio_ctlrs_num;
76
	struct platform_device		*serial_dev;
77
	struct emac_platform_data	*emac_pdata;
78 79
	dma_addr_t			sram_dma;
	unsigned			sram_len;
80 81
	struct platform_device		*reset_device;
	void				(*reset)(struct platform_device *);
82 83 84 85 86
};

extern struct davinci_soc_info davinci_soc_info;

extern void davinci_common_init(struct davinci_soc_info *soc_info);
87
extern void davinci_init_ide(void);
88

89 90 91 92
/* standard place to map on-chip SRAMs; they *may* support DMA */
#define SRAM_VIRT	0xfffe0000
#define SRAM_SIZE	SZ_128K

93
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */