2022-06-07 16:11:14 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2007-04-30 19:37:19 +01:00
|
|
|
/*
|
|
|
|
* Header for code common to all DaVinci machines.
|
|
|
|
*
|
|
|
|
* Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
|
|
|
|
*
|
2022-06-07 16:11:14 +02:00
|
|
|
* 2007 (c) MontaVista Software, Inc.
|
2007-04-30 19:37:19 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_MACH_DAVINCI_COMMON_H
|
|
|
|
#define __ARCH_ARM_MACH_DAVINCI_COMMON_H
|
|
|
|
|
2018-05-18 11:48:06 -05:00
|
|
|
#include <linux/clk.h>
|
2010-04-21 15:33:32 +02:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/types.h>
|
2013-07-08 16:01:40 -07:00
|
|
|
#include <linux/reboot.h>
|
2010-04-21 15:33:32 +02:00
|
|
|
|
2019-02-14 15:52:02 +01:00
|
|
|
#include <asm/irq.h>
|
|
|
|
|
2022-09-20 00:16:17 +02:00
|
|
|
#define DAVINCI_INTC_START NR_IRQS
|
|
|
|
#define DAVINCI_INTC_IRQ(_irqnum) (DAVINCI_INTC_START + (_irqnum))
|
2019-02-14 15:52:01 +01:00
|
|
|
|
2010-05-01 18:37:53 -04:00
|
|
|
struct davinci_gpio_controller;
|
|
|
|
|
2010-05-07 17:06:39 -04: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-15 12:38:58 -07:00
|
|
|
struct davinci_soc_info {
|
|
|
|
struct map_desc *io_desc;
|
|
|
|
unsigned long io_desc_num;
|
2009-04-15 12:39:09 -07:00
|
|
|
u32 cpu_id;
|
|
|
|
u32 jtag_id;
|
2010-05-07 17:06:34 -04:00
|
|
|
u32 jtag_id_reg;
|
2009-04-15 12:39:09 -07:00
|
|
|
struct davinci_id *ids;
|
|
|
|
unsigned long ids_num;
|
2010-05-07 17:06:38 -04:00
|
|
|
u32 pinmux_base;
|
2009-04-15 12:39:48 -07:00
|
|
|
const struct mux_config *pinmux_pins;
|
|
|
|
unsigned long pinmux_pins_num;
|
2010-05-01 18:37:54 -04:00
|
|
|
int gpio_type;
|
2010-05-07 17:06:32 -04:00
|
|
|
u32 gpio_base;
|
2009-04-15 12:40:35 -07:00
|
|
|
unsigned gpio_num;
|
|
|
|
unsigned gpio_irq;
|
2009-06-25 17:01:31 -07:00
|
|
|
unsigned gpio_unbanked;
|
2009-04-30 17:35:48 -07:00
|
|
|
dma_addr_t sram_dma;
|
|
|
|
unsigned sram_len;
|
2009-04-15 12:38:58 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct davinci_soc_info davinci_soc_info;
|
|
|
|
|
2017-10-16 12:08:23 +02:00
|
|
|
extern void davinci_common_init(const struct davinci_soc_info *soc_info);
|
2010-04-21 18:11:33 +04:00
|
|
|
extern void davinci_init_ide(void);
|
2012-04-26 09:45:39 +08:00
|
|
|
void davinci_init_late(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
int davinci_pm_init(void);
|
|
|
|
#else
|
|
|
|
static inline int davinci_pm_init(void) { return 0; }
|
|
|
|
#endif
|
2009-04-15 12:38:58 -07:00
|
|
|
|
2017-01-09 12:55:29 -08:00
|
|
|
void __init pdata_quirks_init(void);
|
|
|
|
|
2009-04-30 17:35:48 -07:00
|
|
|
#define SRAM_SIZE SZ_128K
|
|
|
|
|
2007-04-30 19:37:19 +01:00
|
|
|
#endif /* __ARCH_ARM_MACH_DAVINCI_COMMON_H */
|