coreboot-kgpe-d16/payloads/libpayload/drivers/usb/dwc2_rh.c
Patrick Georgi 6b5bc77c9b treewide: Remove "this file is part of" lines
Stefan thinks they don't add value.

Command used:
sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool)

The exceptions are for:
 - crossgcc (patch file)
 - gcov (imported from gcc)
 - elf.h (imported from GNU's libc)
 - nvramtool (more complicated header)

The removed lines are:
-       fmt.Fprintln(f, "/* This file is part of the coreboot project. */")
-# This file is part of a set of unofficial pre-commit hooks available
-/* This file is part of coreboot */
-# This file is part of msrtool.
-/* This file is part of msrtool. */
- * This file is part of ncurses, designed to be appended after curses.h.in
-/* This file is part of pgtblgen. */
- * This file is part of the coreboot project.
- /* This file is part of the coreboot project. */
-#  This file is part of the coreboot project.
-# This file is part of the coreboot project.
-## This file is part of the coreboot project.
--- This file is part of the coreboot project.
-/* This file is part of the coreboot project */
-/* This file is part of the coreboot project. */
-;## This file is part of the coreboot project.
-# This file is part of the coreboot project. It originated in the
- * This file is part of the coreinfo project.
-## This file is part of the coreinfo project.
- * This file is part of the depthcharge project.
-/* This file is part of the depthcharge project. */
-/* This file is part of the ectool project. */
- * This file is part of the GNU C Library.
- * This file is part of the libpayload project.
-## This file is part of the libpayload project.
-/* This file is part of the Linux kernel. */
-## This file is part of the superiotool project.
-/* This file is part of the superiotool project */
-/* This file is part of uio_usbdebug */

Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2020-05-11 17:11:40 +00:00

183 lines
4 KiB
C

/*
*
* Copyright (C) 2014 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.
*/
#include <usb/usb.h>
#include "generic_hub.h"
#include "dwc2_private.h"
#include "dwc2.h"
static int
dwc2_rh_port_status_changed(usbdev_t *const dev, const int port)
{
hprt_t hprt;
int changed;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
changed = hprt.prtconndet;
/* Clear connect detect flag */
if (changed) {
hprt.d32 &= HPRT_W1C_MASK;
hprt.prtconndet = 1;
writel(hprt.d32, dwc2->hprt0);
}
return changed;
}
static int
dwc2_rh_port_connected(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
return hprt.prtconnsts;
}
static int
dwc2_rh_port_in_reset(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
return hprt.prtrst;
}
static int
dwc2_rh_port_enabled(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
return hprt.prtena;
}
static usb_speed
dwc2_rh_port_speed(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
if (hprt.prtena) {
switch (hprt.prtspd) {
case PRTSPD_HIGH:
return HIGH_SPEED;
case PRTSPD_FULL:
return FULL_SPEED;
case PRTSPD_LOW:
return LOW_SPEED;
}
}
return -1;
}
static int
dwc2_rh_reset_port(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
hprt.d32 &= HPRT_W1C_MASK;
hprt.prtrst = 1;
writel(hprt.d32, dwc2->hprt0);
/* Wait a bit while reset is active. */
mdelay(50);
/* Deassert reset. */
hprt.prtrst = 0;
writel(hprt.d32, dwc2->hprt0);
/*
* If reset and speed enum success the DWC2 core will set enable bit
* after port reset bit is deasserted
*/
mdelay(1);
hprt.d32 = readl(dwc2->hprt0);
usb_debug("%s reset port ok, hprt = 0x%08x\n", __func__, hprt.d32);
if (!hprt.prtena) {
usb_debug("%s enable port fail! hprt = 0x%08x\n",
__func__, hprt.d32);
return -1;
}
return 0;
}
static int
dwc2_rh_enable_port(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
/* Power on the port */
hprt.d32 = readl(dwc2->hprt0);
hprt.d32 &= HPRT_W1C_MASK;
hprt.prtpwr = 1;
writel(hprt.d32, dwc2->hprt0);
return 0;
}
static int
dwc2_rh_disable_port(usbdev_t *const dev, const int port)
{
hprt_t hprt;
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
hprt.d32 = readl(dwc2->hprt0);
hprt.d32 &= HPRT_W1C_MASK;
/* Disable the port*/
hprt.prtena = 1;
/* Power off the port */
hprt.prtpwr = 0;
writel(hprt.d32, dwc2->hprt0);
return 0;
}
static const generic_hub_ops_t dwc2_rh_ops = {
.hub_status_changed = NULL,
.port_status_changed = dwc2_rh_port_status_changed,
.port_connected = dwc2_rh_port_connected,
.port_in_reset = dwc2_rh_port_in_reset,
.port_enabled = dwc2_rh_port_enabled,
.port_speed = dwc2_rh_port_speed,
.enable_port = dwc2_rh_enable_port,
.disable_port = dwc2_rh_disable_port,
.start_port_reset = NULL,
.reset_port = dwc2_rh_reset_port,
};
void
dwc2_rh_init(usbdev_t *dev)
{
dwc_ctrl_t *const dwc2 = DWC2_INST(dev->controller);
/* we can set them here because a root hub _really_ shouldn't
appear elsewhere */
dev->address = 0;
dev->hub = -1;
dev->port = -1;
generic_hub_init(dev, 1, &dwc2_rh_ops);
usb_debug("dwc2_rh_init HPRT 0x%08x p = %p\n ",
readl(dwc2->hprt0), dwc2->hprt0);
usb_debug("DWC2: root hub init done\n");
}