2009-06-04 05:36:54 +04:00
/*
* DA8XX / OMAP L1XX platform device data
*
* Copyright ( c ) 2007 - 2009 , MontaVista Software , Inc . < source @ mvista . com >
* Derived from code that was :
* Copyright ( C ) 2006 Komal Shah < komal_shah802003 @ yahoo . com >
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*/
# include <linux/init.h>
2016-10-26 06:06:48 +03:00
# include <linux/platform_data/syscon.h>
2009-06-04 05:36:54 +04:00
# include <linux/platform_device.h>
2013-03-29 05:41:46 +04:00
# include <linux/dma-contiguous.h>
2009-06-04 05:36:54 +04:00
# include <linux/serial_8250.h>
2011-07-06 10:01:23 +04:00
# include <linux/ahci_platform.h>
# include <linux/clk.h>
2013-07-09 03:01:40 +04:00
# include <linux/reboot.h>
2016-02-02 15:43:13 +03:00
# include <linux/dmaengine.h>
2009-06-04 05:36:54 +04:00
# include <mach/cputype.h>
# include <mach/common.h>
# include <mach/time.h>
# include <mach/da8xx.h>
2017-01-30 13:02:03 +03:00
# include <mach/clock.h>
2015-01-30 12:45:33 +03:00
# include "cpuidle.h"
# include "sram.h"
2009-06-04 05:36:54 +04:00
# include "clock.h"
2012-08-27 17:26:41 +04:00
# include "asp.h"
2009-06-04 05:36:54 +04:00
# define DA8XX_TPCC_BASE 0x01c00000
# define DA8XX_TPTC0_BASE 0x01c08000
# define DA8XX_TPTC1_BASE 0x01c08400
# define DA8XX_WDOG_BASE 0x01c21000 /* DA8XX_TIMER64P1_BASE */
# define DA8XX_I2C0_BASE 0x01c22000
2011-04-06 21:29:24 +04:00
# define DA8XX_RTC_BASE 0x01c23000
2012-10-08 17:53:08 +04:00
# define DA8XX_PRUSS_MEM_BASE 0x01c30000
2011-04-06 21:29:24 +04:00
# define DA8XX_MMCSD0_BASE 0x01c40000
# define DA8XX_SPI0_BASE 0x01c41000
# define DA830_SPI1_BASE 0x01e12000
# define DA8XX_LCD_CNTRL_BASE 0x01e13000
2011-07-06 10:01:23 +04:00
# define DA850_SATA_BASE 0x01e18000
2011-04-06 21:29:24 +04:00
# define DA850_MMCSD1_BASE 0x01e1b000
2009-06-04 05:36:54 +04:00
# define DA8XX_EMAC_CPPI_PORT_BASE 0x01e20000
# define DA8XX_EMAC_CPGMACSS_BASE 0x01e22000
# define DA8XX_EMAC_CPGMAC_BASE 0x01e23000
# define DA8XX_EMAC_MDIO_BASE 0x01e24000
# define DA8XX_I2C1_BASE 0x01e28000
2011-04-06 21:29:24 +04:00
# define DA850_TPCC1_BASE 0x01e30000
# define DA850_TPTC2_BASE 0x01e38000
2011-04-06 21:17:21 +04:00
# define DA850_SPI1_BASE 0x01f0e000
2011-04-06 21:29:24 +04:00
# define DA8XX_DDR2_CTL_BASE 0xb0000000
2009-06-04 05:36:54 +04:00
# define DA8XX_EMAC_CTRL_REG_OFFSET 0x3000
# define DA8XX_EMAC_MOD_REG_OFFSET 0x2000
# define DA8XX_EMAC_RAM_OFFSET 0x0000
# define DA8XX_EMAC_CTRL_RAM_SIZE SZ_8K
2009-11-16 14:51:32 +03:00
void __iomem * da8xx_syscfg0_base ;
void __iomem * da8xx_syscfg1_base ;
2009-08-31 14:17:59 +04:00
2013-06-19 13:15:38 +04:00
static struct plat_serial8250_port da8xx_serial0_pdata [ ] = {
2009-06-04 05:36:54 +04:00
{
. mapbase = DA8XX_UART0_BASE ,
. irq = IRQ_DA8XX_UARTINT0 ,
. flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
UPF_IOREMAP ,
. iotype = UPIO_MEM ,
. regshift = 2 ,
} ,
2013-06-19 13:15:38 +04:00
{
. flags = 0 ,
}
} ;
static struct plat_serial8250_port da8xx_serial1_pdata [ ] = {
2009-06-04 05:36:54 +04:00
{
. mapbase = DA8XX_UART1_BASE ,
. irq = IRQ_DA8XX_UARTINT1 ,
. flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
UPF_IOREMAP ,
. iotype = UPIO_MEM ,
. regshift = 2 ,
} ,
2013-06-19 13:15:38 +04:00
{
. flags = 0 ,
}
} ;
static struct plat_serial8250_port da8xx_serial2_pdata [ ] = {
2009-06-04 05:36:54 +04:00
{
. mapbase = DA8XX_UART2_BASE ,
. irq = IRQ_DA8XX_UARTINT2 ,
. flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
UPF_IOREMAP ,
. iotype = UPIO_MEM ,
. regshift = 2 ,
} ,
{
. flags = 0 ,
2013-06-19 13:15:38 +04:00
}
2009-06-04 05:36:54 +04:00
} ;
2013-06-19 13:15:38 +04:00
struct platform_device da8xx_serial_device [ ] = {
{
. name = " serial8250 " ,
. id = PLAT8250_DEV_PLATFORM ,
. dev = {
. platform_data = da8xx_serial0_pdata ,
}
} ,
{
. name = " serial8250 " ,
. id = PLAT8250_DEV_PLATFORM1 ,
. dev = {
. platform_data = da8xx_serial1_pdata ,
}
2009-06-04 05:36:54 +04:00
} ,
2013-06-19 13:15:38 +04:00
{
. name = " serial8250 " ,
. id = PLAT8250_DEV_PLATFORM2 ,
. dev = {
. platform_data = da8xx_serial2_pdata ,
}
} ,
{
}
2009-06-04 05:36:54 +04:00
} ;
2013-06-21 01:06:38 +04:00
static s8 da8xx_queue_priority_mapping [ ] [ 2 ] = {
2009-06-04 05:36:54 +04:00
/* {event queue no, Priority} */
{ 0 , 3 } ,
{ 1 , 7 } ,
{ - 1 , - 1 }
} ;
2013-06-21 01:06:38 +04:00
static s8 da850_queue_priority_mapping [ ] [ 2 ] = {
2010-01-06 15:00:06 +03:00
/* {event queue no, Priority} */
{ 0 , 3 } ,
{ - 1 , - 1 }
} ;
2015-10-14 14:42:46 +03:00
static struct edma_soc_info da8xx_edma0_pdata = {
2010-06-29 10:05:12 +04:00
. queue_priority_mapping = da8xx_queue_priority_mapping ,
2011-07-10 17:14:35 +04:00
. default_queue = EVENTQ_1 ,
2010-06-29 10:05:12 +04:00
} ;
2015-10-14 14:42:46 +03:00
static struct edma_soc_info da850_edma1_pdata = {
. queue_priority_mapping = da850_queue_priority_mapping ,
. default_queue = EVENTQ_0 ,
2009-06-04 05:36:54 +04:00
} ;
2015-10-14 14:42:46 +03:00
static struct resource da8xx_edma0_resources [ ] = {
2010-01-06 15:00:06 +03:00
{
2015-10-14 14:42:46 +03:00
. name = " edma3_cc " ,
2009-06-04 05:36:54 +04:00
. start = DA8XX_TPCC_BASE ,
. end = DA8XX_TPCC_BASE + SZ_32K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_tc0 " ,
2009-06-04 05:36:54 +04:00
. start = DA8XX_TPTC0_BASE ,
. end = DA8XX_TPTC0_BASE + SZ_1K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_tc1 " ,
2009-06-04 05:36:54 +04:00
. start = DA8XX_TPTC1_BASE ,
. end = DA8XX_TPTC1_BASE + SZ_1K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_ccint " ,
2009-07-10 14:28:52 +04:00
. start = IRQ_DA8XX_CCINT0 ,
2009-06-04 05:36:54 +04:00
. flags = IORESOURCE_IRQ ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_ccerrint " ,
2009-06-04 05:36:54 +04:00
. start = IRQ_DA8XX_CCERRINT ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
2015-10-14 14:42:46 +03:00
static struct resource da850_edma1_resources [ ] = {
2010-01-06 15:00:06 +03:00
{
2015-10-14 14:42:46 +03:00
. name = " edma3_cc " ,
2010-01-06 15:00:06 +03:00
. start = DA850_TPCC1_BASE ,
. end = DA850_TPCC1_BASE + SZ_32K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_tc0 " ,
2010-01-06 15:00:06 +03:00
. start = DA850_TPTC2_BASE ,
. end = DA850_TPTC2_BASE + SZ_1K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_ccint " ,
2010-01-06 15:00:06 +03:00
. start = IRQ_DA850_CCINT1 ,
. flags = IORESOURCE_IRQ ,
} ,
{
2015-10-14 14:42:46 +03:00
. name = " edma3_ccerrint " ,
2010-01-06 15:00:06 +03:00
. start = IRQ_DA850_CCERRINT1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
2015-10-14 14:42:51 +03:00
static const struct platform_device_info da8xx_edma0_device __initconst = {
2009-06-04 05:36:54 +04:00
. name = " edma " ,
2015-10-14 14:42:46 +03:00
. id = 0 ,
2015-10-14 14:42:52 +03:00
. dma_mask = DMA_BIT_MASK ( 32 ) ,
2015-10-14 14:42:51 +03:00
. res = da8xx_edma0_resources ,
. num_res = ARRAY_SIZE ( da8xx_edma0_resources ) ,
. data = & da8xx_edma0_pdata ,
. size_data = sizeof ( da8xx_edma0_pdata ) ,
2010-01-06 15:00:06 +03:00
} ;
2015-10-14 14:42:51 +03:00
static const struct platform_device_info da850_edma1_device __initconst = {
2010-01-06 15:00:06 +03:00
. name = " edma " ,
2015-10-14 14:42:46 +03:00
. id = 1 ,
2015-10-14 14:42:52 +03:00
. dma_mask = DMA_BIT_MASK ( 32 ) ,
2015-10-14 14:42:51 +03:00
. res = da850_edma1_resources ,
. num_res = ARRAY_SIZE ( da850_edma1_resources ) ,
. data = & da850_edma1_pdata ,
. size_data = sizeof ( da850_edma1_pdata ) ,
2009-06-04 05:36:54 +04:00
} ;
2016-02-02 15:43:13 +03:00
static const struct dma_slave_map da830_edma_map [ ] = {
{ " davinci-mcasp.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 0 ) } ,
{ " davinci-mcasp.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 1 ) } ,
{ " davinci-mcasp.1 " , " rx " , EDMA_FILTER_PARAM ( 0 , 2 ) } ,
{ " davinci-mcasp.1 " , " tx " , EDMA_FILTER_PARAM ( 0 , 3 ) } ,
{ " davinci-mcasp.2 " , " rx " , EDMA_FILTER_PARAM ( 0 , 4 ) } ,
{ " davinci-mcasp.2 " , " tx " , EDMA_FILTER_PARAM ( 0 , 5 ) } ,
{ " spi_davinci.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 14 ) } ,
{ " spi_davinci.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 15 ) } ,
{ " da830-mmc.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 16 ) } ,
{ " da830-mmc.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 17 ) } ,
{ " spi_davinci.1 " , " rx " , EDMA_FILTER_PARAM ( 0 , 18 ) } ,
{ " spi_davinci.1 " , " tx " , EDMA_FILTER_PARAM ( 0 , 19 ) } ,
} ;
2010-06-29 10:05:14 +04:00
int __init da830_register_edma ( struct edma_rsv_info * rsv )
2009-06-04 05:36:54 +04:00
{
2015-10-14 14:42:51 +03:00
struct platform_device * edma_pdev ;
2015-10-14 14:42:46 +03:00
da8xx_edma0_pdata . rsv = rsv ;
2010-01-06 15:00:06 +03:00
2016-02-02 15:43:13 +03:00
da8xx_edma0_pdata . slave_map = da830_edma_map ;
da8xx_edma0_pdata . slavecnt = ARRAY_SIZE ( da830_edma_map ) ;
2015-10-14 14:42:51 +03:00
edma_pdev = platform_device_register_full ( & da8xx_edma0_device ) ;
return IS_ERR ( edma_pdev ) ? PTR_ERR ( edma_pdev ) : 0 ;
2010-06-29 10:05:14 +04:00
}
2016-02-02 15:43:13 +03:00
static const struct dma_slave_map da850_edma0_map [ ] = {
{ " davinci-mcasp.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 0 ) } ,
{ " davinci-mcasp.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 1 ) } ,
{ " davinci-mcbsp.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 2 ) } ,
{ " davinci-mcbsp.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 3 ) } ,
{ " davinci-mcbsp.1 " , " rx " , EDMA_FILTER_PARAM ( 0 , 4 ) } ,
{ " davinci-mcbsp.1 " , " tx " , EDMA_FILTER_PARAM ( 0 , 5 ) } ,
{ " spi_davinci.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 14 ) } ,
{ " spi_davinci.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 15 ) } ,
{ " da830-mmc.0 " , " rx " , EDMA_FILTER_PARAM ( 0 , 16 ) } ,
{ " da830-mmc.0 " , " tx " , EDMA_FILTER_PARAM ( 0 , 17 ) } ,
{ " spi_davinci.1 " , " rx " , EDMA_FILTER_PARAM ( 0 , 18 ) } ,
{ " spi_davinci.1 " , " tx " , EDMA_FILTER_PARAM ( 0 , 19 ) } ,
} ;
static const struct dma_slave_map da850_edma1_map [ ] = {
{ " da830-mmc.1 " , " rx " , EDMA_FILTER_PARAM ( 1 , 28 ) } ,
{ " da830-mmc.1 " , " tx " , EDMA_FILTER_PARAM ( 1 , 29 ) } ,
} ;
2010-06-29 10:05:14 +04:00
int __init da850_register_edma ( struct edma_rsv_info * rsv [ 2 ] )
{
2015-10-14 14:42:51 +03:00
struct platform_device * edma_pdev ;
2015-10-14 14:42:46 +03:00
2010-06-29 10:05:14 +04:00
if ( rsv ) {
2015-10-14 14:42:46 +03:00
da8xx_edma0_pdata . rsv = rsv [ 0 ] ;
da850_edma1_pdata . rsv = rsv [ 1 ] ;
2010-06-29 10:05:14 +04:00
}
2010-01-06 15:00:06 +03:00
2016-02-02 15:43:13 +03:00
da8xx_edma0_pdata . slave_map = da850_edma0_map ;
da8xx_edma0_pdata . slavecnt = ARRAY_SIZE ( da850_edma0_map ) ;
2015-10-14 14:42:51 +03:00
edma_pdev = platform_device_register_full ( & da8xx_edma0_device ) ;
if ( IS_ERR ( edma_pdev ) ) {
2015-10-14 14:42:46 +03:00
pr_warn ( " %s: Failed to register eDMA0 \n " , __func__ ) ;
2015-10-14 14:42:51 +03:00
return PTR_ERR ( edma_pdev ) ;
2015-10-14 14:42:46 +03:00
}
2016-02-02 15:43:13 +03:00
da850_edma1_pdata . slave_map = da850_edma1_map ;
da850_edma1_pdata . slavecnt = ARRAY_SIZE ( da850_edma1_map ) ;
2015-10-14 14:42:51 +03:00
edma_pdev = platform_device_register_full ( & da850_edma1_device ) ;
return IS_ERR ( edma_pdev ) ? PTR_ERR ( edma_pdev ) : 0 ;
2009-06-04 05:36:54 +04:00
}
static struct resource da8xx_i2c_resources0 [ ] = {
{
. start = DA8XX_I2C0_BASE ,
. end = DA8XX_I2C0_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = IRQ_DA8XX_I2CINT0 ,
. end = IRQ_DA8XX_I2CINT0 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_i2c_device0 = {
. name = " i2c_davinci " ,
. id = 1 ,
. num_resources = ARRAY_SIZE ( da8xx_i2c_resources0 ) ,
. resource = da8xx_i2c_resources0 ,
} ;
static struct resource da8xx_i2c_resources1 [ ] = {
{
. start = DA8XX_I2C1_BASE ,
. end = DA8XX_I2C1_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = IRQ_DA8XX_I2CINT1 ,
. end = IRQ_DA8XX_I2CINT1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_i2c_device1 = {
. name = " i2c_davinci " ,
. id = 2 ,
. num_resources = ARRAY_SIZE ( da8xx_i2c_resources1 ) ,
. resource = da8xx_i2c_resources1 ,
} ;
int __init da8xx_register_i2c ( int instance ,
struct davinci_i2c_platform_data * pdata )
{
struct platform_device * pdev ;
if ( instance = = 0 )
pdev = & da8xx_i2c_device0 ;
else if ( instance = = 1 )
pdev = & da8xx_i2c_device1 ;
else
return - EINVAL ;
pdev - > dev . platform_data = pdata ;
return platform_device_register ( pdev ) ;
}
static struct resource da8xx_watchdog_resources [ ] = {
{
. start = DA8XX_WDOG_BASE ,
. end = DA8XX_WDOG_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
} ;
2013-02-06 08:00:04 +04:00
static struct platform_device da8xx_wdt_device = {
2013-11-27 17:31:53 +04:00
. name = " davinci-wdt " ,
2009-06-04 05:36:54 +04:00
. id = - 1 ,
. num_resources = ARRAY_SIZE ( da8xx_watchdog_resources ) ,
. resource = da8xx_watchdog_resources ,
} ;
2013-07-09 03:01:40 +04:00
void da8xx_restart ( enum reboot_mode mode , const char * cmd )
2011-12-05 14:29:46 +04:00
{
2013-02-06 08:00:04 +04:00
struct device * dev ;
2013-11-27 17:31:53 +04:00
dev = bus_find_device_by_name ( & platform_bus_type , NULL , " davinci-wdt " ) ;
2013-02-06 08:00:04 +04:00
if ( ! dev ) {
pr_err ( " %s: failed to find watchdog device \n " , __func__ ) ;
return ;
}
davinci_watchdog_reset ( to_platform_device ( dev ) ) ;
2011-12-05 14:29:46 +04:00
}
2009-06-04 05:36:54 +04:00
int __init da8xx_register_watchdog ( void )
{
2010-05-02 02:38:28 +04:00
return platform_device_register ( & da8xx_wdt_device ) ;
2009-06-04 05:36:54 +04:00
}
static struct resource da8xx_emac_resources [ ] = {
{
. start = DA8XX_EMAC_CPPI_PORT_BASE ,
2010-09-15 18:11:22 +04:00
. end = DA8XX_EMAC_CPPI_PORT_BASE + SZ_16K - 1 ,
2009-06-04 05:36:54 +04:00
. flags = IORESOURCE_MEM ,
} ,
{
. start = IRQ_DA8XX_C0_RX_THRESH_PULSE ,
. end = IRQ_DA8XX_C0_RX_THRESH_PULSE ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_C0_RX_PULSE ,
. end = IRQ_DA8XX_C0_RX_PULSE ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_C0_TX_PULSE ,
. end = IRQ_DA8XX_C0_TX_PULSE ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_C0_MISC_PULSE ,
. end = IRQ_DA8XX_C0_MISC_PULSE ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
struct emac_platform_data da8xx_emac_pdata = {
. ctrl_reg_offset = DA8XX_EMAC_CTRL_REG_OFFSET ,
. ctrl_mod_reg_offset = DA8XX_EMAC_MOD_REG_OFFSET ,
. ctrl_ram_offset = DA8XX_EMAC_RAM_OFFSET ,
. ctrl_ram_size = DA8XX_EMAC_CTRL_RAM_SIZE ,
. version = EMAC_VERSION_2 ,
} ;
static struct platform_device da8xx_emac_device = {
. name = " davinci_emac " ,
. id = 1 ,
. dev = {
. platform_data = & da8xx_emac_pdata ,
} ,
. num_resources = ARRAY_SIZE ( da8xx_emac_resources ) ,
. resource = da8xx_emac_resources ,
} ;
2010-09-15 18:11:22 +04:00
static struct resource da8xx_mdio_resources [ ] = {
{
. start = DA8XX_EMAC_MDIO_BASE ,
. end = DA8XX_EMAC_MDIO_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
} ;
static struct platform_device da8xx_mdio_device = {
. name = " davinci_mdio " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( da8xx_mdio_resources ) ,
. resource = da8xx_mdio_resources ,
} ;
2009-08-29 02:02:54 +04:00
int __init da8xx_register_emac ( void )
{
2010-09-15 18:11:22 +04:00
int ret ;
ret = platform_device_register ( & da8xx_mdio_device ) ;
if ( ret < 0 )
return ret ;
2013-08-15 10:01:33 +04:00
return platform_device_register ( & da8xx_emac_device ) ;
2009-08-29 02:02:54 +04:00
}
2009-08-12 01:01:59 +04:00
static struct resource da830_mcasp1_resources [ ] = {
{
2013-11-13 18:48:17 +04:00
. name = " mpu " ,
2009-08-12 01:01:59 +04:00
. start = DAVINCI_DA830_MCASP1_REG_BASE ,
. end = DAVINCI_DA830_MCASP1_REG_BASE + ( SZ_1K * 12 ) - 1 ,
. flags = IORESOURCE_MEM ,
} ,
/* TX event */
{
2015-03-12 11:06:25 +03:00
. name = " tx " ,
2009-08-12 01:01:59 +04:00
. start = DAVINCI_DA830_DMA_MCASP1_AXEVT ,
. end = DAVINCI_DA830_DMA_MCASP1_AXEVT ,
. flags = IORESOURCE_DMA ,
} ,
/* RX event */
{
2015-03-12 11:06:25 +03:00
. name = " rx " ,
2009-08-12 01:01:59 +04:00
. start = DAVINCI_DA830_DMA_MCASP1_AREVT ,
. end = DAVINCI_DA830_DMA_MCASP1_AREVT ,
. flags = IORESOURCE_DMA ,
} ,
2015-03-12 11:06:26 +03:00
{
. name = " common " ,
. start = IRQ_DA8XX_MCASPINT ,
. flags = IORESOURCE_IRQ ,
} ,
2009-08-12 01:01:59 +04:00
} ;
static struct platform_device da830_mcasp1_device = {
. name = " davinci-mcasp " ,
. id = 1 ,
. num_resources = ARRAY_SIZE ( da830_mcasp1_resources ) ,
. resource = da830_mcasp1_resources ,
} ;
2015-03-12 11:06:28 +03:00
static struct resource da830_mcasp2_resources [ ] = {
{
. name = " mpu " ,
. start = DAVINCI_DA830_MCASP2_REG_BASE ,
. end = DAVINCI_DA830_MCASP2_REG_BASE + ( SZ_1K * 12 ) - 1 ,
. flags = IORESOURCE_MEM ,
} ,
/* TX event */
{
. name = " tx " ,
. start = DAVINCI_DA830_DMA_MCASP2_AXEVT ,
. end = DAVINCI_DA830_DMA_MCASP2_AXEVT ,
. flags = IORESOURCE_DMA ,
} ,
/* RX event */
{
. name = " rx " ,
. start = DAVINCI_DA830_DMA_MCASP2_AREVT ,
. end = DAVINCI_DA830_DMA_MCASP2_AREVT ,
. flags = IORESOURCE_DMA ,
} ,
{
. name = " common " ,
. start = IRQ_DA8XX_MCASPINT ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da830_mcasp2_device = {
. name = " davinci-mcasp " ,
. id = 2 ,
. num_resources = ARRAY_SIZE ( da830_mcasp2_resources ) ,
. resource = da830_mcasp2_resources ,
} ;
2009-08-12 01:03:25 +04:00
static struct resource da850_mcasp_resources [ ] = {
{
2013-11-13 18:48:17 +04:00
. name = " mpu " ,
2009-08-12 01:03:25 +04:00
. start = DAVINCI_DA8XX_MCASP0_REG_BASE ,
. end = DAVINCI_DA8XX_MCASP0_REG_BASE + ( SZ_1K * 12 ) - 1 ,
. flags = IORESOURCE_MEM ,
} ,
/* TX event */
{
2015-03-12 11:06:25 +03:00
. name = " tx " ,
2009-08-12 01:03:25 +04:00
. start = DAVINCI_DA8XX_DMA_MCASP0_AXEVT ,
. end = DAVINCI_DA8XX_DMA_MCASP0_AXEVT ,
. flags = IORESOURCE_DMA ,
} ,
/* RX event */
{
2015-03-12 11:06:25 +03:00
. name = " rx " ,
2009-08-12 01:03:25 +04:00
. start = DAVINCI_DA8XX_DMA_MCASP0_AREVT ,
. end = DAVINCI_DA8XX_DMA_MCASP0_AREVT ,
. flags = IORESOURCE_DMA ,
} ,
2015-03-12 11:06:26 +03:00
{
. name = " common " ,
. start = IRQ_DA8XX_MCASPINT ,
. flags = IORESOURCE_IRQ ,
} ,
2009-08-12 01:03:25 +04:00
} ;
static struct platform_device da850_mcasp_device = {
. name = " davinci-mcasp " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( da850_mcasp_resources ) ,
. resource = da850_mcasp_resources ,
} ;
2009-08-29 02:05:02 +04:00
void __init da8xx_register_mcasp ( int id , struct snd_platform_data * pdata )
2009-08-12 01:01:59 +04:00
{
2015-03-12 11:06:27 +03:00
struct platform_device * pdev ;
switch ( id ) {
case 0 :
/* Valid for DA830/OMAP-L137 or DA850/OMAP-L138 */
pdev = & da850_mcasp_device ;
break ;
case 1 :
/* Valid for DA830/OMAP-L137 only */
if ( ! cpu_is_davinci_da830 ( ) )
return ;
pdev = & da830_mcasp1_device ;
break ;
2015-03-12 11:06:28 +03:00
case 2 :
/* Valid for DA830/OMAP-L137 only */
if ( ! cpu_is_davinci_da830 ( ) )
return ;
pdev = & da830_mcasp2_device ;
break ;
2015-03-12 11:06:27 +03:00
default :
return ;
2009-08-12 01:01:59 +04:00
}
2015-03-12 11:06:27 +03:00
pdev - > dev . platform_data = pdata ;
platform_device_register ( pdev ) ;
2009-08-12 01:01:59 +04:00
}
2009-08-13 22:33:14 +04:00
2012-10-08 17:53:08 +04:00
static struct resource da8xx_pruss_resources [ ] = {
{
. start = DA8XX_PRUSS_MEM_BASE ,
. end = DA8XX_PRUSS_MEM_BASE + 0xFFFF ,
. flags = IORESOURCE_MEM ,
} ,
{
. start = IRQ_DA8XX_EVTOUT0 ,
. end = IRQ_DA8XX_EVTOUT0 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT1 ,
. end = IRQ_DA8XX_EVTOUT1 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT2 ,
. end = IRQ_DA8XX_EVTOUT2 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT3 ,
. end = IRQ_DA8XX_EVTOUT3 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT4 ,
. end = IRQ_DA8XX_EVTOUT4 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT5 ,
. end = IRQ_DA8XX_EVTOUT5 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT6 ,
. end = IRQ_DA8XX_EVTOUT6 ,
. flags = IORESOURCE_IRQ ,
} ,
{
. start = IRQ_DA8XX_EVTOUT7 ,
. end = IRQ_DA8XX_EVTOUT7 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct uio_pruss_pdata da8xx_uio_pruss_pdata = {
. pintc_base = 0x4000 ,
} ;
static struct platform_device da8xx_uio_pruss_dev = {
. name = " pruss_uio " ,
. id = - 1 ,
. num_resources = ARRAY_SIZE ( da8xx_pruss_resources ) ,
. resource = da8xx_pruss_resources ,
. dev = {
. coherent_dma_mask = DMA_BIT_MASK ( 32 ) ,
. platform_data = & da8xx_uio_pruss_pdata ,
}
} ;
int __init da8xx_register_uio_pruss ( void )
{
da8xx_uio_pruss_pdata . sram_pool = sram_get_gen_pool ( ) ;
return platform_device_register ( & da8xx_uio_pruss_dev ) ;
}
2009-08-13 22:33:14 +04:00
static struct lcd_ctrl_config lcd_cfg = {
2012-10-16 08:53:16 +04:00
. panel_shade = COLOR_ACTIVE ,
2009-08-13 22:33:14 +04:00
. bpp = 16 ,
} ;
2009-09-16 05:14:19 +04:00
struct da8xx_lcdc_platform_data sharp_lcd035q3dg01_pdata = {
. manu_name = " sharp " ,
. controller_data = & lcd_cfg ,
. type = " Sharp_LCD035Q3DG01 " ,
} ;
struct da8xx_lcdc_platform_data sharp_lk043t1dg01_pdata = {
. manu_name = " sharp " ,
. controller_data = & lcd_cfg ,
. type = " Sharp_LK043T1DG01 " ,
2009-08-13 22:33:14 +04:00
} ;
static struct resource da8xx_lcdc_resources [ ] = {
[ 0 ] = { /* registers */
. start = DA8XX_LCD_CNTRL_BASE ,
. end = DA8XX_LCD_CNTRL_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
[ 1 ] = { /* interrupt */
. start = IRQ_DA8XX_LCDINT ,
. end = IRQ_DA8XX_LCDINT ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
2009-09-16 05:14:19 +04:00
static struct platform_device da8xx_lcdc_device = {
2009-08-13 22:33:14 +04:00
. name = " da8xx_lcdc " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( da8xx_lcdc_resources ) ,
. resource = da8xx_lcdc_resources ,
} ;
2009-09-16 05:14:19 +04:00
int __init da8xx_register_lcdc ( struct da8xx_lcdc_platform_data * pdata )
2009-08-13 22:33:14 +04:00
{
2009-09-16 05:14:19 +04:00
da8xx_lcdc_device . dev . platform_data = pdata ;
return platform_device_register ( & da8xx_lcdc_device ) ;
2009-08-13 22:33:14 +04:00
}
2009-08-13 23:16:23 +04:00
2013-08-18 09:18:59 +04:00
static struct resource da8xx_gpio_resources [ ] = {
{ /* registers */
. start = DA8XX_GPIO_BASE ,
. end = DA8XX_GPIO_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* interrupt */
. start = IRQ_DA8XX_GPIO0 ,
. end = IRQ_DA8XX_GPIO8 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_gpio_device = {
. name = " davinci_gpio " ,
. id = - 1 ,
. num_resources = ARRAY_SIZE ( da8xx_gpio_resources ) ,
. resource = da8xx_gpio_resources ,
} ;
int __init da8xx_register_gpio ( void * pdata )
{
da8xx_gpio_device . dev . platform_data = pdata ;
return platform_device_register ( & da8xx_gpio_device ) ;
}
2009-08-13 23:16:23 +04:00
static struct resource da8xx_mmcsd0_resources [ ] = {
{ /* registers */
. start = DA8XX_MMCSD0_BASE ,
. end = DA8XX_MMCSD0_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* interrupt */
. start = IRQ_DA8XX_MMCSDINT0 ,
. end = IRQ_DA8XX_MMCSDINT0 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_mmcsd0_device = {
2013-03-28 17:11:59 +04:00
. name = " da830-mmc " ,
2009-08-13 23:16:23 +04:00
. id = 0 ,
. num_resources = ARRAY_SIZE ( da8xx_mmcsd0_resources ) ,
. resource = da8xx_mmcsd0_resources ,
} ;
int __init da8xx_register_mmcsd0 ( struct davinci_mmc_config * config )
{
da8xx_mmcsd0_device . dev . platform_data = config ;
return platform_device_register ( & da8xx_mmcsd0_device ) ;
}
2009-09-16 05:15:54 +04:00
2010-08-26 23:40:47 +04:00
# ifdef CONFIG_ARCH_DAVINCI_DA850
static struct resource da850_mmcsd1_resources [ ] = {
{ /* registers */
. start = DA850_MMCSD1_BASE ,
. end = DA850_MMCSD1_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* interrupt */
. start = IRQ_DA850_MMCSDINT0_1 ,
. end = IRQ_DA850_MMCSDINT0_1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da850_mmcsd1_device = {
2013-03-28 17:11:59 +04:00
. name = " da830-mmc " ,
2010-08-26 23:40:47 +04:00
. id = 1 ,
. num_resources = ARRAY_SIZE ( da850_mmcsd1_resources ) ,
. resource = da850_mmcsd1_resources ,
} ;
int __init da850_register_mmcsd1 ( struct davinci_mmc_config * config )
{
da850_mmcsd1_device . dev . platform_data = config ;
return platform_device_register ( & da850_mmcsd1_device ) ;
}
# endif
2013-03-29 05:41:46 +04:00
static struct resource da8xx_rproc_resources [ ] = {
{ /* DSP boot address */
. start = DA8XX_SYSCFG0_BASE + DA8XX_HOST1CFG_REG ,
. end = DA8XX_SYSCFG0_BASE + DA8XX_HOST1CFG_REG + 3 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* DSP interrupt registers */
. start = DA8XX_SYSCFG0_BASE + DA8XX_CHIPSIG_REG ,
. end = DA8XX_SYSCFG0_BASE + DA8XX_CHIPSIG_REG + 7 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* dsp irq */
. start = IRQ_DA8XX_CHIPINT0 ,
. end = IRQ_DA8XX_CHIPINT0 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_dsp = {
. name = " davinci-rproc " ,
. dev = {
. coherent_dma_mask = DMA_BIT_MASK ( 32 ) ,
} ,
. num_resources = ARRAY_SIZE ( da8xx_rproc_resources ) ,
. resource = da8xx_rproc_resources ,
} ;
# if IS_ENABLED(CONFIG_DA8XX_REMOTEPROC)
static phys_addr_t rproc_base __initdata ;
static unsigned long rproc_size __initdata ;
static int __init early_rproc_mem ( char * p )
{
char * endp ;
if ( p = = NULL )
return 0 ;
rproc_size = memparse ( p , & endp ) ;
if ( * endp = = ' @ ' )
rproc_base = memparse ( endp + 1 , NULL ) ;
return 0 ;
}
early_param ( " rproc_mem " , early_rproc_mem ) ;
void __init da8xx_rproc_reserve_cma ( void )
{
int ret ;
if ( ! rproc_base | | ! rproc_size ) {
pr_err ( " %s: 'rproc_mem=nn@address' badly specified \n "
" 'nn' and 'address' must both be non-zero \n " ,
__func__ ) ;
return ;
}
pr_info ( " %s: reserving 0x%lx @ 0x%lx... \n " ,
__func__ , rproc_size , ( unsigned long ) rproc_base ) ;
ret = dma_declare_contiguous ( & da8xx_dsp . dev , rproc_size , rproc_base , 0 ) ;
if ( ret )
pr_err ( " %s: dma_declare_contiguous failed %d \n " , __func__ , ret ) ;
}
# else
void __init da8xx_rproc_reserve_cma ( void )
{
}
# endif
int __init da8xx_register_rproc ( void )
{
int ret ;
ret = platform_device_register ( & da8xx_dsp ) ;
if ( ret )
pr_err ( " %s: can't register DSP device: %d \n " , __func__ , ret ) ;
return ret ;
} ;
2009-09-16 05:15:54 +04:00
static struct resource da8xx_rtc_resources [ ] = {
{
. start = DA8XX_RTC_BASE ,
. end = DA8XX_RTC_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
{ /* timer irq */
. start = IRQ_DA8XX_RTC ,
. end = IRQ_DA8XX_RTC ,
. flags = IORESOURCE_IRQ ,
} ,
{ /* alarm irq */
. start = IRQ_DA8XX_RTC ,
. end = IRQ_DA8XX_RTC ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct platform_device da8xx_rtc_device = {
2012-12-18 04:02:13 +04:00
. name = " da830-rtc " ,
2009-09-16 05:15:54 +04:00
. id = - 1 ,
. num_resources = ARRAY_SIZE ( da8xx_rtc_resources ) ,
. resource = da8xx_rtc_resources ,
} ;
int da8xx_register_rtc ( void )
{
2013-07-03 12:47:03 +04:00
return platform_device_register ( & da8xx_rtc_device ) ;
2009-09-16 05:15:54 +04:00
}
2009-10-22 13:42:14 +04:00
2009-11-16 14:51:37 +03:00
static void __iomem * da8xx_ddr2_ctlr_base ;
void __iomem * __init da8xx_get_mem_ctlr ( void )
{
if ( da8xx_ddr2_ctlr_base )
return da8xx_ddr2_ctlr_base ;
da8xx_ddr2_ctlr_base = ioremap ( DA8XX_DDR2_CTL_BASE , SZ_32K ) ;
if ( ! da8xx_ddr2_ctlr_base )
2013-01-11 04:23:20 +04:00
pr_warn ( " %s: Unable to map DDR2 controller " , __func__ ) ;
2009-11-16 14:51:37 +03:00
return da8xx_ddr2_ctlr_base ;
}
2009-10-22 13:42:14 +04:00
static struct resource da8xx_cpuidle_resources [ ] = {
{
. start = DA8XX_DDR2_CTL_BASE ,
. end = DA8XX_DDR2_CTL_BASE + SZ_32K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
} ;
/* DA8XX devices support DDR2 power down */
static struct davinci_cpuidle_config da8xx_cpuidle_pdata = {
. ddr2_pdown = 1 ,
} ;
static struct platform_device da8xx_cpuidle_device = {
. name = " cpuidle-davinci " ,
. num_resources = ARRAY_SIZE ( da8xx_cpuidle_resources ) ,
. resource = da8xx_cpuidle_resources ,
. dev = {
. platform_data = & da8xx_cpuidle_pdata ,
} ,
} ;
int __init da8xx_register_cpuidle ( void )
{
2009-11-16 14:51:37 +03:00
da8xx_cpuidle_pdata . ddr2_ctlr_base = da8xx_get_mem_ctlr ( ) ;
2009-10-22 13:42:14 +04:00
return platform_device_register ( & da8xx_cpuidle_device ) ;
}
2011-02-24 07:48:28 +03:00
static struct resource da8xx_spi0_resources [ ] = {
[ 0 ] = {
. start = DA8XX_SPI0_BASE ,
. end = DA8XX_SPI0_BASE + SZ_4K - 1 ,
. flags = IORESOURCE_MEM ,
} ,
[ 1 ] = {
. start = IRQ_DA8XX_SPINT0 ,
. end = IRQ_DA8XX_SPINT0 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static struct resource da8xx_spi1_resources [ ] = {
[ 0 ] = {
2011-04-06 21:17:21 +04:00
. start = DA830_SPI1_BASE ,
. end = DA830_SPI1_BASE + SZ_4K - 1 ,
2011-02-24 07:48:28 +03:00
. flags = IORESOURCE_MEM ,
} ,
[ 1 ] = {
. start = IRQ_DA8XX_SPINT1 ,
. end = IRQ_DA8XX_SPINT1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
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 04:29:13 +04:00
static struct davinci_spi_platform_data da8xx_spi_pdata [ ] = {
2011-02-24 07:48:28 +03:00
[ 0 ] = {
. version = SPI_VERSION_2 ,
. intr_line = 1 ,
. dma_event_q = EVENTQ_0 ,
2015-08-12 16:26:19 +03:00
. prescaler_limit = 2 ,
2011-02-24 07:48:28 +03:00
} ,
[ 1 ] = {
. version = SPI_VERSION_2 ,
. intr_line = 1 ,
. dma_event_q = EVENTQ_0 ,
2015-08-12 16:26:19 +03:00
. prescaler_limit = 2 ,
2011-02-24 07:48:28 +03:00
} ,
} ;
static struct platform_device da8xx_spi_device [ ] = {
[ 0 ] = {
. name = " spi_davinci " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( da8xx_spi0_resources ) ,
. resource = da8xx_spi0_resources ,
. dev = {
. platform_data = & da8xx_spi_pdata [ 0 ] ,
} ,
} ,
[ 1 ] = {
. name = " spi_davinci " ,
. id = 1 ,
. num_resources = ARRAY_SIZE ( da8xx_spi1_resources ) ,
. resource = da8xx_spi1_resources ,
. dev = {
. platform_data = & da8xx_spi_pdata [ 1 ] ,
} ,
} ,
} ;
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 04:29:13 +04:00
int __init da8xx_register_spi_bus ( int instance , unsigned num_chipselect )
2011-02-24 07:48:28 +03:00
{
if ( instance < 0 | | instance > 1 )
return - EINVAL ;
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 04:29:13 +04:00
da8xx_spi_pdata [ instance ] . num_chipselect = num_chipselect ;
2011-02-24 07:48:28 +03:00
2011-04-06 21:17:21 +04:00
if ( instance = = 1 & & cpu_is_davinci_da850 ( ) ) {
da8xx_spi1_resources [ 0 ] . start = DA850_SPI1_BASE ;
da8xx_spi1_resources [ 0 ] . end = DA850_SPI1_BASE + SZ_4K - 1 ;
}
2011-02-24 07:48:28 +03:00
return platform_device_register ( & da8xx_spi_device [ instance ] ) ;
}
2011-07-06 10:01:23 +04:00
# ifdef CONFIG_ARCH_DAVINCI_DA850
2017-01-30 13:02:03 +03:00
static struct clk sata_refclk = {
. name = " sata_refclk " ,
. set_rate = davinci_simple_set_rate ,
} ;
static struct clk_lookup sata_refclk_lookup =
CLK ( " ahci_da850 " , " refclk " , & sata_refclk ) ;
int __init da850_register_sata_refclk ( int rate )
{
int ret ;
sata_refclk . rate = rate ;
ret = clk_register ( & sata_refclk ) ;
if ( ret )
return ret ;
clkdev_add ( & sata_refclk_lookup ) ;
return 0 ;
}
2011-07-06 10:01:23 +04:00
static struct resource da850_sata_resources [ ] = {
{
. start = DA850_SATA_BASE ,
. end = DA850_SATA_BASE + 0x1fff ,
. flags = IORESOURCE_MEM ,
} ,
2014-03-25 22:51:41 +04:00
{
. start = DA8XX_SYSCFG1_BASE + DA8XX_PWRDN_REG ,
. end = DA8XX_SYSCFG1_BASE + DA8XX_PWRDN_REG + 0x3 ,
. flags = IORESOURCE_MEM ,
} ,
2011-07-06 10:01:23 +04:00
{
. start = IRQ_DA850_SATAINT ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static u64 da850_sata_dmamask = DMA_BIT_MASK ( 32 ) ;
static struct platform_device da850_sata_device = {
2014-03-25 22:51:41 +04:00
. name = " ahci_da850 " ,
2011-07-06 10:01:23 +04:00
. id = - 1 ,
. dev = {
. dma_mask = & da850_sata_dmamask ,
. coherent_dma_mask = DMA_BIT_MASK ( 32 ) ,
} ,
. num_resources = ARRAY_SIZE ( da850_sata_resources ) ,
. resource = da850_sata_resources ,
} ;
int __init da850_register_sata ( unsigned long refclkpn )
{
2017-01-30 13:02:03 +03:00
int ret ;
ret = da850_register_sata_refclk ( refclkpn ) ;
if ( ret )
return ret ;
2011-07-06 10:01:23 +04:00
return platform_device_register ( & da850_sata_device ) ;
}
# endif
2016-10-26 06:06:48 +03:00
static struct syscon_platform_data da8xx_cfgchip_platform_data = {
. label = " cfgchip " ,
} ;
static struct resource da8xx_cfgchip_resources [ ] = {
{
. start = DA8XX_SYSCFG0_BASE + DA8XX_CFGCHIP0_REG ,
. end = DA8XX_SYSCFG0_BASE + DA8XX_CFGCHIP4_REG + 3 ,
. flags = IORESOURCE_MEM ,
} ,
} ;
static struct platform_device da8xx_cfgchip_device = {
. name = " syscon " ,
. id = - 1 ,
. dev = {
. platform_data = & da8xx_cfgchip_platform_data ,
} ,
. num_resources = ARRAY_SIZE ( da8xx_cfgchip_resources ) ,
. resource = da8xx_cfgchip_resources ,
} ;
int __init da8xx_register_cfgchip ( void )
{
return platform_device_register ( & da8xx_cfgchip_device ) ;
}