[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1411492862884.42316@freescale.com>
Date: Tue, 23 Sep 2014 17:21:06 +0000
From: Jingchang Lu <jingchang.lu@...escale.com>
To: Russell King - ARM Linux <linux@....linux.org.uk>
CC: "vinod.koul@...el.com" <vinod.koul@...el.com>,
"dmaengine@...r.kernel.org" <dmaengine@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>
Subject: Re: [PATCH] dmaengine: fsl-edma: fixup reg offset and hw S/G support
in big-endian model
_______________________________________
From: Russell King - ARM Linux <linux@....linux.org.uk>
Sent: Tuesday, September 23, 2014 6:37 PM
To: Lu Jingchang-B35083
Cc: vinod.koul@...el.com; dmaengine@...r.kernel.org; linux-kernel@...r.kernel.org; linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] dmaengine: fsl-edma: fixup reg offset and hw S/G support in big-endian model
On Tue, Sep 23, 2014 at 05:15:19PM +0800, Jingchang Lu wrote:
> static u16 edma_readw(struct fsl_edma_engine *edma, void __iomem *addr)
> {
> - if (edma->big_endian)
> - return ioread16be(addr);
> - else
> + u32 dst;
This should be unsigned long, if it needs to exist.
> + /* swap the reg offset for these in big-endian mode */
> + if (edma->big_endian) {
> + dst = ((u32)addr & ~0x3) | (((u32)addr & 0x3) ^ 0x2);
This can be simplified to:
addr = (void __iomem *)((unsigned long)addr ^ 2);
Ditto for all the other cases.
I will do that, Thanks.
Best Regards,
Jingchang
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists