2007-05-01 02:37:19 +08: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
|
|
|
|
|
|
|
|
struct sys_timer;
|
|
|
|
|
|
|
|
extern struct sys_timer davinci_timer;
|
|
|
|
|
2009-04-15 00:30:11 +08:00
|
|
|
extern void davinci_irq_init(void);
|
|
|
|
|
|
|
|
/* parameters describe VBUS sourcing for host mode */
|
|
|
|
extern void setup_usb(unsigned mA, unsigned potpgt_msec);
|
|
|
|
|
2008-09-08 14:41:57 +08:00
|
|
|
/* parameters describe VBUS sourcing for host mode */
|
|
|
|
extern void setup_usb(unsigned mA, unsigned potpgt_msec);
|
|
|
|
|
2009-04-16 03:38:58 +08:00
|
|
|
/* SoC specific init support */
|
|
|
|
struct davinci_soc_info {
|
|
|
|
struct map_desc *io_desc;
|
|
|
|
unsigned long io_desc_num;
|
2009-04-16 03:39:09 +08:00
|
|
|
u32 cpu_id;
|
|
|
|
u32 jtag_id;
|
|
|
|
void __iomem *jtag_id_base;
|
|
|
|
struct davinci_id *ids;
|
|
|
|
unsigned long ids_num;
|
2009-04-16 03:39:23 +08:00
|
|
|
struct davinci_clk *cpu_clks;
|
2009-04-16 03:39:33 +08:00
|
|
|
void __iomem **psc_bases;
|
|
|
|
unsigned long psc_bases_num;
|
2009-04-16 03:38:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct davinci_soc_info davinci_soc_info;
|
|
|
|
|
|
|
|
extern void davinci_common_init(struct davinci_soc_info *soc_info);
|
|
|
|
|
2007-05-01 02:37:19 +08:00
|
|
|
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */
|