Marvell XOR driver cleanup and DT binding for 3.8
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEABECAAYFAlCsAccACgkQ9lPLMJjT96csOwCgp2b7yPQ6eZy/rrjlq1A1Lf4o m/cAoLhSzXqv7rkMWZEKY2hzmEzhltMi =UqJm -----END PGP SIGNATURE----- Merge tag 'marvell-xor-cleanup-dt-binding-3.8' of git://github.com/MISL-EBU-System-SW/mainline-public into mvebu/everything Marvell XOR driver cleanup and DT binding for 3.8
This commit is contained in:
commit
c9dc03ddbf
8 changed files with 367 additions and 348 deletions
40
Documentation/devicetree/bindings/dma/mv-xor.txt
Normal file
40
Documentation/devicetree/bindings/dma/mv-xor.txt
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
* Marvell XOR engines
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible: Should be "marvell,orion-xor"
|
||||||
|
- reg: Should contain registers location and length (two sets)
|
||||||
|
the first set is the low registers, the second set the high
|
||||||
|
registers for the XOR engine.
|
||||||
|
- clocks: pointer to the reference clock
|
||||||
|
|
||||||
|
The DT node must also contains sub-nodes for each XOR channel that the
|
||||||
|
XOR engine has. Those sub-nodes have the following required
|
||||||
|
properties:
|
||||||
|
- interrupts: interrupt of the XOR channel
|
||||||
|
|
||||||
|
And the following optional properties:
|
||||||
|
- dmacap,memcpy to indicate that the XOR channel is capable of memcpy operations
|
||||||
|
- dmacap,memset to indicate that the XOR channel is capable of memset operations
|
||||||
|
- dmacap,xor to indicate that the XOR channel is capable of xor operations
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
xor@d0060900 {
|
||||||
|
compatible = "marvell,orion-xor";
|
||||||
|
reg = <0xd0060900 0x100
|
||||||
|
0xd0060b00 0x100>;
|
||||||
|
clocks = <&coreclk 0>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
xor00 {
|
||||||
|
interrupts = <51>;
|
||||||
|
dmacap,memcpy;
|
||||||
|
dmacap,xor;
|
||||||
|
};
|
||||||
|
xor01 {
|
||||||
|
interrupts = <52>;
|
||||||
|
dmacap,memcpy;
|
||||||
|
dmacap,xor;
|
||||||
|
dmacap,memset;
|
||||||
|
};
|
||||||
|
};
|
|
@ -33,6 +33,7 @@
|
||||||
#include <linux/irq.h>
|
#include <linux/irq.h>
|
||||||
#include <plat/time.h>
|
#include <plat/time.h>
|
||||||
#include <linux/platform_data/usb-ehci-orion.h>
|
#include <linux/platform_data/usb-ehci-orion.h>
|
||||||
|
#include <linux/platform_data/dma-mv_xor.h>
|
||||||
#include <plat/irq.h>
|
#include <plat/irq.h>
|
||||||
#include <plat/common.h>
|
#include <plat/common.h>
|
||||||
#include <plat/addr-map.h>
|
#include <plat/addr-map.h>
|
||||||
|
@ -124,8 +125,8 @@ static void __init dove_clk_init(void)
|
||||||
orion_clkdev_add(NULL, "mv_crypto", crypto);
|
orion_clkdev_add(NULL, "mv_crypto", crypto);
|
||||||
orion_clkdev_add(NULL, "dove-ac97", ac97);
|
orion_clkdev_add(NULL, "dove-ac97", ac97);
|
||||||
orion_clkdev_add(NULL, "dove-pdma", pdma);
|
orion_clkdev_add(NULL, "dove-pdma", pdma);
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.0", xor0);
|
orion_clkdev_add(NULL, MV_XOR_NAME ".0", xor0);
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.1", xor1);
|
orion_clkdev_add(NULL, MV_XOR_NAME ".1", xor1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
@ -410,11 +411,11 @@ static void __init dove_legacy_clk_init(void)
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
|
|
||||||
clkspec.args[0] = CLOCK_GATING_BIT_XOR0;
|
clkspec.args[0] = CLOCK_GATING_BIT_XOR0;
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.0",
|
orion_clkdev_add(NULL, MV_XOR_NAME ".0",
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
|
|
||||||
clkspec.args[0] = CLOCK_GATING_BIT_XOR1;
|
clkspec.args[0] = CLOCK_GATING_BIT_XOR1;
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.1",
|
orion_clkdev_add(NULL, MV_XOR_NAME ".1",
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <asm/mach/map.h>
|
#include <asm/mach/map.h>
|
||||||
#include <mach/bridge-regs.h>
|
#include <mach/bridge-regs.h>
|
||||||
#include <linux/platform_data/usb-ehci-orion.h>
|
#include <linux/platform_data/usb-ehci-orion.h>
|
||||||
|
#include <linux/platform_data/dma-mv_xor.h>
|
||||||
#include <plat/irq.h>
|
#include <plat/irq.h>
|
||||||
#include <plat/common.h>
|
#include <plat/common.h>
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
@ -60,11 +61,11 @@ static void __init kirkwood_legacy_clk_init(void)
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
|
|
||||||
clkspec.args[0] = CGC_BIT_XOR0;
|
clkspec.args[0] = CGC_BIT_XOR0;
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.0",
|
orion_clkdev_add(NULL, MV_XOR_NAME ".0",
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
|
|
||||||
clkspec.args[0] = CGC_BIT_XOR1;
|
clkspec.args[0] = CGC_BIT_XOR1;
|
||||||
orion_clkdev_add(NULL, "mv_xor_shared.1",
|
orion_clkdev_add(NULL, MV_XOR_NAME ".1",
|
||||||
of_clk_get_from_provider(&clkspec));
|
of_clk_get_from_provider(&clkspec));
|
||||||
|
|
||||||
clkspec.args[0] = CGC_BIT_PEX1;
|
clkspec.args[0] = CGC_BIT_PEX1;
|
||||||
|
|
|
@ -260,8 +260,8 @@ void __init kirkwood_clk_init(void)
|
||||||
orion_clkdev_add(NULL, "orion_nand", runit);
|
orion_clkdev_add(NULL, "orion_nand", runit);
|
||||||
orion_clkdev_add(NULL, "mvsdio", sdio);
|
orion_clkdev_add(NULL, "mvsdio", sdio);
|
||||||
orion_clkdev_add(NULL, "mv_crypto", crypto);
|
orion_clkdev_add(NULL, "mv_crypto", crypto);
|
||||||
orion_clkdev_add(NULL, MV_XOR_SHARED_NAME ".0", xor0);
|
orion_clkdev_add(NULL, MV_XOR_NAME ".0", xor0);
|
||||||
orion_clkdev_add(NULL, MV_XOR_SHARED_NAME ".1", xor1);
|
orion_clkdev_add(NULL, MV_XOR_NAME ".1", xor1);
|
||||||
orion_clkdev_add("0", "pcie", pex0);
|
orion_clkdev_add("0", "pcie", pex0);
|
||||||
orion_clkdev_add("1", "pcie", pex1);
|
orion_clkdev_add("1", "pcie", pex1);
|
||||||
orion_clkdev_add(NULL, "kirkwood-i2s", audio);
|
orion_clkdev_add(NULL, "kirkwood-i2s", audio);
|
||||||
|
|
|
@ -606,26 +606,6 @@ void __init orion_wdt_init(void)
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
static u64 orion_xor_dmamask = DMA_BIT_MASK(32);
|
static u64 orion_xor_dmamask = DMA_BIT_MASK(32);
|
||||||
|
|
||||||
void __init orion_xor_init_channels(
|
|
||||||
struct mv_xor_platform_data *orion_xor0_data,
|
|
||||||
struct platform_device *orion_xor0_channel,
|
|
||||||
struct mv_xor_platform_data *orion_xor1_data,
|
|
||||||
struct platform_device *orion_xor1_channel)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* two engines can't do memset simultaneously, this limitation
|
|
||||||
* satisfied by removing memset support from one of the engines.
|
|
||||||
*/
|
|
||||||
dma_cap_set(DMA_MEMCPY, orion_xor0_data->cap_mask);
|
|
||||||
dma_cap_set(DMA_XOR, orion_xor0_data->cap_mask);
|
|
||||||
platform_device_register(orion_xor0_channel);
|
|
||||||
|
|
||||||
dma_cap_set(DMA_MEMCPY, orion_xor1_data->cap_mask);
|
|
||||||
dma_cap_set(DMA_MEMSET, orion_xor1_data->cap_mask);
|
|
||||||
dma_cap_set(DMA_XOR, orion_xor1_data->cap_mask);
|
|
||||||
platform_device_register(orion_xor1_channel);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* XOR0
|
* XOR0
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -636,61 +616,30 @@ static struct resource orion_xor0_shared_resources[] = {
|
||||||
}, {
|
}, {
|
||||||
.name = "xor 0 high",
|
.name = "xor 0 high",
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
|
}, {
|
||||||
|
.name = "irq channel 0",
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
}, {
|
||||||
|
.name = "irq channel 1",
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct mv_xor_channel_data orion_xor0_channels_data[2];
|
||||||
|
|
||||||
|
static struct mv_xor_platform_data orion_xor0_pdata = {
|
||||||
|
.channels = orion_xor0_channels_data,
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device orion_xor0_shared = {
|
static struct platform_device orion_xor0_shared = {
|
||||||
.name = MV_XOR_SHARED_NAME,
|
.name = MV_XOR_NAME,
|
||||||
.id = 0,
|
.id = 0,
|
||||||
.num_resources = ARRAY_SIZE(orion_xor0_shared_resources),
|
.num_resources = ARRAY_SIZE(orion_xor0_shared_resources),
|
||||||
.resource = orion_xor0_shared_resources,
|
.resource = orion_xor0_shared_resources,
|
||||||
};
|
.dev = {
|
||||||
|
.dma_mask = &orion_xor_dmamask,
|
||||||
static struct resource orion_xor00_resources[] = {
|
.coherent_dma_mask = DMA_BIT_MASK(64),
|
||||||
[0] = {
|
.platform_data = &orion_xor0_pdata,
|
||||||
.flags = IORESOURCE_IRQ,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct mv_xor_platform_data orion_xor00_data = {
|
|
||||||
.shared = &orion_xor0_shared,
|
|
||||||
.hw_id = 0,
|
|
||||||
.pool_size = PAGE_SIZE,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device orion_xor00_channel = {
|
|
||||||
.name = MV_XOR_NAME,
|
|
||||||
.id = 0,
|
|
||||||
.num_resources = ARRAY_SIZE(orion_xor00_resources),
|
|
||||||
.resource = orion_xor00_resources,
|
|
||||||
.dev = {
|
|
||||||
.dma_mask = &orion_xor_dmamask,
|
|
||||||
.coherent_dma_mask = DMA_BIT_MASK(64),
|
|
||||||
.platform_data = &orion_xor00_data,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct resource orion_xor01_resources[] = {
|
|
||||||
[0] = {
|
|
||||||
.flags = IORESOURCE_IRQ,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct mv_xor_platform_data orion_xor01_data = {
|
|
||||||
.shared = &orion_xor0_shared,
|
|
||||||
.hw_id = 1,
|
|
||||||
.pool_size = PAGE_SIZE,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device orion_xor01_channel = {
|
|
||||||
.name = MV_XOR_NAME,
|
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(orion_xor01_resources),
|
|
||||||
.resource = orion_xor01_resources,
|
|
||||||
.dev = {
|
|
||||||
.dma_mask = &orion_xor_dmamask,
|
|
||||||
.coherent_dma_mask = DMA_BIT_MASK(64),
|
|
||||||
.platform_data = &orion_xor01_data,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -704,15 +653,23 @@ void __init orion_xor0_init(unsigned long mapbase_low,
|
||||||
orion_xor0_shared_resources[1].start = mapbase_high;
|
orion_xor0_shared_resources[1].start = mapbase_high;
|
||||||
orion_xor0_shared_resources[1].end = mapbase_high + 0xff;
|
orion_xor0_shared_resources[1].end = mapbase_high + 0xff;
|
||||||
|
|
||||||
orion_xor00_resources[0].start = irq_0;
|
orion_xor0_shared_resources[2].start = irq_0;
|
||||||
orion_xor00_resources[0].end = irq_0;
|
orion_xor0_shared_resources[2].end = irq_0;
|
||||||
orion_xor01_resources[0].start = irq_1;
|
orion_xor0_shared_resources[3].start = irq_1;
|
||||||
orion_xor01_resources[0].end = irq_1;
|
orion_xor0_shared_resources[3].end = irq_1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* two engines can't do memset simultaneously, this limitation
|
||||||
|
* satisfied by removing memset support from one of the engines.
|
||||||
|
*/
|
||||||
|
dma_cap_set(DMA_MEMCPY, orion_xor0_channels_data[0].cap_mask);
|
||||||
|
dma_cap_set(DMA_XOR, orion_xor0_channels_data[0].cap_mask);
|
||||||
|
|
||||||
|
dma_cap_set(DMA_MEMSET, orion_xor0_channels_data[1].cap_mask);
|
||||||
|
dma_cap_set(DMA_MEMCPY, orion_xor0_channels_data[1].cap_mask);
|
||||||
|
dma_cap_set(DMA_XOR, orion_xor0_channels_data[1].cap_mask);
|
||||||
|
|
||||||
platform_device_register(&orion_xor0_shared);
|
platform_device_register(&orion_xor0_shared);
|
||||||
|
|
||||||
orion_xor_init_channels(&orion_xor00_data, &orion_xor00_channel,
|
|
||||||
&orion_xor01_data, &orion_xor01_channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
@ -725,61 +682,30 @@ static struct resource orion_xor1_shared_resources[] = {
|
||||||
}, {
|
}, {
|
||||||
.name = "xor 1 high",
|
.name = "xor 1 high",
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
|
}, {
|
||||||
|
.name = "irq channel 0",
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
}, {
|
||||||
|
.name = "irq channel 1",
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct mv_xor_channel_data orion_xor1_channels_data[2];
|
||||||
|
|
||||||
|
static struct mv_xor_platform_data orion_xor1_pdata = {
|
||||||
|
.channels = orion_xor1_channels_data,
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device orion_xor1_shared = {
|
static struct platform_device orion_xor1_shared = {
|
||||||
.name = MV_XOR_SHARED_NAME,
|
.name = MV_XOR_NAME,
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(orion_xor1_shared_resources),
|
.num_resources = ARRAY_SIZE(orion_xor1_shared_resources),
|
||||||
.resource = orion_xor1_shared_resources,
|
.resource = orion_xor1_shared_resources,
|
||||||
};
|
.dev = {
|
||||||
|
.dma_mask = &orion_xor_dmamask,
|
||||||
static struct resource orion_xor10_resources[] = {
|
.coherent_dma_mask = DMA_BIT_MASK(64),
|
||||||
[0] = {
|
.platform_data = &orion_xor1_pdata,
|
||||||
.flags = IORESOURCE_IRQ,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct mv_xor_platform_data orion_xor10_data = {
|
|
||||||
.shared = &orion_xor1_shared,
|
|
||||||
.hw_id = 0,
|
|
||||||
.pool_size = PAGE_SIZE,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device orion_xor10_channel = {
|
|
||||||
.name = MV_XOR_NAME,
|
|
||||||
.id = 2,
|
|
||||||
.num_resources = ARRAY_SIZE(orion_xor10_resources),
|
|
||||||
.resource = orion_xor10_resources,
|
|
||||||
.dev = {
|
|
||||||
.dma_mask = &orion_xor_dmamask,
|
|
||||||
.coherent_dma_mask = DMA_BIT_MASK(64),
|
|
||||||
.platform_data = &orion_xor10_data,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct resource orion_xor11_resources[] = {
|
|
||||||
[0] = {
|
|
||||||
.flags = IORESOURCE_IRQ,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct mv_xor_platform_data orion_xor11_data = {
|
|
||||||
.shared = &orion_xor1_shared,
|
|
||||||
.hw_id = 1,
|
|
||||||
.pool_size = PAGE_SIZE,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device orion_xor11_channel = {
|
|
||||||
.name = MV_XOR_NAME,
|
|
||||||
.id = 3,
|
|
||||||
.num_resources = ARRAY_SIZE(orion_xor11_resources),
|
|
||||||
.resource = orion_xor11_resources,
|
|
||||||
.dev = {
|
|
||||||
.dma_mask = &orion_xor_dmamask,
|
|
||||||
.coherent_dma_mask = DMA_BIT_MASK(64),
|
|
||||||
.platform_data = &orion_xor11_data,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -793,15 +719,23 @@ void __init orion_xor1_init(unsigned long mapbase_low,
|
||||||
orion_xor1_shared_resources[1].start = mapbase_high;
|
orion_xor1_shared_resources[1].start = mapbase_high;
|
||||||
orion_xor1_shared_resources[1].end = mapbase_high + 0xff;
|
orion_xor1_shared_resources[1].end = mapbase_high + 0xff;
|
||||||
|
|
||||||
orion_xor10_resources[0].start = irq_0;
|
orion_xor1_shared_resources[2].start = irq_0;
|
||||||
orion_xor10_resources[0].end = irq_0;
|
orion_xor1_shared_resources[2].end = irq_0;
|
||||||
orion_xor11_resources[0].start = irq_1;
|
orion_xor1_shared_resources[3].start = irq_1;
|
||||||
orion_xor11_resources[0].end = irq_1;
|
orion_xor1_shared_resources[3].end = irq_1;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* two engines can't do memset simultaneously, this limitation
|
||||||
|
* satisfied by removing memset support from one of the engines.
|
||||||
|
*/
|
||||||
|
dma_cap_set(DMA_MEMCPY, orion_xor1_channels_data[0].cap_mask);
|
||||||
|
dma_cap_set(DMA_XOR, orion_xor1_channels_data[0].cap_mask);
|
||||||
|
|
||||||
|
dma_cap_set(DMA_MEMSET, orion_xor1_channels_data[1].cap_mask);
|
||||||
|
dma_cap_set(DMA_MEMCPY, orion_xor1_channels_data[1].cap_mask);
|
||||||
|
dma_cap_set(DMA_XOR, orion_xor1_channels_data[1].cap_mask);
|
||||||
|
|
||||||
platform_device_register(&orion_xor1_shared);
|
platform_device_register(&orion_xor1_shared);
|
||||||
|
|
||||||
orion_xor_init_channels(&orion_xor10_data, &orion_xor10_channel,
|
|
||||||
&orion_xor11_data, &orion_xor11_channel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
|
|
|
@ -26,6 +26,9 @@
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/memory.h>
|
#include <linux/memory.h>
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
|
#include <linux/of.h>
|
||||||
|
#include <linux/of_irq.h>
|
||||||
|
#include <linux/irqdomain.h>
|
||||||
#include <linux/platform_data/dma-mv_xor.h>
|
#include <linux/platform_data/dma-mv_xor.h>
|
||||||
|
|
||||||
#include "dmaengine.h"
|
#include "dmaengine.h"
|
||||||
|
@ -34,14 +37,14 @@
|
||||||
static void mv_xor_issue_pending(struct dma_chan *chan);
|
static void mv_xor_issue_pending(struct dma_chan *chan);
|
||||||
|
|
||||||
#define to_mv_xor_chan(chan) \
|
#define to_mv_xor_chan(chan) \
|
||||||
container_of(chan, struct mv_xor_chan, common)
|
container_of(chan, struct mv_xor_chan, dmachan)
|
||||||
|
|
||||||
#define to_mv_xor_device(dev) \
|
|
||||||
container_of(dev, struct mv_xor_device, common)
|
|
||||||
|
|
||||||
#define to_mv_xor_slot(tx) \
|
#define to_mv_xor_slot(tx) \
|
||||||
container_of(tx, struct mv_xor_desc_slot, async_tx)
|
container_of(tx, struct mv_xor_desc_slot, async_tx)
|
||||||
|
|
||||||
|
#define mv_chan_to_devp(chan) \
|
||||||
|
((chan)->dmadev.dev)
|
||||||
|
|
||||||
static void mv_desc_init(struct mv_xor_desc_slot *desc, unsigned long flags)
|
static void mv_desc_init(struct mv_xor_desc_slot *desc, unsigned long flags)
|
||||||
{
|
{
|
||||||
struct mv_xor_desc *hw_desc = desc->hw_desc;
|
struct mv_xor_desc *hw_desc = desc->hw_desc;
|
||||||
|
@ -166,7 +169,7 @@ static int mv_is_err_intr(u32 intr_cause)
|
||||||
static void mv_xor_device_clear_eoc_cause(struct mv_xor_chan *chan)
|
static void mv_xor_device_clear_eoc_cause(struct mv_xor_chan *chan)
|
||||||
{
|
{
|
||||||
u32 val = ~(1 << (chan->idx * 16));
|
u32 val = ~(1 << (chan->idx * 16));
|
||||||
dev_dbg(chan->device->common.dev, "%s, val 0x%08x\n", __func__, val);
|
dev_dbg(mv_chan_to_devp(chan), "%s, val 0x%08x\n", __func__, val);
|
||||||
__raw_writel(val, XOR_INTR_CAUSE(chan));
|
__raw_writel(val, XOR_INTR_CAUSE(chan));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -206,9 +209,9 @@ static void mv_set_mode(struct mv_xor_chan *chan,
|
||||||
op_mode = XOR_OPERATION_MODE_MEMSET;
|
op_mode = XOR_OPERATION_MODE_MEMSET;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"error: unsupported operation %d.\n",
|
"error: unsupported operation %d.\n",
|
||||||
type);
|
type);
|
||||||
BUG();
|
BUG();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -223,7 +226,7 @@ static void mv_chan_activate(struct mv_xor_chan *chan)
|
||||||
{
|
{
|
||||||
u32 activation;
|
u32 activation;
|
||||||
|
|
||||||
dev_dbg(chan->device->common.dev, " activate chan.\n");
|
dev_dbg(mv_chan_to_devp(chan), " activate chan.\n");
|
||||||
activation = __raw_readl(XOR_ACTIVATION(chan));
|
activation = __raw_readl(XOR_ACTIVATION(chan));
|
||||||
activation |= 0x1;
|
activation |= 0x1;
|
||||||
__raw_writel(activation, XOR_ACTIVATION(chan));
|
__raw_writel(activation, XOR_ACTIVATION(chan));
|
||||||
|
@ -251,7 +254,7 @@ static int mv_chan_xor_slot_count(size_t len, int src_cnt)
|
||||||
static void mv_xor_free_slots(struct mv_xor_chan *mv_chan,
|
static void mv_xor_free_slots(struct mv_xor_chan *mv_chan,
|
||||||
struct mv_xor_desc_slot *slot)
|
struct mv_xor_desc_slot *slot)
|
||||||
{
|
{
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s %d slot %p\n",
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s %d slot %p\n",
|
||||||
__func__, __LINE__, slot);
|
__func__, __LINE__, slot);
|
||||||
|
|
||||||
slot->slots_per_op = 0;
|
slot->slots_per_op = 0;
|
||||||
|
@ -266,7 +269,7 @@ static void mv_xor_free_slots(struct mv_xor_chan *mv_chan,
|
||||||
static void mv_xor_start_new_chain(struct mv_xor_chan *mv_chan,
|
static void mv_xor_start_new_chain(struct mv_xor_chan *mv_chan,
|
||||||
struct mv_xor_desc_slot *sw_desc)
|
struct mv_xor_desc_slot *sw_desc)
|
||||||
{
|
{
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s %d: sw_desc %p\n",
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: sw_desc %p\n",
|
||||||
__func__, __LINE__, sw_desc);
|
__func__, __LINE__, sw_desc);
|
||||||
if (sw_desc->type != mv_chan->current_type)
|
if (sw_desc->type != mv_chan->current_type)
|
||||||
mv_set_mode(mv_chan, sw_desc->type);
|
mv_set_mode(mv_chan, sw_desc->type);
|
||||||
|
@ -284,7 +287,7 @@ static void mv_xor_start_new_chain(struct mv_xor_chan *mv_chan,
|
||||||
mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys);
|
mv_chan_set_next_descriptor(mv_chan, sw_desc->async_tx.phys);
|
||||||
}
|
}
|
||||||
mv_chan->pending += sw_desc->slot_cnt;
|
mv_chan->pending += sw_desc->slot_cnt;
|
||||||
mv_xor_issue_pending(&mv_chan->common);
|
mv_xor_issue_pending(&mv_chan->dmachan);
|
||||||
}
|
}
|
||||||
|
|
||||||
static dma_cookie_t
|
static dma_cookie_t
|
||||||
|
@ -308,8 +311,7 @@ mv_xor_run_tx_complete_actions(struct mv_xor_desc_slot *desc,
|
||||||
*/
|
*/
|
||||||
if (desc->group_head && desc->unmap_len) {
|
if (desc->group_head && desc->unmap_len) {
|
||||||
struct mv_xor_desc_slot *unmap = desc->group_head;
|
struct mv_xor_desc_slot *unmap = desc->group_head;
|
||||||
struct device *dev =
|
struct device *dev = mv_chan_to_devp(mv_chan);
|
||||||
&mv_chan->device->pdev->dev;
|
|
||||||
u32 len = unmap->unmap_len;
|
u32 len = unmap->unmap_len;
|
||||||
enum dma_ctrl_flags flags = desc->async_tx.flags;
|
enum dma_ctrl_flags flags = desc->async_tx.flags;
|
||||||
u32 src_cnt;
|
u32 src_cnt;
|
||||||
|
@ -353,7 +355,7 @@ mv_xor_clean_completed_slots(struct mv_xor_chan *mv_chan)
|
||||||
{
|
{
|
||||||
struct mv_xor_desc_slot *iter, *_iter;
|
struct mv_xor_desc_slot *iter, *_iter;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s %d\n", __func__, __LINE__);
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
|
||||||
list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
|
list_for_each_entry_safe(iter, _iter, &mv_chan->completed_slots,
|
||||||
completed_node) {
|
completed_node) {
|
||||||
|
|
||||||
|
@ -369,7 +371,7 @@ static int
|
||||||
mv_xor_clean_slot(struct mv_xor_desc_slot *desc,
|
mv_xor_clean_slot(struct mv_xor_desc_slot *desc,
|
||||||
struct mv_xor_chan *mv_chan)
|
struct mv_xor_chan *mv_chan)
|
||||||
{
|
{
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s %d: desc %p flags %d\n",
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s %d: desc %p flags %d\n",
|
||||||
__func__, __LINE__, desc, desc->async_tx.flags);
|
__func__, __LINE__, desc, desc->async_tx.flags);
|
||||||
list_del(&desc->chain_node);
|
list_del(&desc->chain_node);
|
||||||
/* the client is allowed to attach dependent operations
|
/* the client is allowed to attach dependent operations
|
||||||
|
@ -393,8 +395,8 @@ static void __mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
|
||||||
u32 current_desc = mv_chan_get_current_desc(mv_chan);
|
u32 current_desc = mv_chan_get_current_desc(mv_chan);
|
||||||
int seen_current = 0;
|
int seen_current = 0;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s %d\n", __func__, __LINE__);
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s %d\n", __func__, __LINE__);
|
||||||
dev_dbg(mv_chan->device->common.dev, "current_desc %x\n", current_desc);
|
dev_dbg(mv_chan_to_devp(mv_chan), "current_desc %x\n", current_desc);
|
||||||
mv_xor_clean_completed_slots(mv_chan);
|
mv_xor_clean_completed_slots(mv_chan);
|
||||||
|
|
||||||
/* free completed slots from the chain starting with
|
/* free completed slots from the chain starting with
|
||||||
|
@ -438,7 +440,7 @@ static void __mv_xor_slot_cleanup(struct mv_xor_chan *mv_chan)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cookie > 0)
|
if (cookie > 0)
|
||||||
mv_chan->common.completed_cookie = cookie;
|
mv_chan->dmachan.completed_cookie = cookie;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -547,7 +549,7 @@ mv_xor_tx_submit(struct dma_async_tx_descriptor *tx)
|
||||||
dma_cookie_t cookie;
|
dma_cookie_t cookie;
|
||||||
int new_hw_chain = 1;
|
int new_hw_chain = 1;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s sw_desc %p: async_tx %p\n",
|
"%s sw_desc %p: async_tx %p\n",
|
||||||
__func__, sw_desc, &sw_desc->async_tx);
|
__func__, sw_desc, &sw_desc->async_tx);
|
||||||
|
|
||||||
|
@ -570,7 +572,7 @@ mv_xor_tx_submit(struct dma_async_tx_descriptor *tx)
|
||||||
if (!mv_can_chain(grp_start))
|
if (!mv_can_chain(grp_start))
|
||||||
goto submit_done;
|
goto submit_done;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev, "Append to last desc %x\n",
|
dev_dbg(mv_chan_to_devp(mv_chan), "Append to last desc %x\n",
|
||||||
old_chain_tail->async_tx.phys);
|
old_chain_tail->async_tx.phys);
|
||||||
|
|
||||||
/* fix up the hardware chain */
|
/* fix up the hardware chain */
|
||||||
|
@ -604,9 +606,7 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
|
||||||
int idx;
|
int idx;
|
||||||
struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
|
struct mv_xor_chan *mv_chan = to_mv_xor_chan(chan);
|
||||||
struct mv_xor_desc_slot *slot = NULL;
|
struct mv_xor_desc_slot *slot = NULL;
|
||||||
struct mv_xor_platform_data *plat_data =
|
int num_descs_in_pool = MV_XOR_POOL_SIZE/MV_XOR_SLOT_SIZE;
|
||||||
mv_chan->device->pdev->dev.platform_data;
|
|
||||||
int num_descs_in_pool = plat_data->pool_size/MV_XOR_SLOT_SIZE;
|
|
||||||
|
|
||||||
/* Allocate descriptor slots */
|
/* Allocate descriptor slots */
|
||||||
idx = mv_chan->slots_allocated;
|
idx = mv_chan->slots_allocated;
|
||||||
|
@ -617,7 +617,7 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
|
||||||
" %d descriptor slots", idx);
|
" %d descriptor slots", idx);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
hw_desc = (char *) mv_chan->device->dma_desc_pool_virt;
|
hw_desc = (char *) mv_chan->dma_desc_pool_virt;
|
||||||
slot->hw_desc = (void *) &hw_desc[idx * MV_XOR_SLOT_SIZE];
|
slot->hw_desc = (void *) &hw_desc[idx * MV_XOR_SLOT_SIZE];
|
||||||
|
|
||||||
dma_async_tx_descriptor_init(&slot->async_tx, chan);
|
dma_async_tx_descriptor_init(&slot->async_tx, chan);
|
||||||
|
@ -625,7 +625,7 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
|
||||||
INIT_LIST_HEAD(&slot->chain_node);
|
INIT_LIST_HEAD(&slot->chain_node);
|
||||||
INIT_LIST_HEAD(&slot->slot_node);
|
INIT_LIST_HEAD(&slot->slot_node);
|
||||||
INIT_LIST_HEAD(&slot->tx_list);
|
INIT_LIST_HEAD(&slot->tx_list);
|
||||||
hw_desc = (char *) mv_chan->device->dma_desc_pool;
|
hw_desc = (char *) mv_chan->dma_desc_pool;
|
||||||
slot->async_tx.phys =
|
slot->async_tx.phys =
|
||||||
(dma_addr_t) &hw_desc[idx * MV_XOR_SLOT_SIZE];
|
(dma_addr_t) &hw_desc[idx * MV_XOR_SLOT_SIZE];
|
||||||
slot->idx = idx++;
|
slot->idx = idx++;
|
||||||
|
@ -641,7 +641,7 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
|
||||||
struct mv_xor_desc_slot,
|
struct mv_xor_desc_slot,
|
||||||
slot_node);
|
slot_node);
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"allocated %d descriptor slots last_used: %p\n",
|
"allocated %d descriptor slots last_used: %p\n",
|
||||||
mv_chan->slots_allocated, mv_chan->last_used);
|
mv_chan->slots_allocated, mv_chan->last_used);
|
||||||
|
|
||||||
|
@ -656,7 +656,7 @@ mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
|
||||||
struct mv_xor_desc_slot *sw_desc, *grp_start;
|
struct mv_xor_desc_slot *sw_desc, *grp_start;
|
||||||
int slot_cnt;
|
int slot_cnt;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s dest: %x src %x len: %u flags: %ld\n",
|
"%s dest: %x src %x len: %u flags: %ld\n",
|
||||||
__func__, dest, src, len, flags);
|
__func__, dest, src, len, flags);
|
||||||
if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
|
if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
|
||||||
|
@ -680,7 +680,7 @@ mv_xor_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
|
||||||
}
|
}
|
||||||
spin_unlock_bh(&mv_chan->lock);
|
spin_unlock_bh(&mv_chan->lock);
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s sw_desc %p async_tx %p\n",
|
"%s sw_desc %p async_tx %p\n",
|
||||||
__func__, sw_desc, sw_desc ? &sw_desc->async_tx : 0);
|
__func__, sw_desc, sw_desc ? &sw_desc->async_tx : 0);
|
||||||
|
|
||||||
|
@ -695,7 +695,7 @@ mv_xor_prep_dma_memset(struct dma_chan *chan, dma_addr_t dest, int value,
|
||||||
struct mv_xor_desc_slot *sw_desc, *grp_start;
|
struct mv_xor_desc_slot *sw_desc, *grp_start;
|
||||||
int slot_cnt;
|
int slot_cnt;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s dest: %x len: %u flags: %ld\n",
|
"%s dest: %x len: %u flags: %ld\n",
|
||||||
__func__, dest, len, flags);
|
__func__, dest, len, flags);
|
||||||
if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
|
if (unlikely(len < MV_XOR_MIN_BYTE_COUNT))
|
||||||
|
@ -718,7 +718,7 @@ mv_xor_prep_dma_memset(struct dma_chan *chan, dma_addr_t dest, int value,
|
||||||
sw_desc->unmap_len = len;
|
sw_desc->unmap_len = len;
|
||||||
}
|
}
|
||||||
spin_unlock_bh(&mv_chan->lock);
|
spin_unlock_bh(&mv_chan->lock);
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s sw_desc %p async_tx %p \n",
|
"%s sw_desc %p async_tx %p \n",
|
||||||
__func__, sw_desc, &sw_desc->async_tx);
|
__func__, sw_desc, &sw_desc->async_tx);
|
||||||
return sw_desc ? &sw_desc->async_tx : NULL;
|
return sw_desc ? &sw_desc->async_tx : NULL;
|
||||||
|
@ -737,7 +737,7 @@ mv_xor_prep_dma_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
|
||||||
|
|
||||||
BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
|
BUG_ON(len > MV_XOR_MAX_BYTE_COUNT);
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s src_cnt: %d len: dest %x %u flags: %ld\n",
|
"%s src_cnt: %d len: dest %x %u flags: %ld\n",
|
||||||
__func__, src_cnt, len, dest, flags);
|
__func__, src_cnt, len, dest, flags);
|
||||||
|
|
||||||
|
@ -758,7 +758,7 @@ mv_xor_prep_dma_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
|
||||||
mv_desc_set_src_addr(grp_start, src_cnt, src[src_cnt]);
|
mv_desc_set_src_addr(grp_start, src_cnt, src[src_cnt]);
|
||||||
}
|
}
|
||||||
spin_unlock_bh(&mv_chan->lock);
|
spin_unlock_bh(&mv_chan->lock);
|
||||||
dev_dbg(mv_chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(mv_chan),
|
||||||
"%s sw_desc %p async_tx %p \n",
|
"%s sw_desc %p async_tx %p \n",
|
||||||
__func__, sw_desc, &sw_desc->async_tx);
|
__func__, sw_desc, &sw_desc->async_tx);
|
||||||
return sw_desc ? &sw_desc->async_tx : NULL;
|
return sw_desc ? &sw_desc->async_tx : NULL;
|
||||||
|
@ -791,12 +791,12 @@ static void mv_xor_free_chan_resources(struct dma_chan *chan)
|
||||||
}
|
}
|
||||||
mv_chan->last_used = NULL;
|
mv_chan->last_used = NULL;
|
||||||
|
|
||||||
dev_dbg(mv_chan->device->common.dev, "%s slots_allocated %d\n",
|
dev_dbg(mv_chan_to_devp(mv_chan), "%s slots_allocated %d\n",
|
||||||
__func__, mv_chan->slots_allocated);
|
__func__, mv_chan->slots_allocated);
|
||||||
spin_unlock_bh(&mv_chan->lock);
|
spin_unlock_bh(&mv_chan->lock);
|
||||||
|
|
||||||
if (in_use_descs)
|
if (in_use_descs)
|
||||||
dev_err(mv_chan->device->common.dev,
|
dev_err(mv_chan_to_devp(mv_chan),
|
||||||
"freeing %d in use descriptors!\n", in_use_descs);
|
"freeing %d in use descriptors!\n", in_use_descs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -828,42 +828,42 @@ static void mv_dump_xor_regs(struct mv_xor_chan *chan)
|
||||||
u32 val;
|
u32 val;
|
||||||
|
|
||||||
val = __raw_readl(XOR_CONFIG(chan));
|
val = __raw_readl(XOR_CONFIG(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"config 0x%08x.\n", val);
|
"config 0x%08x.\n", val);
|
||||||
|
|
||||||
val = __raw_readl(XOR_ACTIVATION(chan));
|
val = __raw_readl(XOR_ACTIVATION(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"activation 0x%08x.\n", val);
|
"activation 0x%08x.\n", val);
|
||||||
|
|
||||||
val = __raw_readl(XOR_INTR_CAUSE(chan));
|
val = __raw_readl(XOR_INTR_CAUSE(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"intr cause 0x%08x.\n", val);
|
"intr cause 0x%08x.\n", val);
|
||||||
|
|
||||||
val = __raw_readl(XOR_INTR_MASK(chan));
|
val = __raw_readl(XOR_INTR_MASK(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"intr mask 0x%08x.\n", val);
|
"intr mask 0x%08x.\n", val);
|
||||||
|
|
||||||
val = __raw_readl(XOR_ERROR_CAUSE(chan));
|
val = __raw_readl(XOR_ERROR_CAUSE(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"error cause 0x%08x.\n", val);
|
"error cause 0x%08x.\n", val);
|
||||||
|
|
||||||
val = __raw_readl(XOR_ERROR_ADDR(chan));
|
val = __raw_readl(XOR_ERROR_ADDR(chan));
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"error addr 0x%08x.\n", val);
|
"error addr 0x%08x.\n", val);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mv_xor_err_interrupt_handler(struct mv_xor_chan *chan,
|
static void mv_xor_err_interrupt_handler(struct mv_xor_chan *chan,
|
||||||
u32 intr_cause)
|
u32 intr_cause)
|
||||||
{
|
{
|
||||||
if (intr_cause & (1 << 4)) {
|
if (intr_cause & (1 << 4)) {
|
||||||
dev_dbg(chan->device->common.dev,
|
dev_dbg(mv_chan_to_devp(chan),
|
||||||
"ignore this error\n");
|
"ignore this error\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_printk(KERN_ERR, chan->device->common.dev,
|
dev_err(mv_chan_to_devp(chan),
|
||||||
"error on chan %d. intr cause 0x%08x.\n",
|
"error on chan %d. intr cause 0x%08x.\n",
|
||||||
chan->idx, intr_cause);
|
chan->idx, intr_cause);
|
||||||
|
|
||||||
mv_dump_xor_regs(chan);
|
mv_dump_xor_regs(chan);
|
||||||
BUG();
|
BUG();
|
||||||
|
@ -874,7 +874,7 @@ static irqreturn_t mv_xor_interrupt_handler(int irq, void *data)
|
||||||
struct mv_xor_chan *chan = data;
|
struct mv_xor_chan *chan = data;
|
||||||
u32 intr_cause = mv_chan_get_intr_cause(chan);
|
u32 intr_cause = mv_chan_get_intr_cause(chan);
|
||||||
|
|
||||||
dev_dbg(chan->device->common.dev, "intr cause %x\n", intr_cause);
|
dev_dbg(mv_chan_to_devp(chan), "intr cause %x\n", intr_cause);
|
||||||
|
|
||||||
if (mv_is_err_intr(intr_cause))
|
if (mv_is_err_intr(intr_cause))
|
||||||
mv_xor_err_interrupt_handler(chan, intr_cause);
|
mv_xor_err_interrupt_handler(chan, intr_cause);
|
||||||
|
@ -901,7 +901,7 @@ static void mv_xor_issue_pending(struct dma_chan *chan)
|
||||||
*/
|
*/
|
||||||
#define MV_XOR_TEST_SIZE 2000
|
#define MV_XOR_TEST_SIZE 2000
|
||||||
|
|
||||||
static int __devinit mv_xor_memcpy_self_test(struct mv_xor_device *device)
|
static int __devinit mv_xor_memcpy_self_test(struct mv_xor_chan *mv_chan)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
void *src, *dest;
|
void *src, *dest;
|
||||||
|
@ -910,7 +910,6 @@ static int __devinit mv_xor_memcpy_self_test(struct mv_xor_device *device)
|
||||||
dma_cookie_t cookie;
|
dma_cookie_t cookie;
|
||||||
struct dma_async_tx_descriptor *tx;
|
struct dma_async_tx_descriptor *tx;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
struct mv_xor_chan *mv_chan;
|
|
||||||
|
|
||||||
src = kmalloc(sizeof(u8) * MV_XOR_TEST_SIZE, GFP_KERNEL);
|
src = kmalloc(sizeof(u8) * MV_XOR_TEST_SIZE, GFP_KERNEL);
|
||||||
if (!src)
|
if (!src)
|
||||||
|
@ -926,10 +925,7 @@ static int __devinit mv_xor_memcpy_self_test(struct mv_xor_device *device)
|
||||||
for (i = 0; i < MV_XOR_TEST_SIZE; i++)
|
for (i = 0; i < MV_XOR_TEST_SIZE; i++)
|
||||||
((u8 *) src)[i] = (u8)i;
|
((u8 *) src)[i] = (u8)i;
|
||||||
|
|
||||||
/* Start copy, using first DMA channel */
|
dma_chan = &mv_chan->dmachan;
|
||||||
dma_chan = container_of(device->common.channels.next,
|
|
||||||
struct dma_chan,
|
|
||||||
device_node);
|
|
||||||
if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
|
if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto out;
|
goto out;
|
||||||
|
@ -950,18 +946,17 @@ static int __devinit mv_xor_memcpy_self_test(struct mv_xor_device *device)
|
||||||
|
|
||||||
if (mv_xor_status(dma_chan, cookie, NULL) !=
|
if (mv_xor_status(dma_chan, cookie, NULL) !=
|
||||||
DMA_SUCCESS) {
|
DMA_SUCCESS) {
|
||||||
dev_printk(KERN_ERR, dma_chan->device->dev,
|
dev_err(dma_chan->device->dev,
|
||||||
"Self-test copy timed out, disabling\n");
|
"Self-test copy timed out, disabling\n");
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto free_resources;
|
goto free_resources;
|
||||||
}
|
}
|
||||||
|
|
||||||
mv_chan = to_mv_xor_chan(dma_chan);
|
dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
|
||||||
dma_sync_single_for_cpu(&mv_chan->device->pdev->dev, dest_dma,
|
|
||||||
MV_XOR_TEST_SIZE, DMA_FROM_DEVICE);
|
MV_XOR_TEST_SIZE, DMA_FROM_DEVICE);
|
||||||
if (memcmp(src, dest, MV_XOR_TEST_SIZE)) {
|
if (memcmp(src, dest, MV_XOR_TEST_SIZE)) {
|
||||||
dev_printk(KERN_ERR, dma_chan->device->dev,
|
dev_err(dma_chan->device->dev,
|
||||||
"Self-test copy failed compare, disabling\n");
|
"Self-test copy failed compare, disabling\n");
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto free_resources;
|
goto free_resources;
|
||||||
}
|
}
|
||||||
|
@ -976,7 +971,7 @@ out:
|
||||||
|
|
||||||
#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
|
#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
|
||||||
static int __devinit
|
static int __devinit
|
||||||
mv_xor_xor_self_test(struct mv_xor_device *device)
|
mv_xor_xor_self_test(struct mv_xor_chan *mv_chan)
|
||||||
{
|
{
|
||||||
int i, src_idx;
|
int i, src_idx;
|
||||||
struct page *dest;
|
struct page *dest;
|
||||||
|
@ -989,7 +984,6 @@ mv_xor_xor_self_test(struct mv_xor_device *device)
|
||||||
u8 cmp_byte = 0;
|
u8 cmp_byte = 0;
|
||||||
u32 cmp_word;
|
u32 cmp_word;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
struct mv_xor_chan *mv_chan;
|
|
||||||
|
|
||||||
for (src_idx = 0; src_idx < MV_XOR_NUM_SRC_TEST; src_idx++) {
|
for (src_idx = 0; src_idx < MV_XOR_NUM_SRC_TEST; src_idx++) {
|
||||||
xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
|
xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
|
||||||
|
@ -1022,9 +1016,7 @@ mv_xor_xor_self_test(struct mv_xor_device *device)
|
||||||
|
|
||||||
memset(page_address(dest), 0, PAGE_SIZE);
|
memset(page_address(dest), 0, PAGE_SIZE);
|
||||||
|
|
||||||
dma_chan = container_of(device->common.channels.next,
|
dma_chan = &mv_chan->dmachan;
|
||||||
struct dma_chan,
|
|
||||||
device_node);
|
|
||||||
if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
|
if (mv_xor_alloc_chan_resources(dma_chan) < 1) {
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto out;
|
goto out;
|
||||||
|
@ -1048,22 +1040,21 @@ mv_xor_xor_self_test(struct mv_xor_device *device)
|
||||||
|
|
||||||
if (mv_xor_status(dma_chan, cookie, NULL) !=
|
if (mv_xor_status(dma_chan, cookie, NULL) !=
|
||||||
DMA_SUCCESS) {
|
DMA_SUCCESS) {
|
||||||
dev_printk(KERN_ERR, dma_chan->device->dev,
|
dev_err(dma_chan->device->dev,
|
||||||
"Self-test xor timed out, disabling\n");
|
"Self-test xor timed out, disabling\n");
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto free_resources;
|
goto free_resources;
|
||||||
}
|
}
|
||||||
|
|
||||||
mv_chan = to_mv_xor_chan(dma_chan);
|
dma_sync_single_for_cpu(dma_chan->device->dev, dest_dma,
|
||||||
dma_sync_single_for_cpu(&mv_chan->device->pdev->dev, dest_dma,
|
|
||||||
PAGE_SIZE, DMA_FROM_DEVICE);
|
PAGE_SIZE, DMA_FROM_DEVICE);
|
||||||
for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) {
|
for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) {
|
||||||
u32 *ptr = page_address(dest);
|
u32 *ptr = page_address(dest);
|
||||||
if (ptr[i] != cmp_word) {
|
if (ptr[i] != cmp_word) {
|
||||||
dev_printk(KERN_ERR, dma_chan->device->dev,
|
dev_err(dma_chan->device->dev,
|
||||||
"Self-test xor failed compare, disabling."
|
"Self-test xor failed compare, disabling."
|
||||||
" index %d, data %x, expected %x\n", i,
|
" index %d, data %x, expected %x\n", i,
|
||||||
ptr[i], cmp_word);
|
ptr[i], cmp_word);
|
||||||
err = -ENODEV;
|
err = -ENODEV;
|
||||||
goto free_resources;
|
goto free_resources;
|
||||||
}
|
}
|
||||||
|
@ -1079,62 +1070,66 @@ out:
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit mv_xor_remove(struct platform_device *dev)
|
/* This driver does not implement any of the optional DMA operations. */
|
||||||
|
static int
|
||||||
|
mv_xor_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
|
||||||
|
unsigned long arg)
|
||||||
|
{
|
||||||
|
return -ENOSYS;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int mv_xor_channel_remove(struct mv_xor_chan *mv_chan)
|
||||||
{
|
{
|
||||||
struct mv_xor_device *device = platform_get_drvdata(dev);
|
|
||||||
struct dma_chan *chan, *_chan;
|
struct dma_chan *chan, *_chan;
|
||||||
struct mv_xor_chan *mv_chan;
|
struct device *dev = mv_chan->dmadev.dev;
|
||||||
struct mv_xor_platform_data *plat_data = dev->dev.platform_data;
|
|
||||||
|
|
||||||
dma_async_device_unregister(&device->common);
|
dma_async_device_unregister(&mv_chan->dmadev);
|
||||||
|
|
||||||
dma_free_coherent(&dev->dev, plat_data->pool_size,
|
dma_free_coherent(dev, MV_XOR_POOL_SIZE,
|
||||||
device->dma_desc_pool_virt, device->dma_desc_pool);
|
mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
|
||||||
|
|
||||||
list_for_each_entry_safe(chan, _chan, &device->common.channels,
|
list_for_each_entry_safe(chan, _chan, &mv_chan->dmadev.channels,
|
||||||
device_node) {
|
device_node) {
|
||||||
mv_chan = to_mv_xor_chan(chan);
|
|
||||||
list_del(&chan->device_node);
|
list_del(&chan->device_node);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
free_irq(mv_chan->irq, mv_chan);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devinit mv_xor_probe(struct platform_device *pdev)
|
static struct mv_xor_chan *
|
||||||
|
mv_xor_channel_add(struct mv_xor_device *xordev,
|
||||||
|
struct platform_device *pdev,
|
||||||
|
int idx, dma_cap_mask_t cap_mask, int irq)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int irq;
|
|
||||||
struct mv_xor_device *adev;
|
|
||||||
struct mv_xor_chan *mv_chan;
|
struct mv_xor_chan *mv_chan;
|
||||||
struct dma_device *dma_dev;
|
struct dma_device *dma_dev;
|
||||||
struct mv_xor_platform_data *plat_data = pdev->dev.platform_data;
|
|
||||||
|
|
||||||
|
mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL);
|
||||||
|
if (!mv_chan) {
|
||||||
|
ret = -ENOMEM;
|
||||||
|
goto err_free_dma;
|
||||||
|
}
|
||||||
|
|
||||||
adev = devm_kzalloc(&pdev->dev, sizeof(*adev), GFP_KERNEL);
|
mv_chan->idx = idx;
|
||||||
if (!adev)
|
mv_chan->irq = irq;
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
dma_dev = &adev->common;
|
dma_dev = &mv_chan->dmadev;
|
||||||
|
|
||||||
/* allocate coherent memory for hardware descriptors
|
/* allocate coherent memory for hardware descriptors
|
||||||
* note: writecombine gives slightly better performance, but
|
* note: writecombine gives slightly better performance, but
|
||||||
* requires that we explicitly flush the writes
|
* requires that we explicitly flush the writes
|
||||||
*/
|
*/
|
||||||
adev->dma_desc_pool_virt = dma_alloc_writecombine(&pdev->dev,
|
mv_chan->dma_desc_pool_virt =
|
||||||
plat_data->pool_size,
|
dma_alloc_writecombine(&pdev->dev, MV_XOR_POOL_SIZE,
|
||||||
&adev->dma_desc_pool,
|
&mv_chan->dma_desc_pool, GFP_KERNEL);
|
||||||
GFP_KERNEL);
|
if (!mv_chan->dma_desc_pool_virt)
|
||||||
if (!adev->dma_desc_pool_virt)
|
return ERR_PTR(-ENOMEM);
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
adev->id = plat_data->hw_id;
|
|
||||||
|
|
||||||
/* discover transaction capabilites from the platform data */
|
/* discover transaction capabilites from the platform data */
|
||||||
dma_dev->cap_mask = plat_data->cap_mask;
|
dma_dev->cap_mask = cap_mask;
|
||||||
adev->pdev = pdev;
|
|
||||||
platform_set_drvdata(pdev, adev);
|
|
||||||
|
|
||||||
adev->shared = platform_get_drvdata(plat_data->shared);
|
|
||||||
|
|
||||||
INIT_LIST_HEAD(&dma_dev->channels);
|
INIT_LIST_HEAD(&dma_dev->channels);
|
||||||
|
|
||||||
|
@ -1143,6 +1138,7 @@ static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
dma_dev->device_free_chan_resources = mv_xor_free_chan_resources;
|
dma_dev->device_free_chan_resources = mv_xor_free_chan_resources;
|
||||||
dma_dev->device_tx_status = mv_xor_status;
|
dma_dev->device_tx_status = mv_xor_status;
|
||||||
dma_dev->device_issue_pending = mv_xor_issue_pending;
|
dma_dev->device_issue_pending = mv_xor_issue_pending;
|
||||||
|
dma_dev->device_control = mv_xor_control;
|
||||||
dma_dev->dev = &pdev->dev;
|
dma_dev->dev = &pdev->dev;
|
||||||
|
|
||||||
/* set prep routines based on capability */
|
/* set prep routines based on capability */
|
||||||
|
@ -1155,15 +1151,7 @@ static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor;
|
dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor;
|
||||||
}
|
}
|
||||||
|
|
||||||
mv_chan = devm_kzalloc(&pdev->dev, sizeof(*mv_chan), GFP_KERNEL);
|
mv_chan->mmr_base = xordev->xor_base;
|
||||||
if (!mv_chan) {
|
|
||||||
ret = -ENOMEM;
|
|
||||||
goto err_free_dma;
|
|
||||||
}
|
|
||||||
mv_chan->device = adev;
|
|
||||||
mv_chan->idx = plat_data->hw_id;
|
|
||||||
mv_chan->mmr_base = adev->shared->xor_base;
|
|
||||||
|
|
||||||
if (!mv_chan->mmr_base) {
|
if (!mv_chan->mmr_base) {
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto err_free_dma;
|
goto err_free_dma;
|
||||||
|
@ -1174,12 +1162,7 @@ static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
/* clear errors before enabling interrupts */
|
/* clear errors before enabling interrupts */
|
||||||
mv_xor_device_clear_err_status(mv_chan);
|
mv_xor_device_clear_err_status(mv_chan);
|
||||||
|
|
||||||
irq = platform_get_irq(pdev, 0);
|
ret = devm_request_irq(&pdev->dev, mv_chan->irq,
|
||||||
if (irq < 0) {
|
|
||||||
ret = irq;
|
|
||||||
goto err_free_dma;
|
|
||||||
}
|
|
||||||
ret = devm_request_irq(&pdev->dev, irq,
|
|
||||||
mv_xor_interrupt_handler,
|
mv_xor_interrupt_handler,
|
||||||
0, dev_name(&pdev->dev), mv_chan);
|
0, dev_name(&pdev->dev), mv_chan);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
@ -1193,26 +1176,26 @@ static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
INIT_LIST_HEAD(&mv_chan->chain);
|
INIT_LIST_HEAD(&mv_chan->chain);
|
||||||
INIT_LIST_HEAD(&mv_chan->completed_slots);
|
INIT_LIST_HEAD(&mv_chan->completed_slots);
|
||||||
INIT_LIST_HEAD(&mv_chan->all_slots);
|
INIT_LIST_HEAD(&mv_chan->all_slots);
|
||||||
mv_chan->common.device = dma_dev;
|
mv_chan->dmachan.device = dma_dev;
|
||||||
dma_cookie_init(&mv_chan->common);
|
dma_cookie_init(&mv_chan->dmachan);
|
||||||
|
|
||||||
list_add_tail(&mv_chan->common.device_node, &dma_dev->channels);
|
list_add_tail(&mv_chan->dmachan.device_node, &dma_dev->channels);
|
||||||
|
|
||||||
if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
|
if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
|
||||||
ret = mv_xor_memcpy_self_test(adev);
|
ret = mv_xor_memcpy_self_test(mv_chan);
|
||||||
dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret);
|
dev_dbg(&pdev->dev, "memcpy self test returned %d\n", ret);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_free_dma;
|
goto err_free_dma;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
|
if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
|
||||||
ret = mv_xor_xor_self_test(adev);
|
ret = mv_xor_xor_self_test(mv_chan);
|
||||||
dev_dbg(&pdev->dev, "xor self test returned %d\n", ret);
|
dev_dbg(&pdev->dev, "xor self test returned %d\n", ret);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_free_dma;
|
goto err_free_dma;
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_printk(KERN_INFO, &pdev->dev, "Marvell XOR: "
|
dev_info(&pdev->dev, "Marvell XOR: "
|
||||||
"( %s%s%s%s)\n",
|
"( %s%s%s%s)\n",
|
||||||
dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "",
|
dma_has_cap(DMA_XOR, dma_dev->cap_mask) ? "xor " : "",
|
||||||
dma_has_cap(DMA_MEMSET, dma_dev->cap_mask) ? "fill " : "",
|
dma_has_cap(DMA_MEMSET, dma_dev->cap_mask) ? "fill " : "",
|
||||||
|
@ -1220,20 +1203,19 @@ static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : "");
|
dma_has_cap(DMA_INTERRUPT, dma_dev->cap_mask) ? "intr " : "");
|
||||||
|
|
||||||
dma_async_device_register(dma_dev);
|
dma_async_device_register(dma_dev);
|
||||||
goto out;
|
return mv_chan;
|
||||||
|
|
||||||
err_free_dma:
|
err_free_dma:
|
||||||
dma_free_coherent(&adev->pdev->dev, plat_data->pool_size,
|
dma_free_coherent(&pdev->dev, MV_XOR_POOL_SIZE,
|
||||||
adev->dma_desc_pool_virt, adev->dma_desc_pool);
|
mv_chan->dma_desc_pool_virt, mv_chan->dma_desc_pool);
|
||||||
out:
|
return ERR_PTR(ret);
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
mv_xor_conf_mbus_windows(struct mv_xor_shared_private *msp,
|
mv_xor_conf_mbus_windows(struct mv_xor_device *xordev,
|
||||||
const struct mbus_dram_target_info *dram)
|
const struct mbus_dram_target_info *dram)
|
||||||
{
|
{
|
||||||
void __iomem *base = msp->xor_base;
|
void __iomem *base = xordev->xor_base;
|
||||||
u32 win_enable = 0;
|
u32 win_enable = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -1260,97 +1242,171 @@ mv_xor_conf_mbus_windows(struct mv_xor_shared_private *msp,
|
||||||
writel(win_enable, base + WINDOW_BAR_ENABLE(1));
|
writel(win_enable, base + WINDOW_BAR_ENABLE(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver mv_xor_driver = {
|
static int __devinit mv_xor_probe(struct platform_device *pdev)
|
||||||
.probe = mv_xor_probe,
|
|
||||||
.remove = __devexit_p(mv_xor_remove),
|
|
||||||
.driver = {
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.name = MV_XOR_NAME,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static int mv_xor_shared_probe(struct platform_device *pdev)
|
|
||||||
{
|
{
|
||||||
const struct mbus_dram_target_info *dram;
|
const struct mbus_dram_target_info *dram;
|
||||||
struct mv_xor_shared_private *msp;
|
struct mv_xor_device *xordev;
|
||||||
|
struct mv_xor_platform_data *pdata = pdev->dev.platform_data;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
|
int i, ret;
|
||||||
|
|
||||||
dev_printk(KERN_NOTICE, &pdev->dev, "Marvell shared XOR driver\n");
|
dev_notice(&pdev->dev, "Marvell XOR driver\n");
|
||||||
|
|
||||||
msp = devm_kzalloc(&pdev->dev, sizeof(*msp), GFP_KERNEL);
|
xordev = devm_kzalloc(&pdev->dev, sizeof(*xordev), GFP_KERNEL);
|
||||||
if (!msp)
|
if (!xordev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
if (!res)
|
if (!res)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
msp->xor_base = devm_ioremap(&pdev->dev, res->start,
|
xordev->xor_base = devm_ioremap(&pdev->dev, res->start,
|
||||||
resource_size(res));
|
resource_size(res));
|
||||||
if (!msp->xor_base)
|
if (!xordev->xor_base)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
||||||
if (!res)
|
if (!res)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
msp->xor_high_base = devm_ioremap(&pdev->dev, res->start,
|
xordev->xor_high_base = devm_ioremap(&pdev->dev, res->start,
|
||||||
resource_size(res));
|
resource_size(res));
|
||||||
if (!msp->xor_high_base)
|
if (!xordev->xor_high_base)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
platform_set_drvdata(pdev, msp);
|
platform_set_drvdata(pdev, xordev);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (Re-)program MBUS remapping windows if we are asked to.
|
* (Re-)program MBUS remapping windows if we are asked to.
|
||||||
*/
|
*/
|
||||||
dram = mv_mbus_dram_info();
|
dram = mv_mbus_dram_info();
|
||||||
if (dram)
|
if (dram)
|
||||||
mv_xor_conf_mbus_windows(msp, dram);
|
mv_xor_conf_mbus_windows(xordev, dram);
|
||||||
|
|
||||||
/* Not all platforms can gate the clock, so it is not
|
/* Not all platforms can gate the clock, so it is not
|
||||||
* an error if the clock does not exists.
|
* an error if the clock does not exists.
|
||||||
*/
|
*/
|
||||||
msp->clk = clk_get(&pdev->dev, NULL);
|
xordev->clk = clk_get(&pdev->dev, NULL);
|
||||||
if (!IS_ERR(msp->clk))
|
if (!IS_ERR(xordev->clk))
|
||||||
clk_prepare_enable(msp->clk);
|
clk_prepare_enable(xordev->clk);
|
||||||
|
|
||||||
|
if (pdev->dev.of_node) {
|
||||||
|
struct device_node *np;
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
for_each_child_of_node(pdev->dev.of_node, np) {
|
||||||
|
dma_cap_mask_t cap_mask;
|
||||||
|
int irq;
|
||||||
|
|
||||||
|
dma_cap_zero(cap_mask);
|
||||||
|
if (of_property_read_bool(np, "dmacap,memcpy"))
|
||||||
|
dma_cap_set(DMA_MEMCPY, cap_mask);
|
||||||
|
if (of_property_read_bool(np, "dmacap,xor"))
|
||||||
|
dma_cap_set(DMA_XOR, cap_mask);
|
||||||
|
if (of_property_read_bool(np, "dmacap,memset"))
|
||||||
|
dma_cap_set(DMA_MEMSET, cap_mask);
|
||||||
|
if (of_property_read_bool(np, "dmacap,interrupt"))
|
||||||
|
dma_cap_set(DMA_INTERRUPT, cap_mask);
|
||||||
|
|
||||||
|
irq = irq_of_parse_and_map(np, 0);
|
||||||
|
if (irq < 0) {
|
||||||
|
ret = irq;
|
||||||
|
goto err_channel_add;
|
||||||
|
}
|
||||||
|
|
||||||
|
xordev->channels[i] =
|
||||||
|
mv_xor_channel_add(xordev, pdev, i,
|
||||||
|
cap_mask, irq);
|
||||||
|
if (IS_ERR(xordev->channels[i])) {
|
||||||
|
ret = PTR_ERR(xordev->channels[i]);
|
||||||
|
irq_dispose_mapping(irq);
|
||||||
|
goto err_channel_add;
|
||||||
|
}
|
||||||
|
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
} else if (pdata && pdata->channels) {
|
||||||
|
for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
|
||||||
|
struct mv_xor_channel_data *cd;
|
||||||
|
int irq;
|
||||||
|
|
||||||
|
cd = &pdata->channels[i];
|
||||||
|
if (!cd) {
|
||||||
|
ret = -ENODEV;
|
||||||
|
goto err_channel_add;
|
||||||
|
}
|
||||||
|
|
||||||
|
irq = platform_get_irq(pdev, i);
|
||||||
|
if (irq < 0) {
|
||||||
|
ret = irq;
|
||||||
|
goto err_channel_add;
|
||||||
|
}
|
||||||
|
|
||||||
|
xordev->channels[i] =
|
||||||
|
mv_xor_channel_add(xordev, pdev, i,
|
||||||
|
cd->cap_mask, irq);
|
||||||
|
if (IS_ERR(xordev->channels[i])) {
|
||||||
|
ret = PTR_ERR(xordev->channels[i]);
|
||||||
|
goto err_channel_add;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
err_channel_add:
|
||||||
|
for (i = 0; i < MV_XOR_MAX_CHANNELS; i++)
|
||||||
|
if (xordev->channels[i]) {
|
||||||
|
if (pdev->dev.of_node)
|
||||||
|
irq_dispose_mapping(xordev->channels[i]->irq);
|
||||||
|
mv_xor_channel_remove(xordev->channels[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
clk_disable_unprepare(xordev->clk);
|
||||||
|
clk_put(xordev->clk);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mv_xor_shared_remove(struct platform_device *pdev)
|
static int __devexit mv_xor_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct mv_xor_shared_private *msp = platform_get_drvdata(pdev);
|
struct mv_xor_device *xordev = platform_get_drvdata(pdev);
|
||||||
|
int i;
|
||||||
|
|
||||||
if (!IS_ERR(msp->clk)) {
|
for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
|
||||||
clk_disable_unprepare(msp->clk);
|
if (xordev->channels[i])
|
||||||
clk_put(msp->clk);
|
mv_xor_channel_remove(xordev->channels[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!IS_ERR(xordev->clk)) {
|
||||||
|
clk_disable_unprepare(xordev->clk);
|
||||||
|
clk_put(xordev->clk);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver mv_xor_shared_driver = {
|
#ifdef CONFIG_OF
|
||||||
.probe = mv_xor_shared_probe,
|
static struct of_device_id mv_xor_dt_ids[] __devinitdata = {
|
||||||
.remove = mv_xor_shared_remove,
|
{ .compatible = "marvell,orion-xor", },
|
||||||
|
{},
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, mv_xor_dt_ids);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static struct platform_driver mv_xor_driver = {
|
||||||
|
.probe = mv_xor_probe,
|
||||||
|
.remove = __devexit_p(mv_xor_remove),
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = MV_XOR_SHARED_NAME,
|
.name = MV_XOR_NAME,
|
||||||
|
.of_match_table = of_match_ptr(mv_xor_dt_ids),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static int __init mv_xor_init(void)
|
static int __init mv_xor_init(void)
|
||||||
{
|
{
|
||||||
int rc;
|
return platform_driver_register(&mv_xor_driver);
|
||||||
|
|
||||||
rc = platform_driver_register(&mv_xor_shared_driver);
|
|
||||||
if (!rc) {
|
|
||||||
rc = platform_driver_register(&mv_xor_driver);
|
|
||||||
if (rc)
|
|
||||||
platform_driver_unregister(&mv_xor_shared_driver);
|
|
||||||
}
|
|
||||||
return rc;
|
|
||||||
}
|
}
|
||||||
module_init(mv_xor_init);
|
module_init(mv_xor_init);
|
||||||
|
|
||||||
|
@ -1359,7 +1415,6 @@ module_init(mv_xor_init);
|
||||||
static void __exit mv_xor_exit(void)
|
static void __exit mv_xor_exit(void)
|
||||||
{
|
{
|
||||||
platform_driver_unregister(&mv_xor_driver);
|
platform_driver_unregister(&mv_xor_driver);
|
||||||
platform_driver_unregister(&mv_xor_shared_driver);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,10 @@
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
|
|
||||||
#define USE_TIMER
|
#define USE_TIMER
|
||||||
|
#define MV_XOR_POOL_SIZE PAGE_SIZE
|
||||||
#define MV_XOR_SLOT_SIZE 64
|
#define MV_XOR_SLOT_SIZE 64
|
||||||
#define MV_XOR_THRESHOLD 1
|
#define MV_XOR_THRESHOLD 1
|
||||||
|
#define MV_XOR_MAX_CHANNELS 2
|
||||||
|
|
||||||
#define XOR_OPERATION_MODE_XOR 0
|
#define XOR_OPERATION_MODE_XOR 0
|
||||||
#define XOR_OPERATION_MODE_MEMCPY 2
|
#define XOR_OPERATION_MODE_MEMCPY 2
|
||||||
|
@ -52,28 +54,11 @@
|
||||||
#define WINDOW_REMAP_HIGH(w) (0x290 + ((w) << 2))
|
#define WINDOW_REMAP_HIGH(w) (0x290 + ((w) << 2))
|
||||||
#define WINDOW_BAR_ENABLE(chan) (0x240 + ((chan) << 2))
|
#define WINDOW_BAR_ENABLE(chan) (0x240 + ((chan) << 2))
|
||||||
|
|
||||||
struct mv_xor_shared_private {
|
|
||||||
void __iomem *xor_base;
|
|
||||||
void __iomem *xor_high_base;
|
|
||||||
struct clk *clk;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* struct mv_xor_device - internal representation of a XOR device
|
|
||||||
* @pdev: Platform device
|
|
||||||
* @id: HW XOR Device selector
|
|
||||||
* @dma_desc_pool: base of DMA descriptor region (DMA address)
|
|
||||||
* @dma_desc_pool_virt: base of DMA descriptor region (CPU address)
|
|
||||||
* @common: embedded struct dma_device
|
|
||||||
*/
|
|
||||||
struct mv_xor_device {
|
struct mv_xor_device {
|
||||||
struct platform_device *pdev;
|
void __iomem *xor_base;
|
||||||
int id;
|
void __iomem *xor_high_base;
|
||||||
dma_addr_t dma_desc_pool;
|
struct clk *clk;
|
||||||
void *dma_desc_pool_virt;
|
struct mv_xor_chan *channels[MV_XOR_MAX_CHANNELS];
|
||||||
struct dma_device common;
|
|
||||||
struct mv_xor_shared_private *shared;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -96,11 +81,15 @@ struct mv_xor_chan {
|
||||||
spinlock_t lock; /* protects the descriptor slot pool */
|
spinlock_t lock; /* protects the descriptor slot pool */
|
||||||
void __iomem *mmr_base;
|
void __iomem *mmr_base;
|
||||||
unsigned int idx;
|
unsigned int idx;
|
||||||
|
int irq;
|
||||||
enum dma_transaction_type current_type;
|
enum dma_transaction_type current_type;
|
||||||
struct list_head chain;
|
struct list_head chain;
|
||||||
struct list_head completed_slots;
|
struct list_head completed_slots;
|
||||||
struct mv_xor_device *device;
|
dma_addr_t dma_desc_pool;
|
||||||
struct dma_chan common;
|
void *dma_desc_pool_virt;
|
||||||
|
size_t pool_size;
|
||||||
|
struct dma_device dmadev;
|
||||||
|
struct dma_chan dmachan;
|
||||||
struct mv_xor_desc_slot *last_used;
|
struct mv_xor_desc_slot *last_used;
|
||||||
struct list_head all_slots;
|
struct list_head all_slots;
|
||||||
int slots_allocated;
|
int slots_allocated;
|
||||||
|
|
|
@ -10,15 +10,14 @@
|
||||||
#include <linux/dmaengine.h>
|
#include <linux/dmaengine.h>
|
||||||
#include <linux/mbus.h>
|
#include <linux/mbus.h>
|
||||||
|
|
||||||
#define MV_XOR_SHARED_NAME "mv_xor_shared"
|
#define MV_XOR_NAME "mv_xor"
|
||||||
#define MV_XOR_NAME "mv_xor"
|
|
||||||
|
|
||||||
struct mv_xor_platform_data {
|
struct mv_xor_channel_data {
|
||||||
struct platform_device *shared;
|
|
||||||
int hw_id;
|
|
||||||
dma_cap_mask_t cap_mask;
|
dma_cap_mask_t cap_mask;
|
||||||
size_t pool_size;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct mv_xor_platform_data {
|
||||||
|
struct mv_xor_channel_data *channels;
|
||||||
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue