summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-07-11 07:49:46 +0300
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-07-11 21:23:40 +0200
commitcbe2edefb93ed3ba0a4b08f72a9b208429920675 (patch)
treeb8ecd89425f9f18b5d26519112cb4640243a8f29 /src/lib
parent2c516ed3f3074588182b00dce4cfbe02206519dd (diff)
downloadcoreboot-cbe2edefb93ed3ba0a4b08f72a9b208429920675.tar.xz
usbdebug: Cleanup dbgp_ehci_info call
Change-Id: I9cad64796fcfb7a50d9ed9ec95c56ab855c872e3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3766 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/usbdebug.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/lib/usbdebug.c b/src/lib/usbdebug.c
index b16e325728..b6c7f100c4 100644
--- a/src/lib/usbdebug.c
+++ b/src/lib/usbdebug.c
@@ -94,6 +94,11 @@ static struct device_operations *ehci_drv_ops;
static struct device_operations ehci_dbg_ops;
#endif
+static inline struct ehci_debug_info *dbgp_ehci_info(void)
+{
+ return car_get_var_ptr(&glob_dbg_info);
+}
+
static int dbgp_wait_until_complete(struct ehci_dbg_port *ehci_debug)
{
u32 ctrl;
@@ -603,7 +608,7 @@ void usbdebug_tx_flush(struct ehci_debug_info *dbg_info)
#if !defined(__PRE_RAM__) && !defined(__SMM__)
static void usbdebug_re_enable(unsigned ehci_base)
{
- struct ehci_debug_info *dbg_info = car_get_var_ptr(&glob_dbg_info);
+ struct ehci_debug_info *dbg_info = dbgp_ehci_info();
unsigned diff;
if (!dbg_info->ehci_debug)
@@ -618,7 +623,7 @@ static void usbdebug_re_enable(unsigned ehci_base)
static void usbdebug_disable(void)
{
- struct ehci_debug_info *dbg_info = car_get_var_ptr(&glob_dbg_info);
+ struct ehci_debug_info *dbg_info = dbgp_ehci_info();
dbg_info->status &= ~DBGP_EP_ENABLED;
}
@@ -661,14 +666,19 @@ int dbgp_ep_is_active(struct ehci_debug_info *dbg_info)
return (dbg_info->status & DBGP_EP_STATMASK) == (DBGP_EP_VALID | DBGP_EP_ENABLED);
}
-struct ehci_debug_info *dbgp_ehci_info(void)
+struct ehci_debug_info *dbgp_console_input(void)
{
- return car_get_var_ptr(&glob_dbg_info);
+ return dbgp_ehci_info();
+}
+
+struct ehci_debug_info *dbgp_console_input(void)
+{
+ return dbgp_ehci_info();
}
int usbdebug_init(void)
{
- struct ehci_debug_info *dbg_info = car_get_var_ptr(&glob_dbg_info);
+ struct ehci_debug_info *dbg_info = dbgp_ehci_info();
#if defined(__PRE_RAM__) || !CONFIG_EARLY_CONSOLE
enable_usbdebug(CONFIG_USBDEBUG_DEFAULT_PORT);