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
17 * Implementation of USB gxio calls.
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
,
36 snprintf(file
, sizeof(file
), "usb_host/%d/iorpc/ehci",
39 snprintf(file
, sizeof(file
), "usb_host/%d/iorpc/ohci",
42 fd
= hv_dev_open((HV_VirtAddr
) file
, 0);
44 if (fd
>= GXIO_ERR_MIN
&& fd
<= GXIO_ERR_MAX
)
52 // Map in the MMIO space.
54 (void __force
*)iorpc_ioremap(fd
, 0, HV_USB_HOST_MMIO_SIZE
);
56 if (context
->mmio_base
== NULL
) {
57 hv_dev_close(context
->fd
);
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
;
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
);