diff options
author | huang lin <hl@rock-chips.com> | 2015-05-20 17:27:10 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-06-30 08:09:49 +0200 |
commit | 41e2499734b37d5f38a17416a3512c2c9042e79c (patch) | |
tree | f17f03fd74bd2a308559b3381f5620267016a7dd /payloads/libpayload/include/udc | |
parent | 066cc85e229fb21700061a8d8545234ee690b504 (diff) |
libpayload: add UDC driver for Designware controller
Found in rockchips rk3288 as used in google/veyron.
BUG=None
TEST=None
BRANCH=None
Change-Id: I2f2c36c5bea3986a8a37f84c75608b838a8782ae
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 59a0bcd97e8d0f5ce5ac1301910e11b01e2d24b1
Original-Change-Id: Ic89ed54c48d6f9ce125a93caf96471abc6e8cd9d
Original-Signed-off-by: Yunzhi Li <lyz@rock-chips.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/272108
Original-Reviewed-by: Julius Werner <jwerner@chromium.org>
Original-Commit-Queue: Lin Huang <hl@rock-chips.com>
Original-Tested-by: Lin Huang <hl@rock-chips.com>
Reviewed-on: http://review.coreboot.org/10689
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/include/udc')
-rw-r--r-- | payloads/libpayload/include/udc/dwc2_udc.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/payloads/libpayload/include/udc/dwc2_udc.h b/payloads/libpayload/include/udc/dwc2_udc.h new file mode 100644 index 0000000000..741a3609ad --- /dev/null +++ b/payloads/libpayload/include/udc/dwc2_udc.h @@ -0,0 +1,27 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2015 Rockchip Electronics + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __DESIGNWARE_H__ +#define __DESIGNWARE_H__ + +#include "udc.h" + +struct usbdev_ctrl *dwc2_udc_init(device_descriptor_t *dd); + +#endif |