[PATCH 1/1] crypto: s5p-sss: Fix compilation error

2012-11-07 Thread Sachin Kamat
struct s3c2410_dma_client gets defined multiple times as it is defined in more than one header file. Changing it at the header file level causes many more build breakages as they are interdependent in a complex way. Hence fixing this problem by using the mach version of the header file. Without th

Re: [PATCH 1/5] ARM: AT91SAM9G45: fix crypto peripherals irq issue due to sparse irq support.

2012-11-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:31 Tue 06 Nov , Nicolas Royer wrote: > Spare irq support introduced by commit "8fe82a5 ARM: at91: sparse irq support" > involves to add the NR_IRQS_LEGACY offset to irq number. > > Signed-off-by: Nicolas Royer > Acked-by: Nicolas Ferre > Acked-by: Eric Bénard > Tested-by: Eric Bénard

Re: [PATCH 2/5 v2] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:27 Wed 07 Nov , Nicolas Royer wrote: > Only AES use DMA in AT91SAM9G45 (TDES and SHA use PDC). > > However latest Atmel TDES and SHA IP releases use DMA instead of PDC. > --> Atmel TDES and SHA drivers need DMA platform data for those IP releases. > > Goal of this patch is to use the

Re: [PATCH 2/5] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Eric Bénard
Hi Jean-Christophe, Le Wed, 7 Nov 2012 16:26:15 +0100, Jean-Christophe PLAGNIOL-VILLARD a écrit : > > @@ -1931,9 +1931,9 @@ static struct platform_device at91sam9g45_aes_device > > = { > > static void __init at91_add_device_aes(void) > > { > > struct at_dma_slave *atslave; > > - stru

Re: [PATCH 2/5 v2] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:59 Wed 07 Nov , Eric Bénard wrote: > Hi Jean-Christophe, > > Le Wed, 7 Nov 2012 17:45:23 +0100, > Jean-Christophe PLAGNIOL-VILLARD a écrit : > > > @@ -1900,7 +1900,7 @@ static void __init at91_add_device_tdes(void) {} > > > * ---

[PATCH 2/5 v3] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Nicolas Royer
Only AES use DMA in AT91SAM9G45 (TDES and SHA use PDC). However latest Atmel TDES and SHA IP releases use DMA instead of PDC. --> Atmel TDES and SHA drivers need DMA platform data for those IP releases. Goal of this patch is to use the same platform data structure for all Atmel crypto periphera

Re: [PATCH 2/5 v2] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Eric Bénard
Hi Jean-Christophe, Le Wed, 7 Nov 2012 17:45:23 +0100, Jean-Christophe PLAGNIOL-VILLARD a écrit : > > @@ -1900,7 +1900,7 @@ static void __init at91_add_device_tdes(void) {} > > * */ > > > > #if defined(CONFIG_CRYPTO_DEV_ATM

Re: [PATCH 2/5] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:32 Tue 06 Nov , Nicolas Royer wrote: > Only AES use DMA in AT91SAM9G45 (TDES and SHA use PDC). > > However latest Atmel TDES and SHA IP releases use DMA instead of PDC. > --> Atmel TDES and SHA drivers need DMA platform data for those IP releases. > > Goal of this patch is to use the

[PATCH 2/5 v2] ARM: AT91SAM9G45: same platform data structure for all crypto peripherals

2012-11-07 Thread Nicolas Royer
Only AES use DMA in AT91SAM9G45 (TDES and SHA use PDC). However latest Atmel TDES and SHA IP releases use DMA instead of PDC. --> Atmel TDES and SHA drivers need DMA platform data for those IP releases. Goal of this patch is to use the same platform data structure for all Atmel crypto periphera