mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
5a7c2f22bd
It's time to remove all ATAG support from ux500 and rely solely on Device Tree booting. This patch is part of that endeavour. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
81 lines
1.8 KiB
C
81 lines
1.8 KiB
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* License terms: GNU General Public License (GPL), version 2
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
|
#include <linux/init.h>
|
|
#include <linux/gpio.h>
|
|
#include <linux/platform_data/pinctrl-nomadik.h>
|
|
#include <linux/platform_data/dma-ste-dma40.h>
|
|
|
|
#include "devices.h"
|
|
#include "irqs.h"
|
|
#include <linux/platform_data/asoc-ux500-msp.h>
|
|
|
|
#include "ste-dma40-db8500.h"
|
|
#include "board-mop500.h"
|
|
#include "devices-db8500.h"
|
|
|
|
static struct stedma40_chan_cfg msp0_dma_rx = {
|
|
.high_priority = true,
|
|
.dir = DMA_DEV_TO_MEM,
|
|
.dev_type = DB8500_DMA_DEV31_MSP0_SLIM0_CH0,
|
|
};
|
|
|
|
static struct stedma40_chan_cfg msp0_dma_tx = {
|
|
.high_priority = true,
|
|
.dir = DMA_MEM_TO_DEV,
|
|
.dev_type = DB8500_DMA_DEV31_MSP0_SLIM0_CH0,
|
|
};
|
|
|
|
struct msp_i2s_platform_data msp0_platform_data = {
|
|
.id = MSP_I2S_0,
|
|
.msp_i2s_dma_rx = &msp0_dma_rx,
|
|
.msp_i2s_dma_tx = &msp0_dma_tx,
|
|
};
|
|
|
|
static struct stedma40_chan_cfg msp1_dma_rx = {
|
|
.high_priority = true,
|
|
.dir = DMA_DEV_TO_MEM,
|
|
.dev_type = DB8500_DMA_DEV30_MSP3,
|
|
};
|
|
|
|
static struct stedma40_chan_cfg msp1_dma_tx = {
|
|
.high_priority = true,
|
|
.dir = DMA_MEM_TO_DEV,
|
|
.dev_type = DB8500_DMA_DEV30_MSP1,
|
|
};
|
|
|
|
struct msp_i2s_platform_data msp1_platform_data = {
|
|
.id = MSP_I2S_1,
|
|
.msp_i2s_dma_rx = NULL,
|
|
.msp_i2s_dma_tx = &msp1_dma_tx,
|
|
};
|
|
|
|
static struct stedma40_chan_cfg msp2_dma_rx = {
|
|
.high_priority = true,
|
|
.dir = DMA_DEV_TO_MEM,
|
|
.dev_type = DB8500_DMA_DEV14_MSP2,
|
|
};
|
|
|
|
static struct stedma40_chan_cfg msp2_dma_tx = {
|
|
.high_priority = true,
|
|
.dir = DMA_MEM_TO_DEV,
|
|
.dev_type = DB8500_DMA_DEV14_MSP2,
|
|
.use_fixed_channel = true,
|
|
.phy_channel = 1,
|
|
};
|
|
|
|
struct msp_i2s_platform_data msp2_platform_data = {
|
|
.id = MSP_I2S_2,
|
|
.msp_i2s_dma_rx = &msp2_dma_rx,
|
|
.msp_i2s_dma_tx = &msp2_dma_tx,
|
|
};
|
|
|
|
struct msp_i2s_platform_data msp3_platform_data = {
|
|
.id = MSP_I2S_3,
|
|
.msp_i2s_dma_rx = &msp1_dma_rx,
|
|
.msp_i2s_dma_tx = NULL,
|
|
};
|