2009-06-04 09:36:54 +08:00
|
|
|
/*
|
|
|
|
* Chip specific defines for DA8XX/OMAP L1XX SoC
|
|
|
|
*
|
|
|
|
* Author: Mark A. Greer <mgreer@mvista.com>
|
|
|
|
*
|
2010-03-26 22:56:58 +08:00
|
|
|
* 2007, 2009-2010 (c) MontaVista Software, Inc. This file is licensed under
|
2009-06-04 09:36:54 +08:00
|
|
|
* 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 __ASM_ARCH_DAVINCI_DA8XX_H
|
|
|
|
#define __ASM_ARCH_DAVINCI_DA8XX_H
|
|
|
|
|
2009-09-16 09:14:19 +08:00
|
|
|
#include <video/da8xx-fb.h>
|
|
|
|
|
2010-03-26 22:56:58 +08:00
|
|
|
#include <linux/platform_device.h>
|
2009-11-19 18:28:25 +08:00
|
|
|
#include <linux/davinci_emac.h>
|
2011-02-24 12:48:28 +08:00
|
|
|
#include <linux/spi/spi.h>
|
2012-08-27 21:26:41 +08:00
|
|
|
#include <linux/platform_data/davinci_asp.h>
|
2013-07-09 07:01:40 +08:00
|
|
|
#include <linux/reboot.h>
|
2012-01-23 17:17:24 +08:00
|
|
|
#include <linux/videodev2.h>
|
2010-03-26 22:56:58 +08:00
|
|
|
|
2009-06-04 09:36:54 +08:00
|
|
|
#include <mach/serial.h>
|
2009-12-17 20:59:32 +08:00
|
|
|
#include <mach/pm.h>
|
2013-03-07 00:15:31 +08:00
|
|
|
#include <linux/platform_data/edma.h>
|
2012-08-24 21:11:34 +08:00
|
|
|
#include <linux/platform_data/i2c-davinci.h>
|
|
|
|
#include <linux/platform_data/mmc-davinci.h>
|
|
|
|
#include <linux/platform_data/usb-davinci.h>
|
|
|
|
#include <linux/platform_data/spi-davinci.h>
|
2012-10-08 21:53:08 +08:00
|
|
|
#include <linux/platform_data/uio_pruss.h>
|
2009-06-04 09:36:54 +08:00
|
|
|
|
2012-01-23 17:17:24 +08:00
|
|
|
#include <media/davinci/vpif_types.h>
|
|
|
|
|
2009-11-16 19:51:32 +08:00
|
|
|
extern void __iomem *da8xx_syscfg0_base;
|
|
|
|
extern void __iomem *da8xx_syscfg1_base;
|
2009-08-31 18:17:59 +08:00
|
|
|
|
2010-12-21 00:01:33 +08:00
|
|
|
/*
|
|
|
|
* If the DA850/OMAP-L138/AM18x SoC on board is of a higher speed grade
|
|
|
|
* (than the regular 300Mhz variant), the board code should set this up
|
|
|
|
* with the supported speed before calling da850_register_cpufreq().
|
|
|
|
*/
|
|
|
|
extern unsigned int da850_max_speed;
|
|
|
|
|
2009-06-04 09:36:54 +08:00
|
|
|
/*
|
|
|
|
* The cp_intc interrupt controller for the da8xx isn't in the same
|
|
|
|
* chunk of physical memory space as the other registers (like it is
|
|
|
|
* on the davincis) so it needs to be mapped separately. It will be
|
|
|
|
* mapped early on when the I/O space is mapped and we'll put it just
|
|
|
|
* before the I/O space in the processor's virtual memory space.
|
|
|
|
*/
|
|
|
|
#define DA8XX_CP_INTC_BASE 0xfffee000
|
|
|
|
#define DA8XX_CP_INTC_SIZE SZ_8K
|
|
|
|
#define DA8XX_CP_INTC_VIRT (IO_VIRT - DA8XX_CP_INTC_SIZE - SZ_4K)
|
|
|
|
|
2009-11-16 19:51:32 +08:00
|
|
|
#define DA8XX_SYSCFG0_BASE (IO_PHYS + 0x14000)
|
|
|
|
#define DA8XX_SYSCFG0_VIRT(x) (da8xx_syscfg0_base + (x))
|
2009-08-31 18:18:00 +08:00
|
|
|
#define DA8XX_JTAG_ID_REG 0x18
|
2013-03-29 09:41:46 +08:00
|
|
|
#define DA8XX_HOST1CFG_REG 0x44
|
|
|
|
#define DA8XX_CHIPSIG_REG 0x174
|
2009-09-22 23:44:01 +08:00
|
|
|
#define DA8XX_CFGCHIP0_REG 0x17c
|
2013-03-25 15:49:48 +08:00
|
|
|
#define DA8XX_CFGCHIP1_REG 0x180
|
2009-09-26 02:24:57 +08:00
|
|
|
#define DA8XX_CFGCHIP2_REG 0x184
|
2009-08-31 18:18:05 +08:00
|
|
|
#define DA8XX_CFGCHIP3_REG 0x188
|
2009-06-04 09:36:54 +08:00
|
|
|
|
2009-11-16 19:51:32 +08:00
|
|
|
#define DA8XX_SYSCFG1_BASE (IO_PHYS + 0x22C000)
|
|
|
|
#define DA8XX_SYSCFG1_VIRT(x) (da8xx_syscfg1_base + (x))
|
2009-12-17 20:59:32 +08:00
|
|
|
#define DA8XX_DEEPSLEEP_REG 0x8
|
2011-07-06 14:01:23 +08:00
|
|
|
#define DA8XX_PWRDN_REG 0x18
|
2009-11-16 19:51:32 +08:00
|
|
|
|
2009-07-10 14:08:31 +08:00
|
|
|
#define DA8XX_PSC0_BASE 0x01c10000
|
|
|
|
#define DA8XX_PLL0_BASE 0x01c11000
|
|
|
|
#define DA8XX_TIMER64P0_BASE 0x01c20000
|
|
|
|
#define DA8XX_TIMER64P1_BASE 0x01c21000
|
2012-01-23 17:17:24 +08:00
|
|
|
#define DA8XX_VPIF_BASE 0x01e17000
|
2009-07-10 14:08:31 +08:00
|
|
|
#define DA8XX_GPIO_BASE 0x01e26000
|
|
|
|
#define DA8XX_PSC1_BASE 0x01e27000
|
2009-08-14 05:36:25 +08:00
|
|
|
#define DA8XX_AEMIF_CS2_BASE 0x60000000
|
2009-08-14 04:21:11 +08:00
|
|
|
#define DA8XX_AEMIF_CS3_BASE 0x62000000
|
|
|
|
#define DA8XX_AEMIF_CTL_BASE 0x68000000
|
2012-10-06 01:04:42 +08:00
|
|
|
#define DA8XX_SHARED_RAM_BASE 0x80000000
|
2009-11-16 19:51:39 +08:00
|
|
|
#define DA8XX_ARM_RAM_BASE 0xffff0000
|
2009-07-10 14:08:31 +08:00
|
|
|
|
2013-04-01 19:33:36 +08:00
|
|
|
void da830_init(void);
|
|
|
|
void da850_init(void);
|
2009-06-04 09:36:54 +08:00
|
|
|
|
2010-06-29 14:05:14 +08:00
|
|
|
int da830_register_edma(struct edma_rsv_info *rsv);
|
|
|
|
int da850_register_edma(struct edma_rsv_info *rsv[2]);
|
2009-06-04 09:36:54 +08:00
|
|
|
int da8xx_register_i2c(int instance, struct davinci_i2c_platform_data *pdata);
|
ARM: davinci: da8xx_register_spi() should not register SPI board info
Without this patch, da8xx_register_spi() registers the SPI board info,
the SPI controller, and sets its number of chipselect to the size of the
static spi_board_info array. This is bad because a SPI board info may
declare devices for different SPI buses, and because other code can also
call spi_register_board_info() (e.g. a daughter board might provide
additional SPI devices).
This patch removes the spi_register_board_info() call from
da8xx_register_spi(), renames this last one to da8xx_register_spi_bus()
to be more explicit, takes the number of chipselect as a function
parameter, and updates the impacted board-da8{3,5}0-evm.c, and
board-mityomapl138.c files accordingly. It also sets the SPI platform
data static, as it doesn't need to be exported.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
[nsekhar@ti.com: fixed conflicts with v3.7-rc7, converted to use pr_warn(),
modified print messages to use __func__]
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
2012-09-11 08:29:13 +08:00
|
|
|
int da8xx_register_spi_bus(int instance, unsigned num_chipselect);
|
2009-06-04 09:36:54 +08:00
|
|
|
int da8xx_register_watchdog(void);
|
2009-10-31 03:49:44 +08:00
|
|
|
int da8xx_register_usb20(unsigned mA, unsigned potpgt);
|
2009-09-26 03:14:02 +08:00
|
|
|
int da8xx_register_usb11(struct da8xx_ohci_root_hub *pdata);
|
2009-06-04 09:36:54 +08:00
|
|
|
int da8xx_register_emac(void);
|
2012-10-08 21:53:08 +08:00
|
|
|
int da8xx_register_uio_pruss(void);
|
2009-09-16 09:14:19 +08:00
|
|
|
int da8xx_register_lcdc(struct da8xx_lcdc_platform_data *pdata);
|
2009-08-14 03:16:23 +08:00
|
|
|
int da8xx_register_mmcsd0(struct davinci_mmc_config *config);
|
2010-08-27 03:40:47 +08:00
|
|
|
int da850_register_mmcsd1(struct davinci_mmc_config *config);
|
2013-04-01 19:33:36 +08:00
|
|
|
void da8xx_register_mcasp(int id, struct snd_platform_data *pdata);
|
2009-09-16 09:15:54 +08:00
|
|
|
int da8xx_register_rtc(void);
|
2010-07-20 19:16:51 +08:00
|
|
|
int da850_register_cpufreq(char *async_clk);
|
2009-10-22 17:42:14 +08:00
|
|
|
int da8xx_register_cpuidle(void);
|
2013-04-01 19:33:36 +08:00
|
|
|
void __iomem *da8xx_get_mem_ctlr(void);
|
2009-12-17 20:59:32 +08:00
|
|
|
int da850_register_pm(struct platform_device *pdev);
|
2013-04-01 19:33:36 +08:00
|
|
|
int da850_register_sata(unsigned long refclkpn);
|
|
|
|
int da850_register_vpif(void);
|
|
|
|
int da850_register_vpif_display
|
2012-01-23 17:17:24 +08:00
|
|
|
(struct vpif_display_config *display_config);
|
2013-04-01 19:33:36 +08:00
|
|
|
int da850_register_vpif_capture
|
2012-01-23 17:17:24 +08:00
|
|
|
(struct vpif_capture_config *capture_config);
|
2013-07-09 07:01:40 +08:00
|
|
|
void da8xx_restart(enum reboot_mode mode, const char *cmd);
|
2013-03-29 09:41:46 +08:00
|
|
|
void da8xx_rproc_reserve_cma(void);
|
|
|
|
int da8xx_register_rproc(void);
|
2009-06-04 09:36:54 +08:00
|
|
|
|
|
|
|
extern struct platform_device da8xx_serial_device;
|
|
|
|
extern struct emac_platform_data da8xx_emac_pdata;
|
2009-09-16 09:14:19 +08:00
|
|
|
extern struct da8xx_lcdc_platform_data sharp_lcd035q3dg01_pdata;
|
|
|
|
extern struct da8xx_lcdc_platform_data sharp_lk043t1dg01_pdata;
|
2009-06-04 09:36:54 +08:00
|
|
|
|
2010-05-02 06:38:28 +08:00
|
|
|
|
2009-06-04 09:36:54 +08:00
|
|
|
extern const short da830_emif25_pins[];
|
|
|
|
extern const short da830_spi0_pins[];
|
|
|
|
extern const short da830_spi1_pins[];
|
|
|
|
extern const short da830_mmc_sd_pins[];
|
|
|
|
extern const short da830_uart0_pins[];
|
|
|
|
extern const short da830_uart1_pins[];
|
|
|
|
extern const short da830_uart2_pins[];
|
|
|
|
extern const short da830_usb20_pins[];
|
|
|
|
extern const short da830_usb11_pins[];
|
|
|
|
extern const short da830_uhpi_pins[];
|
|
|
|
extern const short da830_cpgmac_pins[];
|
|
|
|
extern const short da830_emif3c_pins[];
|
|
|
|
extern const short da830_mcasp0_pins[];
|
|
|
|
extern const short da830_mcasp1_pins[];
|
|
|
|
extern const short da830_mcasp2_pins[];
|
|
|
|
extern const short da830_i2c0_pins[];
|
|
|
|
extern const short da830_i2c1_pins[];
|
|
|
|
extern const short da830_lcdcntl_pins[];
|
|
|
|
extern const short da830_pwm_pins[];
|
|
|
|
extern const short da830_ecap0_pins[];
|
|
|
|
extern const short da830_ecap1_pins[];
|
|
|
|
extern const short da830_ecap2_pins[];
|
|
|
|
extern const short da830_eqep0_pins[];
|
|
|
|
extern const short da830_eqep1_pins[];
|
2012-01-23 17:17:24 +08:00
|
|
|
extern const short da850_vpif_capture_pins[];
|
|
|
|
extern const short da850_vpif_display_pins[];
|
2009-06-04 09:36:54 +08:00
|
|
|
|
2009-07-16 18:41:54 +08:00
|
|
|
extern const short da850_i2c0_pins[];
|
|
|
|
extern const short da850_i2c1_pins[];
|
2009-08-14 02:33:14 +08:00
|
|
|
extern const short da850_lcdcntl_pins[];
|
2009-07-16 18:41:54 +08:00
|
|
|
|
2009-06-04 09:36:54 +08:00
|
|
|
#endif /* __ASM_ARCH_DAVINCI_DA8XX_H */
|