blob: ba3ad31e702acf508359fbf506fb85f86b72f4b0 [file] [log] [blame]
Yoshihiro Shimoda4ac89182014-07-09 10:08:52 +09001/*
2 * drivers/usb/host/xhci-rcar.h
3 *
4 * Copyright (C) 2014 Renesas Electronics Corporation
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 */
10
11#ifndef _XHCI_RCAR_H
12#define _XHCI_RCAR_H
13
Yoshihiro Shimoda9bf9d9d2015-11-24 13:09:51 +020014#define XHCI_RCAR_FIRMWARE_NAME_V1 "r8a779x_usb3_v1.dlmem"
15
Yoshihiro Shimoda4ac89182014-07-09 10:08:52 +090016#if IS_ENABLED(CONFIG_USB_XHCI_RCAR)
17void xhci_rcar_start(struct usb_hcd *hcd);
18int xhci_rcar_init_quirk(struct usb_hcd *hcd);
19#else
20static inline void xhci_rcar_start(struct usb_hcd *hcd)
21{
22}
23
24static inline int xhci_rcar_init_quirk(struct usb_hcd *hcd)
25{
26 return 0;
27}
28#endif
29#endif /* _XHCI_RCAR_H */