KVM: Introduce gfn_to_hva_memslot_prot
[linux/fpc-iii.git] / arch / tile / gxio / usb_host.c
blob785afad7922eed1d1837a36d488ca7a30d399022
1 /*
2 * Copyright 2012 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
17 * Implementation of USB gxio calls.
20 #include <linux/io.h>
21 #include <linux/errno.h>
22 #include <linux/module.h>
24 #include <gxio/iorpc_globals.h>
25 #include <gxio/iorpc_usb_host.h>
26 #include <gxio/kiorpc.h>
27 #include <gxio/usb_host.h>
29 int gxio_usb_host_init(gxio_usb_host_context_t *context, int usb_index,
30 int is_ehci)
32 char file[32];
33 int fd;
35 if (is_ehci)
36 snprintf(file, sizeof(file), "usb_host/%d/iorpc/ehci",
37 usb_index);
38 else
39 snprintf(file, sizeof(file), "usb_host/%d/iorpc/ohci",
40 usb_index);
42 fd = hv_dev_open((HV_VirtAddr) file, 0);
43 if (fd < 0) {
44 if (fd >= GXIO_ERR_MIN && fd <= GXIO_ERR_MAX)
45 return fd;
46 else
47 return -ENODEV;
50 context->fd = fd;
52 // Map in the MMIO space.
53 context->mmio_base =
54 (void __force *)iorpc_ioremap(fd, 0, HV_USB_HOST_MMIO_SIZE);
56 if (context->mmio_base == NULL) {
57 hv_dev_close(context->fd);
58 return -ENODEV;
61 return 0;
64 EXPORT_SYMBOL_GPL(gxio_usb_host_init);
66 int gxio_usb_host_destroy(gxio_usb_host_context_t *context)
68 iounmap((void __force __iomem *)(context->mmio_base));
69 hv_dev_close(context->fd);
71 context->mmio_base = NULL;
72 context->fd = -1;
74 return 0;
77 EXPORT_SYMBOL_GPL(gxio_usb_host_destroy);
79 void *gxio_usb_host_get_reg_start(gxio_usb_host_context_t *context)
81 return context->mmio_base;
84 EXPORT_SYMBOL_GPL(gxio_usb_host_get_reg_start);
86 size_t gxio_usb_host_get_reg_len(gxio_usb_host_context_t *context)
88 return HV_USB_HOST_MMIO_SIZE;
91 EXPORT_SYMBOL_GPL(gxio_usb_host_get_reg_len);