Re: gtod/clocksource/clockevents documentation

2007-04-23 Thread Nicolas Ferre
in the upcoming kernel. Hope that it addresses this problem and that it will help you. Regards, -- Nicolas Ferre - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo

[PATCH] input/spi: add ads7843 support to ads7846 touchscreen driver

2007-02-16 Thread Nicolas Ferre
David Brownell : [..] Thanks! I'll be glad to see fewer versions of this driver floating around. And to see the next version of the ads7843 patches ... :) Hi, Here is the ads7843 support for the ads7846 touchscreen driver. It is very little and takes great advantage of the previous rework.

Re: [PATCH] input/spi: add ads7843 support to ads7846 touchscreen driver

2007-02-19 Thread Nicolas Ferre
= 1; + spi_message_add_tail(req-xfer[4], req-msg); + + req-xfer[5].rx_buf = req-scratch; + req-xfer[5].len = 2; + CS_CHANGE(req-xfer[5]); + spi_message_add_tail(req-xfer[5], req-msg); ts-irq_disabled = 1; disable_irq(spi-irq); Regards, -- Nicolas Ferre

[PATCH] input/spi: add ads7843 support to ads7846 touchscreen driver

2007-02-20 Thread Nicolas Ferre
Add support for the ads7843 touchscreen controller to the ads7846 driver code. The ads7843 support has now become almost trivial since the last rework. Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Index: linux-2.6.20-at91/drivers/input/touchscreen/ads7846.c

[PATCH] usb: at91_udc: correct hanging while disconnecting usb cable

2007-12-06 Thread Nicolas Ferre
Correct hanging while disconnecting the USB device cable. Prevent a race between vbus and UDP interrupts. This bug was tracked on at91sam9260ek boards. Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- A usb resume interrupt was firing after the vbus interrupt : the IP was then already

[PATCH] atmel_lcdfb: LCDC startup fix

2007-11-23 Thread Nicolas Ferre
] Signed-off-by: Andrew Victor [EMAIL PROTECTED] Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] Acked-by: Haavard Skinnemoen [EMAIL PROTECTED] --- Without this patch, the LCDC keeps running for some small time after the PWRCON:LCD_PWR has been cleared ; the FIFO suffers an underrun and on re-starting

Wifi chips on SDIO interface

2007-11-23 Thread Nicolas Ferre
to interface through SDIO ? Is an Atheros-based card support planned ? (maybe more a madwifi people question...) Thanks for your help. -- Nicolas Ferre - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http

[PATCH] MAINTAINERS: email update and add missing entry

2008-01-03 Thread Nicolas Ferre
MAINTAINERS email update add atmel_lcdfb entry Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- MAINTAINERS |8 +++- === --- a/MAINTAINERS +++ b/MAINTAINERS @@ -665,12 +665,18 @@ ATMEL AT91 MCI DRIVER P: Nicolas

Re: [PATCH] MAINTAINERS: email update and add missing entry

2008-01-03 Thread Nicolas Ferre
MAINTAINERS email update add atmel_lcdfb entry Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Resent because of a patch whitespace formatting issue. MAINTAINERS |8 +++- === --- a/MAINTAINERS +++ b/MAINTAINERS @@ -665,12

[PATCH v3 00/10] net/macb: driver enhancement concerning GEM support, ring logic and cleanup

2012-10-30 Thread Nicolas Ferre
/macb: clean up ring buffer logic net/macb: Offset first RX buffer by two bytes Jean-Christophe PLAGNIOL-VILLARD (1): net/macb: add pinctrl consumer support Nicolas Ferre (4): net/macb: remove macb_get_drvinfo() net/macb: tx status is more than 8 bits now net/macb: ethtool interface: add

[PATCH v3 01/10] net/macb: Add support for Gigabit Ethernet mode

2012-10-30 Thread Nicolas Ferre
From: Patrice Vilchez patrice.vilc...@atmel.com Add Gigabit Ethernet mode to GEM cadence IP and enable RGMII connection. Signed-off-by: Patrice Vilchez patrice.vilc...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 15

[PATCH v3 02/10] net/macb: memory barriers cleanup

2012-10-30 Thread Nicolas Ferre
From: Havard Skinnemoen hav...@skinnemoen.net Remove a couple of unneeded barriers and document the remaining ones. Signed-off-by: Havard Skinnemoen hav...@skinnemoen.net [nicolas.fe...@atmel.com: split patch in topics] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net

[PATCH v3 04/10] net/macb: remove macb_get_drvinfo()

2012-10-30 Thread Nicolas Ferre
This function has little meaning so remove it altogether and let ethtool core fill in the fields automatically. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Reviewed-by: Ben Hutchings bhutchi...@solarflare.com --- drivers/net/ethernet/cadence/macb.c | 11 --- 1 file changed, 11

[PATCH v3 03/10] net/macb: change debugging messages

2012-10-30 Thread Nicolas Ferre
...@atmel.com: split patch in topics, add ISR status] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet

[PATCH v3 05/10] net/macb: tx status is more than 8 bits now

2012-10-30 Thread Nicolas Ferre
On some revision of GEM, TSR status register has more information. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence

[PATCH v3 06/10] net/macb: clean up ring buffer logic

2012-10-30 Thread Nicolas Ferre
to newer kernel] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 168 +++- drivers/net/ethernet/cadence/macb.h | 22 +++-- 2 files changed, 122 insertions(+), 68 deletions(-) diff --git a/drivers/net/ethernet/cadence

[PATCH v3 07/10] net/macb: ethtool interface: add register dump feature

2012-10-30 Thread Nicolas Ferre
Add macb_get_regs() ethtool function and its helper function: macb_get_regs_len(). The version field is deduced from the IP revision which gives the MACB or GEM information. An additional version field is reserved. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Reviewed-by: Ben Hutchings

[PATCH v3 08/10] net/macb: better manage tx errors

2012-10-30 Thread Nicolas Ferre
napi for RX for now. With this sequence, we do not need a special check during the xmit method as the packets will be caught by TX disable during workqueue execution. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 166

[PATCH v3 09/10] net/macb: Offset first RX buffer by two bytes

2012-10-30 Thread Nicolas Ferre
and purpose as NET_IP_ALIGN. Signed-off-by: Havard Skinnemoen hav...@skinnemoen.net [nicolas.fe...@atmel.com: adapt to newer kernel] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/net/ethernet/cadence/macb.c | 23 --- 1 file changed, 16 insertions(+), 7

[PATCH v3 10/10] net/macb: add pinctrl consumer support

2012-10-30 Thread Nicolas Ferre
-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: net...@vger.kernel.org --- drivers/net/ethernet/cadence/macb.c | 13 + 1 file changed, 13 insertions(+) diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c index 4d51877..eae3d74 100644 --- a/drivers/net/ethernet

Re: [PATCH v3 00/10] net/macb: driver enhancement concerning GEM support, ring logic and cleanup

2012-10-30 Thread Nicolas Ferre
On 10/30/2012 11:17 AM, Nicolas Ferre : This is an enhancement work that began several years ago. I try to catchup with some performance improvement that has been implemented then by Havard. The ring index logic and the TX error path modification are the biggest changes but some cleanup

[PATCH] net/at91_ether: fix the use of macb structure

2012-10-30 Thread Nicolas Ferre
Due to the use of common structure in at91_ether and macb drivers, change the name of DMA descriptor structures in at91_ether as well: dma_desc = macb_dma_desc Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Hi, This patch is a fix for the patch [PATCH v3 06/10] net/macb: clean up ring

Re: [PATCH v3 06/10] net/macb: clean up ring buffer logic

2012-10-31 Thread Nicolas Ferre
is that? head and tail can never be more than TX_RING_SIZE apart, so it shouldn't make any difference. Absolutely. Best regards, -- Nicolas Ferre -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info

Re: [PATCH v3 06/10] net/macb: clean up ring buffer logic

2012-10-31 Thread Nicolas Ferre
On 10/31/2012 10:59 AM, Nicolas Ferre : On 10/30/2012 07:22 PM, HÃ¥vard Skinnemoen : On Tue, Oct 30, 2012 at 4:12 AM, David Laight david.lai...@aculab.com wrote: Instead of masking head and tail every time we increment them, just let them wrap through UINT_MAX and mask them when

Re: [PATCH v3 10/10] net/macb: add pinctrl consumer support

2012-10-31 Thread Nicolas Ferre
On 10/30/2012 06:37 PM, Joachim Eastwood : On 30 October 2012 11:18, Nicolas Ferre nicolas.fe...@atmel.com wrote: From: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com If no pinctrl available just report a warning as some architecture may not need to do anything. Signed-off-by: Jean

[PATCH v4 00/10] net/macb: driver enhancement concerning GEM support, ring logic and cleanup

2012-10-31 Thread Nicolas Ferre
not accurate: removed Havard Skinnemoen (4): net/macb: memory barriers cleanup net/macb: change debugging messages net/macb: clean up ring buffer logic net/macb: Offset first RX buffer by two bytes Jean-Christophe PLAGNIOL-VILLARD (1): net/macb: add pinctrl consumer support Nicolas Ferre (4

[PATCH v4 02/10] net/macb: memory barriers cleanup

2012-10-31 Thread Nicolas Ferre
From: Havard Skinnemoen hav...@skinnemoen.net Remove a couple of unneeded barriers and document the remaining ones. Signed-off-by: Havard Skinnemoen hav...@skinnemoen.net [nicolas.fe...@atmel.com: split patch in topics] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim

[PATCH v4 03/10] net/macb: change debugging messages

2012-10-31 Thread Nicolas Ferre
...@atmel.com: split patch in topics, add ISR status] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet/cadence/macb.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/drivers/net

[PATCH v4 04/10] net/macb: remove macb_get_drvinfo()

2012-10-31 Thread Nicolas Ferre
This function has little meaning so remove it altogether and let ethtool core fill in the fields automatically. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Reviewed-by: Ben Hutchings bhutchi...@solarflare.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet

[PATCH v4 07/10] net/macb: ethtool interface: add register dump feature

2012-10-31 Thread Nicolas Ferre
Add macb_get_regs() ethtool function and its helper function: macb_get_regs_len(). The version field is deduced from the IP revision which gives the MACB or GEM information. An additional version field is reserved. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Reviewed-by: Ben Hutchings

[PATCH v4 10/10] net/macb: add pinctrl consumer support

2012-10-31 Thread Nicolas Ferre
headers] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet/cadence/macb.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c index c1f20b0

[PATCH v4 01/10] net/macb: Add support for Gigabit Ethernet mode

2012-10-31 Thread Nicolas Ferre
From: Patrice Vilchez patrice.vilc...@atmel.com Add Gigabit Ethernet mode to GEM cadence IP and enable RGMII connection. Signed-off-by: Patrice Vilchez patrice.vilc...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net

[PATCH v4 09/10] net/macb: Offset first RX buffer by two bytes

2012-10-31 Thread Nicolas Ferre
and purpose as NET_IP_ALIGN. Signed-off-by: Havard Skinnemoen hav...@skinnemoen.net [nicolas.fe...@atmel.com: adapt to newer kernel] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet/cadence/macb.c | 23

[PATCH v4 08/10] net/macb: better manage tx errors

2012-10-31 Thread Nicolas Ferre
napi for RX for now. With this sequence, we do not need a special check during the xmit method as the packets will be caught by TX disable during workqueue execution. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet

[PATCH v4 06/10] net/macb: clean up ring buffer logic

2012-10-31 Thread Nicolas Ferre
...@skinnemoen.net [nicolas.fe...@atmel.com: split patch in topics, adapt to newer kernel] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet/cadence/at91_ether.c | 6 +- drivers/net/ethernet/cadence/macb.c | 172

[PATCH v4 05/10] net/macb: tx status is more than 8 bits now

2012-10-31 Thread Nicolas Ferre
On some revision of GEM, TSR status register has more information. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Tested-by: Joachim Eastwood manab...@gmail.com --- drivers/net/ethernet/cadence/macb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet

Re: [PATCH 14/24] USB: ohci: merge ohci_finish_controller_resume with ohci_resume

2012-10-05 Thread Nicolas Ferre
HCD_FLAG_HW_ACCESSIBLE, which is now handled by ohci_resume(). Signed-off-by: Florian Fainelli flor...@openwrt.org --- drivers/usb/host/ohci-at91.c |2 +- Seems ok for AT91, so Acked-by: Nicolas Ferre nicolas.fe...@atmel.com Thanks Florian, bye, drivers/usb/host/ohci-ep93xx.c |2

Re: [PATCH] net/at91_ether: fix the use of macb structure

2012-11-04 Thread Nicolas Ferre
On 11/03/2012 08:04 PM, David Miller : From: Nicolas Ferre nicolas.fe...@atmel.com Date: Tue, 30 Oct 2012 12:30:28 +0100 Due to the use of common structure in at91_ether and macb drivers, change the name of DMA descriptor structures in at91_ether as well: dma_desc = macb_dma_desc Signed

[PATCH 0/8] at91: 3.7 fixes patch series

2012-10-24 Thread Nicolas Ferre
(1): ARM: at91/tc: fix typo in the DT document Marek Belisko (1): ARM: at91/dts: at91sam9g20ek_common: Fix typos in buttons labels. Nicolas Ferre (2): ARM: at91: fix external interrupts in non-DT case ARM: at91: fix external interrupt specification in board code Documentation/devicetree

[PATCH 1/8] ARM: at91/tc: fix typo in the DT document

2012-10-24 Thread Nicolas Ferre
From: Josh Wu josh...@atmel.com Signed-off-by: Josh Wu josh...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: stable sta...@vger.kernel.org [v3.4] --- Documentation/devicetree/bindings/arm/atmel-at91.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 3/8] ARM: at91: fix external interrupts in non-DT case

2012-10-24 Thread Nicolas Ferre
Management of external interrupts has changed but the non-DT code has not integrated these changes. Add a mask to pass external irq specification from SoC specific code to the at91_aic_init() function. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: stable sta...@vger.kernel.org [v3.6

[PATCH 4/8] ARM: at91: fix external interrupt specification in board code

2012-10-24 Thread Nicolas Ferre
Since the switch to sparse irq, we have to add the NR_IRQS_LEGACY offset to static irq numbers. It has been forgotten on these SPI irq definitions in board code. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: stable sta...@vger.kernel.org [v3.6] --- arch/arm/mach-at91/board-neocore926

[PATCH 5/8] ARM: at91/dts: at91sam9g20ek_common: Fix typos in buttons labels.

2012-10-24 Thread Nicolas Ferre
From: Marek Belisko marek.beli...@open-nandra.com Signed-off-by: Marek Belisko marek.beli...@open-nandra.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9g20ek_common.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot

[PATCH 6/8] ARM: at91/i2c: change id to let i2c-gpio work

2012-10-24 Thread Nicolas Ferre
if using -1, we do not know the value of busnum In order to solve this issue, set the platform device ID as a fix number Here using 0 to match the busnum used in i2c_regsiter_board_info() Signed-off-by: Bo Shen voice.s...@atmel.com Acked-by: Jean Delvare kh...@linux-fr.org Signed-off-by: Nicolas

[PATCH 8/8] ARM: at91: drop duplicated config SOC_AT91SAM9 entry

2012-10-24 Thread Nicolas Ferre
From: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/mach-at91/Kconfig | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/arch

[PATCH 7/8] ARM: at91/i2c: change id to let i2c-at91 work

2012-10-24 Thread Nicolas Ferre
if using -1, we do not know the value of busnum In order to solve this issue, set the platform device ID as a fix number Here using 0 to match the busnum used in i2c_regsiter_board_info() Signed-off-by: Bo Shen voice.s...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch

[PATCH 2/8] ARM: at91: at91sam9g10: fix SOC type detection

2012-10-24 Thread Nicolas Ferre
not integrate this check to the list just above because we also have to make sure that the extended id is disregarded. Signed-off-by: Ivan Shugov ivan.shu...@gmail.com [nicolas.fe...@atmel.com: change commit message] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: stable sta...@vger.kernel.org [v3.1

[GIT PULL] at91: fixes for 3.7-rc3

2012-10-25 Thread Nicolas Ferre
: fix typo in the DT document Marek Belisko (1): ARM: at91/dts: at91sam9g20ek_common: Fix typos in buttons labels. Nicolas Ferre (2): ARM: at91: fix external interrupts in non-DT case ARM: at91: fix external interrupt specification in board code Documentation/devicetree/bindings

Re: [PATCH v2 0/9] net/macb: driver enhancement concerning GEM support, ring logic and cleanup

2012-10-26 Thread Nicolas Ferre
David, On 09/19/2012 01:55 PM, Nicolas Ferre : This is an enhancement work that began several years ago. I try to catchup with some performance improvement that has been implemented then by Havard. The ring index logic and the TX error path modification are the biggest changes but some

Re: [PATCH 2/2] MAINTAINERS: add pinctrl atmel at91 entry

2012-10-29 Thread Nicolas Ferre
On 10/27/2012 07:53 PM, Jean-Christophe PLAGNIOL-VILLARD : Cc: linux-kernel@vger.kernel.org Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com --- MAINTAINERS |6 ++ 1 file changed, 6 insertions(+) diff --git

Re: linux-next: manual merge of the arm-soc tree with the usb tree

2012-11-13 Thread Nicolas Ferre
tree and commit 2484575268e2 (arm: at91: drop machine defconfig) from the arm-soc tree. The latter deletes the file, so I did that and can carry the fix as necessary (no action is required). Absolutely, thanks Stephen. - -- Nicolas Ferre -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11

Re: linux-next: manual merge of the arm-soc tree with the usb tree

2012-11-13 Thread Nicolas Ferre
tree and commit 2484575268e2 (arm: at91: drop machine defconfig) from the arm-soc tree. The latter deleted the file so I did that and can carry the fix as necessary (no action is required). Yes. Thanks a lot Stephen. Best regards, - -- Nicolas Ferre -BEGIN PGP SIGNATURE- Version

Re: linux-next: manual merge of the arm-soc tree with the pinctrl tree

2012-11-13 Thread Nicolas Ferre
and commit bcd2360c1ff9 (arm: at91: move platfarm_data to include/linux/platform_data/atmel.h) from the arm-soc tree. I fixed it up (see below) and can carry the fix as necessary (no action is required). Stephen, it is the proper merge. Thanks a lot. Best regards, - -- Nicolas Ferre -BEGIN

Re: TR: Neep help with my MMC driver ...

2007-07-20 Thread Nicolas Ferre
+patch.AT91 run on my AT91sam9260. I must use the MMC. But it doesn't work . and I try since the begin of this week This is what I do : Please use the very last patchset developed those last days for at91_mci. Regards, -- Nicolas Ferre - To unsubscribe from this list: send the line

[PATCH] bug in AT91 MCI suspend routines

2007-08-30 Thread Nicolas Ferre
on that pin, the system gets a FIQ request, that causes a crash. Signed-off-by: Anti Sullin [EMAIL PROTECTED] Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Original patch from Anti Sullin reviewed by Andrew Victor and Marc Pignat ; thank you to all of you. drivers/mmc/host/at91_mci.c |6

[PATCH] mmc: at91_mci: add multiwrite cap

2007-08-08 Thread Nicolas Ferre
From: Wu Xuan [EMAIL PROTECTED] Add multiwrite support capability. Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- One liner Has been in Andrew Victor's patchset for a long time. Index: b/drivers/mmc/host/at91_mci.c

[PATCH] mmc: at91_mci: remove whitespace at the end of lines

2007-08-08 Thread Nicolas Ferre
Some cleanup with whitespace/tab at the end of lines. Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Index: b/drivers/mmc/host/at91_mci.c === --- a/drivers/mmc/host/at91_mci.c +++ b/drivers/mmc/host/at91_mci.c @@ -83,7 +83,7

Re: [PATCH] mmc: at91_mci: add multiwrite cap

2007-08-08 Thread Nicolas Ferre
Pierre Ossman : On Wed, 08 Aug 2007 11:52:43 +0200 Nicolas Ferre [EMAIL PROTECTED] wrote: From: Wu Xuan [EMAIL PROTECTED] Add multiwrite support capability. Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Just like that? :) If I could just bother you with testing the included patch

Re: [PATCH] mmc: at91_mci: add multiwrite cap

2007-08-09 Thread Nicolas Ferre
Pierre Ossman : On Wed, 08 Aug 2007 16:45:02 +0200 Nicolas Ferre [EMAIL PROTECTED] wrote: Pierre, I am a little confused : the probe function does not seem to get called... (I tried both module an in-kernel form / inserting sd or mmc cards). The modules is correctly inserted

[PATCH] mmc: at91_mci: cleanup: use MCI_ERRORS

2007-10-17 Thread Nicolas Ferre
From: Andrew Victor [EMAIL PROTECTED] A small MMC driver cleanup. Use the defined AT91_MCI_ERRORS in at91_mci_completed_command() instead of specifying all the error bits individually. Signed-off-by: Andrew Victor [EMAIL PROTECTED] Signed-off-by: Nicolas Ferre [EMAIL PROTECTED] --- Index

[PATCH] net/macb: fix error return code in macb_probe()

2013-04-15 Thread Nicolas Ferre
Fix to return a negative error code from the error handling case instead of 0, as returned elsewhere in this function. Original-idea-by: yongjun_...@trendmicro.com.cn Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Hi, This fix was written originally for at91_ether.c and I found

[PATCH] dmaengine: at_hdmac: fix race condition in atc_advance_work()

2013-04-16 Thread Nicolas Ferre
that DMA channel is idle before calling atc_complete_all() which makes the BUG_ON() protection useless. Signed-off-by: Ludovic Desroches ludovic.desroc...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Linus, We have identified a race condition on the Atmel ARM-based AT91 DMA

Re: [PATCH v2 0/7] pcmcia: at91_cf: clean up and add DT support

2013-04-17 Thread Nicolas Ferre
On 04/17/2013 10:39 AM, Fabio Porcedda : On Thu, Mar 21, 2013 at 12:40 PM, Nicolas Ferre nicolas.fe...@atmel.com wrote: These patches clean up at91_cf a bit and add DT bindings. It is based on a previous series from Joachim Eastwood and other cleanup patches by Fabio and Laurent. I have

[PATCH for 3.9-final] dmaengine: at_hdmac: fix race condition in atc_advance_work()

2013-04-18 Thread Nicolas Ferre
that DMA channel is idle before calling atc_complete_all() which makes the BUG_ON() protection useless. Signed-off-by: Ludovic Desroches ludovic.desroc...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Acked-by: Vinod Koul vinod.k...@intel.com --- Linus, I re-send the patch with Vinod's

Re: [PATCH v3] ARM: at91: add Acme Systems Aria G25 board

2013-04-18 Thread Nicolas Ferre
On 04/04/2013 07:03 PM, Douglas Gilbert : On 13-04-04 11:42 AM, Nicolas Ferre wrote: From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Hi all, Here is the third revision of this patch

Re: [PATCH v3] ARM: at91: add Acme Systems Aria G25 board

2013-04-18 Thread Nicolas Ferre
On 04/18/2013 11:01 AM, Nicolas Ferre : On 04/04/2013 07:03 PM, Douglas Gilbert : [..] The lack of use of uart1 is for my own, private reasons. I think it would be more generally useful to show uart1's definition and disable it as shown in the attached patch fragment. Well, if uart1

[PATCH 0/5] ARM: at91: some more DT enhancements

2013-04-18 Thread Nicolas Ferre
Addition of the Acme systems Fox G20 board and some additions to the at91sam9x5 DT and Aria board. Douglas Gilbert (1): ARM: at91: add Acme Systems Fox G20 board Nicolas Ferre (4): ARM: at91: at91sam9x5 RTC is not compatible with at91rm9200 one ARM: at91/at91-ariag25.dts: add RTC node

[PATCH 1/5] ARM: at91: at91sam9x5 RTC is not compatible with at91rm9200 one

2013-04-18 Thread Nicolas Ferre
Due to a bug with RTC IMR, we cannot consider at91sam9x5 RTC compatible with the previous one. Modify DT compatibility string, even if the driver is not yet modified to take it into account. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9x5.dtsi | 2 +- 1 file

[PATCH 2/5] ARM: at91/at91-ariag25.dts: add RTC node

2013-04-18 Thread Nicolas Ferre
Reported-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91-ariag25.dts | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/at91-ariag25.dts b/arch/arm/boot/dts/at91-ariag25.dts index c7aebba..1de619c

[PATCH 3/5] ARM: at91/at91sam9x5.dtsi: add UART0/1 nodes

2013-04-18 Thread Nicolas Ferre
Reported-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91sam9x5.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi index

[PATCH 4/5] ARM: at91/at91-ariag25.dts: UART0/1 nodes are disabled

2013-04-18 Thread Nicolas Ferre
UART0 is moved to generic at91sam9x5.dtsi file. Both uarts are disabled as the corresponding pins on Aria documentation are shown as GPIOs. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/at91-ariag25.dts | 17 +++-- 1 file changed, 11 insertions(+), 6

[PATCH 5/5] ARM: at91: add Acme Systems Fox G20 board

2013-04-18 Thread Nicolas Ferre
From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/Makefile| 1 + arch/arm/boot/dts/at91-foxg20.dts | 166 ++ 2 files changed

Re: [PATCH 18/19] ARM: at91: suspend both memory controllers on at91sam9263

2013-04-18 Thread Nicolas Ferre
this paragraph: now you are using the proper fix with proper RAM type. Signed-off-by: Arnd Bergmann a...@arndb.de Cc: Nicolas Ferre nicolas.fe...@atmel.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com What is the future of this patch series: do you want us to take this patch separately

Re: [PATCH 18/19] ARM: at91: suspend both memory controllers on at91sam9263

2013-04-18 Thread Nicolas Ferre
On 04/18/2013 04:15 PM, Arnd Bergmann : On Thursday 18 April 2013, Nicolas Ferre wrote: This patch blindly removes the warning and changes the at91sam9263 to use the same code at at91sam9g45, which may or may not be the right solution. If it is not, maybe someone could provide a better fix

[GIT PULL] at91: soc for 3.10 #3

2013-04-18 Thread Nicolas Ferre
: suspend both memory controllers on at91sam9263 Nicolas Ferre (1): ARM: at91: change Unknown qualifier SoC subtype handling arch/arm/mach-at91/cpuidle.c | 2 ++ arch/arm/mach-at91/include/mach/cpu.h | 9 ++--- arch/arm/mach-at91/pm.c | 2 ++ arch/arm/mach-at91/pm.h

Re: [PATCH 5/5] ARM: at91: add Acme Systems Fox G20 board

2013-04-18 Thread Nicolas Ferre
On 04/18/2013 03:01 PM, Nicolas Ferre : From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/Makefile| 1 + arch/arm/boot/dts/at91-foxg20.dts | 166

Re: [PATCH 5/5] ARM: at91: add Acme Systems Fox G20 board

2013-04-19 Thread Nicolas Ferre
On 04/18/2013 06:34 PM, Nicolas Ferre : On 04/18/2013 03:01 PM, Nicolas Ferre : From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/Makefile| 1 + arch/arm

[PATCH] ARM: at91/sama5d34ek.dts: remove not needed compatibility string

2013-04-19 Thread Nicolas Ferre
atmel,sama5ek compatibility sting does not correspond to a useful board configuration. This d35ek.dts is the only sama5d3 .dts file affected. Reported-by: Josh Wu josh...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/sama5d34ek.dts | 2 +- 1 file changed, 1

Re: [PATCH] ARM: at91/sama5d34ek.dts: remove not needed compatibility string

2013-04-19 Thread Nicolas Ferre
On 04/19/2013 11:35 AM, Nicolas Ferre : atmel,sama5ek compatibility sting does not correspond to a useful board configuration. This d35ek.dts is the only sama5d3 s/d35/d34/ sorry. .dts file affected. Reported-by: Josh Wu josh...@atmel.com Signed-off-by: Nicolas Ferre nicolas.fe

Re: [PATCH] rtc: rtc-at91rm9200: fix missing iounmap

2013-04-19 Thread Nicolas Ferre
On 04/11/2013 04:38 PM, Johan Hovold : Add missing iounmap to probe error path and remove. Cc: stable sta...@vger.kernel.org Signed-off-by: Johan Hovold jhov...@gmail.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com Andrew, can you take this one please? (https://patchwork.kernel.org

[PATCH 5/5 v2] ARM: at91: add Acme Systems Fox G20 board

2013-04-19 Thread Nicolas Ferre
From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com [nicolas.fe...@atmel.com: re-arranging nodes, removing nodes and some comments] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- v2: - removed the SPI node arch/arm/boot/dts/Makefile

Re: [PATCH 1/5] ARM: at91: at91sam9x5 RTC is not compatible with at91rm9200 one

2013-04-19 Thread Nicolas Ferre
On 04/19/2013 03:53 PM, Sergei Shtylyov : Hello. On 18-04-2013 17:01, Nicolas Ferre wrote: Due to a bug with RTC IMR, we cannot consider at91sam9x5 RTC compatible with the previous one. Modify DT compatibility string, even if the driver is not yet modified to take it into account

Re: [PATCH 1/5] ARM: at91: at91sam9x5 RTC is not compatible with at91rm9200 one

2013-04-19 Thread Nicolas Ferre
On 04/19/2013 04:49 PM, Sergei Shtylyov : On 19-04-2013 18:05, Nicolas Ferre wrote: Due to a bug with RTC IMR, we cannot consider at91sam9x5 RTC compatible with the previous one. Modify DT compatibility string, even if the driver is not yet modified to take it into account. Signed-off

Re: [GIT PULL] at91: DT changes for 3.10 #2

2013-04-04 Thread Nicolas Ferre
On 04/03/2013 09:45 AM, Nicolas Ferre : On 04/02/2013 08:49 PM, Olof Johansson : On Fri, Mar 29, 2013 at 03:59:39PM +0100, Nicolas Ferre wrote: Arnd, Olof, Here is a pull-request for AT91 that is dedicated to Device Tree modifications. It is stacked on the material that you already have

Re: [PATCH v2] ARM: at91: add Acme Systems Aria G25 board

2013-04-04 Thread Nicolas Ferre
On 04/03/2013 09:10 PM, Douglas Gilbert : On 13-04-02 02:48 PM, Olof Johansson wrote: Hi, I just saw this since it came in through a pull request On Tue, Mar 26, 2013 at 4:39 AM, Nicolas Ferre nicolas.fe...@atmel.com wrote: From: Douglas Gilbert dgilb...@interlog.com Signed-off

[PATCH v3] ARM: at91: add Acme Systems Aria G25 board

2013-04-04 Thread Nicolas Ferre
From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Hi all, Here is the third revision of this patch. I plan to include it in a pull-request real-soon-now! v3: - move to at91- prefix for .dts[i

[PATCH v2] ARM: at91/at91sam9260.dtsi: fix u(s)art pinctrl encoding

2013-04-04 Thread Nicolas Ferre
From: Douglas Gilbert dgilb...@interlog.com Signed-off-by: Douglas Gilbert dgilb...@interlog.com [nicolas.fe...@atmel.com: fix rts/cts for usart3] Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com Cc: stable sta...@vger.kernel.org #3.8+ --- Hi, v2: - add commit message - correct rts/cts

[GIT PULL] at91: DT changes for 3.10 #3

2013-04-04 Thread Nicolas Ferre
encoding Ludovic Desroches (1): ARM: at91: dts: add adc resolution stuff Nicolas Ferre (5): ARM: at91/at91sam9x5: add RTC node ARM: at91/trivial: typos in compatible property ARM: at91/trivial: fix model name for SAM9G15-EK ARM: at91: remove partial parameter

Re: [PATCH] Revert drivers/rtc/rtc-at91rm9200.c: use a variable for storing IMR

2013-04-05 Thread Nicolas Ferre
On 04/03/2013 12:18 PM, Nicolas Ferre : On 04/03/2013 11:54 AM, Johan Hovold : This reverts commit 0ef1594c017521ea89278e80fe3f80dafb17abde. This patch introduced a few races which cannot be easily fixed with a small follow-up patch. Furthermore, the SoC with the broken hardware register

[PATCH] Revert drivers/rtc/rtc-at91rm9200.c: use a variable for storing IMR

2013-04-05 Thread Nicolas Ferre
, which this driver currently does not support. Cc: stable sta...@vger.kernel.org Signed-off-by: Johan Hovold jhov...@gmail.com Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- Linus, As suggested by Greg, I send you directly this revert patch. I hope it will join your tree before 3.9-final

Re: [PATCH] ARM: at91: remove unused dbgu_readl() macro

2013-04-08 Thread Nicolas Ferre
On 04/03/2013 11:25 AM, Nicolas Ferre : Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com I stack this up on at91-3.10-cleanup right now. --- arch/arm/mach-at91/include/mach/at91_dbgu.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/arm/mach-at91/include/mach/at91_dbgu.h

Re: [PATCH 1/2] ARM: at91/setup: fix trivial typos

2013-04-08 Thread Nicolas Ferre
On 04/07/2013 04:49 PM, Johan Hovold : Fix a few trivial typos in panic, warning and debug messages. Signed-off-by: Johan Hovold jhov...@gmail.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/mach-at91/setup.c | 8 1 file changed, 4 insertions(+), 4 deletions

Re: [PATCH 2/2] ARM: at91: remove trailing semicolon from macros

2013-04-08 Thread Nicolas Ferre
On 04/07/2013 04:49 PM, Johan Hovold : Remove trailing semicolon from register-access macros. Signed-off-by: Johan Hovold jhov...@gmail.com Acked-by: Nicolas Ferre nicolas.fe...@atmel.com Now in at91-3.10-cleanup. Thanks, --- arch/arm/mach-at91/at91_rstc.h| 2 +- arch

Re: [GIT PULL] at91: DT changes for 3.10 #3

2013-04-09 Thread Nicolas Ferre
On 04/04/2013 06:59 PM, Nicolas Ferre : Arnd, Olof, Here is the refreshed pull-request for AT91 that is dedicated to Device Tree modifications. It is stacked on the material that you already have for 3.10 in your arm-soc/at91/dt branch. Following our discussion with Arnd, I added the non

[GIT PULL] at91: little cleanup for 3.10 #3

2013-04-09 Thread Nicolas Ferre
) Trivial typos and some macros removal modification Johan Hovold (2): ARM: at91/setup: fix trivial typos ARM: at91: remove trailing semicolon from macros Nicolas Ferre (1): ARM: at91

[PATCH] mmc: atmel-mci: remove include mach/cpu.h

2013-04-09 Thread Nicolas Ferre
Header file not needed anymore as we have removed the calls to cpu_is_xxx() macro. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- drivers/mmc/host/atmel-mci.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index e75774f

[PATCH] ARM: at91: change Unknown qualifier SoC subtype handling

2013-04-09 Thread Nicolas Ferre
An AT91 SoC that doesn't have a subtype is shown as Unknown in the Linux log message which is not correct. This was leading to confusion so, add a none qualifier to the subtype property and set this one in the appropriate cases. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm

Re: [rtc-linux] Re: [PATCH v2 0/5] ARM: at91: fix hanged boot

2013-04-12 Thread Nicolas Ferre
. Arguably, the relevant interrupts could also be disabled in bootloaders, but I suggest fixing it in the kernel once and for all. Thanks, Johan -- Nicolas Ferre -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

[GIT PULL] at91: tiny cleanup for 3.10 #2

2013-03-29 Thread Nicolas Ferre
Arnd, Olof, This is a one-line cleanup patch. I have made a pull-request anyway because I do not want to mix it with my upcoming DT pull-request. I guess that you can simply cherry-pick the patch if you want. It is based on material that you already have in arm-soc/at91/cleanup branch. Thanks,

[GIT PULL] at91: DT changes for 3.10 #2

2013-03-29 Thread Nicolas Ferre
/at91sam9x5ek.dtsi | 7 +- 13 files changed, 230 insertions(+), 12 deletions(-) create mode 100644 arch/arm/boot/dts/ariag25.dts -- Nicolas Ferre -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

  1   2   3   4   5   6   7   8   9   10   >