[PATCH] net: mvneta: explicitly disable BM on 64bit platform
From: Marcin Wojtas <hidden>
Date: 2016-03-31 06:49:22
Also in:
lkml, netdev
Possibly related (same subject, not in this thread)
- 2016-03-30 · [PATCH] net: mvneta: explicitly disable BM on 64bit platform · Jisheng Zhang <hidden>
Hi Jisheng, 2016-03-31 7:53 GMT+02:00 Jisheng Zhang [off-list ref]:
Hi Gregory, On Wed, 30 Mar 2016 17:11:41 +0200 Gregory CLEMENT wrote:quoted
Hi Jisheng, On mer., mars 30 2016, Jisheng Zhang [off-list ref] wrote:quoted
The mvneta BM can't work on 64bit platform, as the BM hardware expects buf virtual address to be placed in the first four bytes of mapped buffer, but obviously the virtual address on 64bit platform can't be stored in 4 bytes. So we have to explicitly disable BM on 64bit platform.Actually mvneta is used on Armada 3700 which is a 64bits platform. Is it true that the driver needs some change to use BM in 64 bits, but we don't have to disable it. Here is the 64 bits part of the patch we have currently on the hardware prototype. We have more things which are really related to the way the mvneta is connected to the Armada 3700 SoC. This code was not ready forThanks for the sharing. I think we could commit easy parts firstly, for example: the cacheline size hardcoding, either piece of your diff or my version: http://lists.infradead.org/pipermail/linux-arm-kernel/2016-March/418513.html
Since the commit: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/arch/arm64/include/asm/cache.h?id=97303480753e48fb313dc0e15daaf11b0451cdb8 detached L1_CACHE_BYTES from real cache size, I suggest, the macro should be: #define MVNETA_CPU_D_CACHE_LINE_SIZE cache_line_size() Regarding check after dma_alloc_coherent, I agree it's not necessary.
quoted
mainline but I prefer share it now instead of having the HWBM blindlyI have looked through the diff, it is for the driver itself on 64bit platforms, and it doesn't touch BM. The BM itself need to be disabled for 64bit, I'm not sure the BM could work on 64bit even with your diff. Per my understanding, the BM can't work on 64 bit, let's have a look at some piece of the mvneta_bm_construct() *(u32 *)buf = (u32)buf;
Indeed this particular part is different and unclear, I tried different options - with no success. I'm checking with design team now. Anyway, I managed to enable operation for HWBM on A3700 with one work-around in mvneta_hwbm_rx(): data = phys_to_virt(rx_desc->buf_phys_addr); Of course mvneta_bm, due to some silicone differences needed also a rework. Actually I'd wait with updating 64-bit parts of mvneta, until real support for such machine's controller is introduced. Basing on my experience with enabling neta on A3700, it turns out to be more changes. Best regards, Marcin