2022-06-07 22:11:14 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
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>
|
|
|
|
*
|
2022-06-07 22:11:14 +08:00
|
|
|
* 2007 (c) MontaVista Software, Inc.
|
2007-05-01 02:37:19 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_MACH_DAVINCI_COMMON_H
|
|
|
|
#define __ARCH_ARM_MACH_DAVINCI_COMMON_H
|
|
|
|
|
2018-05-19 00:48:06 +08:00
|
|
|
#include <linux/clk.h>
|
2010-04-21 21:33:32 +08:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/types.h>
|
2013-07-09 07:01:40 +08:00
|
|
|
#include <linux/reboot.h>
|
2010-04-21 21:33:32 +08:00
|
|
|
|
2019-02-14 22:52:02 +08:00
|
|
|
#include <asm/irq.h>
|
|
|
|
|
|
|
|
#define DAVINCI_INTC_START NR_IRQS
|
2019-02-14 22:52:01 +08:00
|
|
|
#define DAVINCI_INTC_IRQ(_irqnum) (DAVINCI_INTC_START + (_irqnum))
|
|
|
|
|
2010-05-02 06:37:53 +08:00
|
|
|
struct davinci_gpio_controller;
|
|
|
|
|
2010-05-08 05:06:39 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2009-04-16 03:38:58 +08:00
|
|
|
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;
|
2010-05-08 05:06:34 +08:00
|
|
|
u32 jtag_id_reg;
|
2009-04-16 03:39:09 +08:00
|
|
|
struct davinci_id *ids;
|
|
|
|
unsigned long ids_num;
|
2010-05-08 05:06:38 +08:00
|
|
|
u32 pinmux_base;
|
2009-04-16 03:39:48 +08:00
|
|
|
const struct mux_config *pinmux_pins;
|
|
|
|
unsigned long pinmux_pins_num;
|
2010-05-02 06:37:54 +08:00
|
|
|
int gpio_type;
|
2010-05-08 05:06:32 +08:00
|
|
|
u32 gpio_base;
|
2009-04-16 03:40:35 +08:00
|
|
|
unsigned gpio_num;
|
|
|
|
unsigned gpio_irq;
|
2009-06-26 08:01:31 +08:00
|
|
|
unsigned gpio_unbanked;
|
2010-05-02 06:37:53 +08:00
|
|
|
struct davinci_gpio_controller *gpio_ctlrs;
|
|
|
|
int gpio_ctlrs_num;
|
2009-04-16 03:40:56 +08:00
|
|
|
struct emac_platform_data *emac_pdata;
|
2009-05-01 08:35:48 +08:00
|
|
|
dma_addr_t sram_dma;
|
|
|
|
unsigned sram_len;
|
2009-04-16 03:38:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct davinci_soc_info davinci_soc_info;
|
|
|
|
|
2017-10-16 18:08:23 +08:00
|
|
|
extern void davinci_common_init(const struct davinci_soc_info *soc_info);
|
2010-04-21 22:11:33 +08:00
|
|
|
extern void davinci_init_ide(void);
|
2012-04-26 09:45:39 +08:00
|
|
|
void davinci_init_late(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_FREQ
|
|
|
|
int davinci_cpufreq_init(void);
|
|
|
|
#else
|
|
|
|
static inline int davinci_cpufreq_init(void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
int davinci_pm_init(void);
|
|
|
|
#else
|
|
|
|
static inline int davinci_pm_init(void) { return 0; }
|
|
|
|
#endif
|
2009-04-16 03:38:58 +08:00
|
|
|
|
2017-01-10 04:55:29 +08:00
|
|
|
void __init pdata_quirks_init(void);
|
|
|
|
|
2009-05-01 08:35:48 +08:00
|
|
|
#define SRAM_SIZE SZ_128K
|
|
|
|
|
2007-05-01 02:37:19 +08:00
|
|
|
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */
|