Commit f1299072 authored by David Daney's avatar David Daney Committed by Ralf Baechle

MIPS: Octeon: Set dma_masks for octeon_mgmt device.

This allows follow-on patches to dma mapping functions to work with
the octeon mgmt device..
Signed-off-by: default avatarDavid Daney <ddaney@caviumnetworks.com>
Patchwork: http://patchwork.linux-mips.org/patch/1632/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 334c86c4
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/irq.h> #include <linux/irq.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/dma-mapping.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
...@@ -301,6 +302,10 @@ static int __init octeon_mgmt_device_init(void) ...@@ -301,6 +302,10 @@ static int __init octeon_mgmt_device_init(void)
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out;
} }
/* No DMA restrictions */
pd->dev.coherent_dma_mask = DMA_BIT_MASK(64);
pd->dev.dma_mask = &pd->dev.coherent_dma_mask;
switch (port) { switch (port) {
case 0: case 0:
mgmt_port_resource.start = OCTEON_IRQ_MII0; mgmt_port_resource.start = OCTEON_IRQ_MII0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment