summaryrefslogtreecommitdiffstats
path: root/drivers/vfio
diff options
context:
space:
mode:
authorEric Auger <eric.auger@linaro.org>2015-11-03 13:20:57 -0500
committerAlex Williamson <alex.williamson@redhat.com>2015-11-03 14:55:21 -0500
commit0990822c98661bd625033f0d523b5c33566657ef (patch)
treefc7c9e0c3f3e53b83f2bcaab54c962a7b5f42cdc /drivers/vfio
parentdaac3bbedb8aba714a082d00e2292d462fa24397 (diff)
VFIO: platform: reset: AMD xgbe reset module
This patch introduces a module that registers and implements a low-level reset function for the AMD XGBE device. it performs the following actions: - reset the PHY - disable auto-negotiation - disable & clear auto-negotiation IRQ - soft-reset the MAC Those tiny pieces of code are inherited from the native xgbe driver. Signed-off-by: Eric Auger <eric.auger@linaro.org> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio')
-rw-r--r--drivers/vfio/platform/reset/Kconfig8
-rw-r--r--drivers/vfio/platform/reset/Makefile2
-rw-r--r--drivers/vfio/platform/reset/vfio_platform_amdxgbe.c127
3 files changed, 137 insertions, 0 deletions
diff --git a/drivers/vfio/platform/reset/Kconfig b/drivers/vfio/platform/reset/Kconfig
index 746b96b0003b..70cccc582bee 100644
--- a/drivers/vfio/platform/reset/Kconfig
+++ b/drivers/vfio/platform/reset/Kconfig
@@ -5,3 +5,11 @@ config VFIO_PLATFORM_CALXEDAXGMAC_RESET
5 Enables the VFIO platform driver to handle reset for Calxeda xgmac 5 Enables the VFIO platform driver to handle reset for Calxeda xgmac
6 6
7 If you don't know what to do here, say N. 7 If you don't know what to do here, say N.
8
9config VFIO_PLATFORM_AMDXGBE_RESET
10 tristate "VFIO support for AMD XGBE reset"
11 depends on VFIO_PLATFORM
12 help
13 Enables the VFIO platform driver to handle reset for AMD XGBE
14
15 If you don't know what to do here, say N.
diff --git a/drivers/vfio/platform/reset/Makefile b/drivers/vfio/platform/reset/Makefile
index 2a486af9f8fa..93f4e232697b 100644
--- a/drivers/vfio/platform/reset/Makefile
+++ b/drivers/vfio/platform/reset/Makefile
@@ -1,5 +1,7 @@
1vfio-platform-calxedaxgmac-y := vfio_platform_calxedaxgmac.o 1vfio-platform-calxedaxgmac-y := vfio_platform_calxedaxgmac.o
2vfio-platform-amdxgbe-y := vfio_platform_amdxgbe.o
2 3
3ccflags-y += -Idrivers/vfio/platform 4ccflags-y += -Idrivers/vfio/platform
4 5
5obj-$(CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET) += vfio-platform-calxedaxgmac.o 6obj-$(CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET) += vfio-platform-calxedaxgmac.o
7obj-$(CONFIG_VFIO_PLATFORM_AMDXGBE_RESET) += vfio-platform-amdxgbe.o
diff --git a/drivers/vfio/platform/reset/vfio_platform_amdxgbe.c b/drivers/vfio/platform/reset/vfio_platform_amdxgbe.c
new file mode 100644
index 000000000000..da5356f48d0b
--- /dev/null
+++ b/drivers/vfio/platform/reset/vfio_platform_amdxgbe.c
@@ -0,0 +1,127 @@
1/*
2 * VFIO platform driver specialized for AMD xgbe reset
3 * reset code is inherited from AMD xgbe native driver
4 *
5 * Copyright (c) 2015 Linaro Ltd.
6 * www.linaro.org
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <linux/module.h>
22#include <linux/kernel.h>
23#include <linux/init.h>
24#include <linux/io.h>
25#include <uapi/linux/mdio.h>
26#include <linux/delay.h>
27
28#include "vfio_platform_private.h"
29
30#define DMA_MR 0x3000
31#define MAC_VR 0x0110
32#define DMA_ISR 0x3008
33#define MAC_ISR 0x00b0
34#define PCS_MMD_SELECT 0xff
35#define MDIO_AN_INT 0x8002
36#define MDIO_AN_INTMASK 0x8001
37
38static unsigned int xmdio_read(void *ioaddr, unsigned int mmd,
39 unsigned int reg)
40{
41 unsigned int mmd_address, value;
42
43 mmd_address = (mmd << 16) | ((reg) & 0xffff);
44 iowrite32(mmd_address >> 8, ioaddr + (PCS_MMD_SELECT << 2));
45 value = ioread32(ioaddr + ((mmd_address & 0xff) << 2));
46 return value;
47}
48
49static void xmdio_write(void *ioaddr, unsigned int mmd,
50 unsigned int reg, unsigned int value)
51{
52 unsigned int mmd_address;
53
54 mmd_address = (mmd << 16) | ((reg) & 0xffff);
55 iowrite32(mmd_address >> 8, ioaddr + (PCS_MMD_SELECT << 2));
56 iowrite32(value, ioaddr + ((mmd_address & 0xff) << 2));
57}
58
59int vfio_platform_amdxgbe_reset(struct vfio_platform_device *vdev)
60{
61 struct vfio_platform_region *xgmac_regs = &vdev->regions[0];
62 struct vfio_platform_region *xpcs_regs = &vdev->regions[1];
63 u32 dma_mr_value, pcs_value, value;
64 unsigned int count;
65
66 if (!xgmac_regs->ioaddr) {
67 xgmac_regs->ioaddr =
68 ioremap_nocache(xgmac_regs->addr, xgmac_regs->size);
69 if (!xgmac_regs->ioaddr)
70 return -ENOMEM;
71 }
72 if (!xpcs_regs->ioaddr) {
73 xpcs_regs->ioaddr =
74 ioremap_nocache(xpcs_regs->addr, xpcs_regs->size);
75 if (!xpcs_regs->ioaddr)
76 return -ENOMEM;
77 }
78
79 /* reset the PHY through MDIO*/
80 pcs_value = xmdio_read(xpcs_regs->ioaddr, MDIO_MMD_PCS, MDIO_CTRL1);
81 pcs_value |= MDIO_CTRL1_RESET;
82 xmdio_write(xpcs_regs->ioaddr, MDIO_MMD_PCS, MDIO_CTRL1, pcs_value);
83
84 count = 50;
85 do {
86 msleep(20);
87 pcs_value = xmdio_read(xpcs_regs->ioaddr, MDIO_MMD_PCS,
88 MDIO_CTRL1);
89 } while ((pcs_value & MDIO_CTRL1_RESET) && --count);
90
91 if (pcs_value & MDIO_CTRL1_RESET)
92 pr_warn("%s XGBE PHY reset timeout\n", __func__);
93
94 /* disable auto-negotiation */
95 value = xmdio_read(xpcs_regs->ioaddr, MDIO_MMD_AN, MDIO_CTRL1);
96 value &= ~MDIO_AN_CTRL1_ENABLE;
97 xmdio_write(xpcs_regs->ioaddr, MDIO_MMD_AN, MDIO_CTRL1, value);
98
99 /* disable AN IRQ */
100 xmdio_write(xpcs_regs->ioaddr, MDIO_MMD_AN, MDIO_AN_INTMASK, 0);
101
102 /* clear AN IRQ */
103 xmdio_write(xpcs_regs->ioaddr, MDIO_MMD_AN, MDIO_AN_INT, 0);
104
105 /* MAC software reset */
106 dma_mr_value = ioread32(xgmac_regs->ioaddr + DMA_MR);
107 dma_mr_value |= 0x1;
108 iowrite32(dma_mr_value, xgmac_regs->ioaddr + DMA_MR);
109
110 usleep_range(10, 15);
111
112 count = 2000;
113 while (count-- && (ioread32(xgmac_regs->ioaddr + DMA_MR) & 1))
114 usleep_range(500, 600);
115
116 if (!count)
117 pr_warn("%s MAC SW reset failed\n", __func__);
118
119 return 0;
120}
121
122module_vfio_reset_handler("amd,xgbe-seattle-v1a", vfio_platform_amdxgbe_reset);
123
124MODULE_VERSION("0.1");
125MODULE_LICENSE("GPL v2");
126MODULE_AUTHOR("Eric Auger <eric.auger@linaro.org>");
127MODULE_DESCRIPTION("Reset support for AMD xgbe vfio platform device");