2007-05-01 01:37:19 +07:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2010-04-21 20:33:32 +07:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2007-05-01 01:37:19 +07:00
|
|
|
struct sys_timer;
|
|
|
|
|
|
|
|
extern struct sys_timer davinci_timer;
|
|
|
|
|
2009-04-14 23:30:11 +07:00
|
|
|
extern void davinci_irq_init(void);
|
2009-04-16 02:40:00 +07:00
|
|
|
extern void __iomem *davinci_intc_base;
|
2009-04-16 02:41:40 +07:00
|
|
|
extern int davinci_intc_type;
|
2009-04-14 23:30:11 +07:00
|
|
|
|
2009-04-16 02:40:11 +07:00
|
|
|
struct davinci_timer_instance {
|
|
|
|
void __iomem *base;
|
|
|
|
u32 bottom_irq;
|
|
|
|
u32 top_irq;
|
2009-04-16 02:41:54 +07:00
|
|
|
unsigned long cmp_off;
|
|
|
|
unsigned int cmp_irq;
|
2009-04-16 02:40:11 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct davinci_timer_info {
|
|
|
|
struct davinci_timer_instance *timers;
|
|
|
|
unsigned int clockevent_id;
|
|
|
|
unsigned int clocksource_id;
|
|
|
|
};
|
|
|
|
|
2010-05-02 05:37:53 +07:00
|
|
|
struct davinci_gpio_controller;
|
|
|
|
|
2009-04-16 02:38:58 +07:00
|
|
|
/* SoC specific init support */
|
|
|
|
struct davinci_soc_info {
|
|
|
|
struct map_desc *io_desc;
|
|
|
|
unsigned long io_desc_num;
|
2009-04-16 02:39:09 +07:00
|
|
|
u32 cpu_id;
|
|
|
|
u32 jtag_id;
|
|
|
|
void __iomem *jtag_id_base;
|
|
|
|
struct davinci_id *ids;
|
|
|
|
unsigned long ids_num;
|
2010-01-11 23:22:23 +07:00
|
|
|
struct clk_lookup *cpu_clks;
|
2009-04-16 02:39:33 +07:00
|
|
|
void __iomem **psc_bases;
|
|
|
|
unsigned long psc_bases_num;
|
2009-04-16 02:39:48 +07:00
|
|
|
void __iomem *pinmux_base;
|
|
|
|
const struct mux_config *pinmux_pins;
|
|
|
|
unsigned long pinmux_pins_num;
|
2009-04-16 02:40:00 +07:00
|
|
|
void __iomem *intc_base;
|
|
|
|
int intc_type;
|
|
|
|
u8 *intc_irq_prios;
|
|
|
|
unsigned long intc_irq_num;
|
2009-04-16 02:40:11 +07:00
|
|
|
struct davinci_timer_info *timer_info;
|
2010-05-02 05:37:54 +07:00
|
|
|
int gpio_type;
|
2009-04-16 02:40:35 +07:00
|
|
|
void __iomem *gpio_base;
|
|
|
|
unsigned gpio_num;
|
|
|
|
unsigned gpio_irq;
|
2009-06-26 07:01:31 +07:00
|
|
|
unsigned gpio_unbanked;
|
2010-05-02 05:37:53 +07:00
|
|
|
struct davinci_gpio_controller *gpio_ctlrs;
|
|
|
|
int gpio_ctlrs_num;
|
2009-03-19 00:36:08 +07:00
|
|
|
struct platform_device *serial_dev;
|
2009-04-16 02:40:56 +07:00
|
|
|
struct emac_platform_data *emac_pdata;
|
2009-05-01 07:35:48 +07:00
|
|
|
dma_addr_t sram_dma;
|
|
|
|
unsigned sram_len;
|
2010-05-02 05:38:28 +07:00
|
|
|
struct platform_device *reset_device;
|
|
|
|
void (*reset)(struct platform_device *);
|
2009-04-16 02:38:58 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct davinci_soc_info davinci_soc_info;
|
|
|
|
|
|
|
|
extern void davinci_common_init(struct davinci_soc_info *soc_info);
|
2010-04-21 21:11:33 +07:00
|
|
|
extern void davinci_init_ide(void);
|
2009-04-16 02:38:58 +07:00
|
|
|
|
2009-05-01 07:35:48 +07:00
|
|
|
/* standard place to map on-chip SRAMs; they *may* support DMA */
|
|
|
|
#define SRAM_VIRT 0xfffe0000
|
|
|
|
#define SRAM_SIZE SZ_128K
|
|
|
|
|
2007-05-01 01:37:19 +07:00
|
|
|
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */
|