mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
3b4a3fc0ba
After I moved the function from the header file to the c file I see: | $ size drivers/usb/gadget/gadget_chips.o | text data bss dec hex filename | 1048 0 0 1048 418 drivers/usb/gadget/gadget_chips.o That is almost a KiB which is removed from each user. As Felipe pointed out, the function / usage is very dumb actually. This is used for the following reasons: - epautoconf ep hint (could provide a per-gadget callback) - miss-features. currently the missing altsetting on pxa's and something ZLP related on musbhdrc (looks like an optimisation which could be implemented in musb itself if it is correct) - unique BCD accross all UDCs. Not sure how important this is. Acked-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Felipe Balbi <balbi@ti.com>
79 lines
3.2 KiB
C
79 lines
3.2 KiB
C
/*
|
|
* USB device controllers have lots of quirks. Use these macros in
|
|
* gadget drivers or other code that needs to deal with them, and which
|
|
* autoconfigures instead of using early binding to the hardware.
|
|
*
|
|
* This SHOULD eventually work like the ARM mach_is_*() stuff, driven by
|
|
* some config file that gets updated as new hardware is supported.
|
|
* (And avoiding all runtime comparisons in typical one-choice configs!)
|
|
*
|
|
* NOTE: some of these controller drivers may not be available yet.
|
|
* Some are available on 2.4 kernels; several are available, but not
|
|
* yet pushed in the 2.6 mainline tree.
|
|
*/
|
|
|
|
#ifndef __GADGET_CHIPS_H
|
|
#define __GADGET_CHIPS_H
|
|
|
|
#include <linux/usb/gadget.h>
|
|
|
|
/*
|
|
* NOTICE: the entries below are alphabetical and should be kept
|
|
* that way.
|
|
*
|
|
* Always be sure to add new entries to the correct position or
|
|
* accept the bashing later.
|
|
*
|
|
* If you have forgotten the alphabetical order let VIM/EMACS
|
|
* do that for you.
|
|
*/
|
|
#define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name))
|
|
#define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
|
|
#define gadget_is_atmel_usba(g) (!strcmp("atmel_usba_udc", (g)->name))
|
|
#define gadget_is_bcm63xx(g) (!strcmp("bcm63xx_udc", (g)->name))
|
|
#define gadget_is_ci13xxx_msm(g) (!strcmp("ci13xxx_msm", (g)->name))
|
|
#define gadget_is_ci13xxx_pci(g) (!strcmp("ci13xxx_pci", (g)->name))
|
|
#define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name))
|
|
#define gadget_is_dwc3(g) (!strcmp("dwc3-gadget", (g)->name))
|
|
#define gadget_is_fsl_qe(g) (!strcmp("fsl_qe_udc", (g)->name))
|
|
#define gadget_is_fsl_usb2(g) (!strcmp("fsl-usb2-udc", (g)->name))
|
|
#define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name))
|
|
#define gadget_is_imx(g) (!strcmp("imx_udc", (g)->name))
|
|
#define gadget_is_langwell(g) (!strcmp("langwell_udc", (g)->name))
|
|
#define gadget_is_lpc32xx(g) (!strcmp("lpc32xx_udc", (g)->name))
|
|
#define gadget_is_m66592(g) (!strcmp("m66592_udc", (g)->name))
|
|
#define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
|
|
#define gadget_is_net2272(g) (!strcmp("net2272", (g)->name))
|
|
#define gadget_is_net2280(g) (!strcmp("net2280", (g)->name))
|
|
#define gadget_is_omap(g) (!strcmp("omap_udc", (g)->name))
|
|
#define gadget_is_pch(g) (!strcmp("pch_udc", (g)->name))
|
|
#define gadget_is_pxa(g) (!strcmp("pxa25x_udc", (g)->name))
|
|
#define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name))
|
|
#define gadget_is_r8a66597(g) (!strcmp("r8a66597_udc", (g)->name))
|
|
#define gadget_is_renesas_usbhs(g) (!strcmp("renesas_usbhs_udc", (g)->name))
|
|
#define gadget_is_s3c2410(g) (!strcmp("s3c2410_udc", (g)->name))
|
|
#define gadget_is_s3c_hsotg(g) (!strcmp("s3c-hsotg", (g)->name))
|
|
#define gadget_is_s3c_hsudc(g) (!strcmp("s3c-hsudc", (g)->name))
|
|
|
|
int usb_gadget_controller_number(struct usb_gadget *gadget);
|
|
|
|
/**
|
|
* gadget_supports_altsettings - return true if altsettings work
|
|
* @gadget: the gadget in question
|
|
*/
|
|
static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
|
|
{
|
|
/* PXA 21x/25x/26x has no altsettings at all */
|
|
if (gadget_is_pxa(gadget))
|
|
return false;
|
|
|
|
/* PXA 27x and 3xx have *broken* altsetting support */
|
|
if (gadget_is_pxa27x(gadget))
|
|
return false;
|
|
|
|
/* Everything else is *presumably* fine ... */
|
|
return true;
|
|
}
|
|
|
|
#endif /* __GADGET_CHIPS_H */
|