2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2013-10-08 12:30:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/usb/ch9.h>
|
|
|
|
|
2022-12-02 21:42:28 +00:00
|
|
|
#define EXYNOS_G_DNL_THOR_VENDOR_NUM 0x04E8
|
|
|
|
#define EXYNOS_G_DNL_THOR_PRODUCT_NUM 0x685D
|
|
|
|
|
|
|
|
#define EXYNOS_G_DNL_UMS_VENDOR_NUM 0x0525
|
|
|
|
#define EXYNOS_G_DNL_UMS_PRODUCT_NUM 0xA4A5
|
|
|
|
|
2013-10-08 12:30:45 +00:00
|
|
|
int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
|
|
|
|
{
|
|
|
|
if (!strcmp(name, "usb_dnl_thor")) {
|
2022-12-02 21:42:28 +00:00
|
|
|
put_unaligned(EXYNOS_G_DNL_THOR_VENDOR_NUM, &dev->idVendor);
|
|
|
|
put_unaligned(EXYNOS_G_DNL_THOR_PRODUCT_NUM, &dev->idProduct);
|
2014-07-29 09:10:44 +00:00
|
|
|
} else if (!strcmp(name, "usb_dnl_ums")) {
|
2022-12-02 21:42:28 +00:00
|
|
|
put_unaligned(EXYNOS_G_DNL_UMS_VENDOR_NUM, &dev->idVendor);
|
|
|
|
put_unaligned(EXYNOS_G_DNL_UMS_PRODUCT_NUM, &dev->idProduct);
|
2013-10-08 12:30:45 +00:00
|
|
|
} else {
|
2017-09-07 06:58:08 +00:00
|
|
|
put_unaligned(CONFIG_USB_GADGET_VENDOR_NUM, &dev->idVendor);
|
|
|
|
put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM, &dev->idProduct);
|
2013-10-08 12:30:45 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|