Remove warnings from USB debug console code.
authorMyles Watson <mylesgw@gmail.com>
Wed, 4 Aug 2010 19:29:11 +0000 (19:29 +0000)
committerMyles Watson <mylesgw@gmail.com>
Wed, 4 Aug 2010 19:29:11 +0000 (19:29 +0000)
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5683 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/console/usbdebug_console.c
src/include/console/console.h
src/include/usbdebug.h
src/lib/usbdebug.c
src/pc80/usbdebug_serial.c
src/southbridge/intel/i82801gx/i82801gx_usb_debug.c
src/southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c
src/southbridge/sis/sis966/sis966_enable_usbdebug.c

index 2e71cc3ea3da9d522cde87fffaa6f29b2b4f8a12..6fe0ef7ee63210c14ceb1615dd4dc1e368c98726 100644 (file)
@@ -29,20 +29,20 @@ void set_ehci_base(unsigned ehci_base)
        if (!dbg_info.ehci_debug)
                return;
 
-       diff = dbg_info.ehci_caps - ehci_base;
+       diff = (unsigned)dbg_info.ehci_caps - ehci_base;
        dbg_info.ehci_regs -= diff;
        dbg_info.ehci_debug -= diff;
-       dbg_info.ehci_caps = ehci_base;
+       dbg_info.ehci_caps = (void*)ehci_base;
 }
 
 void set_ehci_debug(unsigned ehci_debug)
 {
-       dbg_info.ehci_debug = ehci_debug;
+       dbg_info.ehci_debug = (void*)ehci_debug;
 }
 
 unsigned get_ehci_debug(void)
 {
-       return dbg_info.ehci_debug;
+       return (unsigned)dbg_info.ehci_debug;
 }
 
 static void dbgp_init(void)
@@ -61,7 +61,7 @@ static void dbgp_init(void)
 static void dbgp_tx_byte(unsigned char data)
 {
        if (dbg_info.ehci_debug)
-               dbgp_bulk_write_x(&dbg_info, &data, 1);
+               dbgp_bulk_write_x(&dbg_info, (char*)&data, 1);
 }
 
 static unsigned char dbgp_rx_byte(void)
@@ -76,7 +76,7 @@ static unsigned char dbgp_rx_byte(void)
 
 static int dbgp_tst_byte(void)
 {
-       return dbg_info.ehci_debug;
+       return (int)dbg_info.ehci_debug;
 }
 
 static const struct console_driver usbdebug_direct_console __console = {
index cab3c9e807561a264a3527b460ce6167226381d6..5501edf62903fa70ed5964d75a6e483550dbec1d 100644 (file)
@@ -12,6 +12,9 @@ int console_tst_byte(void);
 #if CONFIG_CONSOLE_VGA == 1
 void vga_console_init(void);
 #endif
+#if CONFIG_USBDEBUG
+#include <usbdebug.h>
+#endif
 
 struct console_driver {
        void (*init)(void);
index b9d170b1f3454bd845aec9b67aee47de2f541a44..aa3515f684b3ea349da0ededba6ac77d5bfea346 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef USBDEBUG_H
 #define USBDEBUG_H
 
+#include <ehci.h>
+
 struct ehci_debug_info {
         void *ehci_caps;
         void *ehci_regs;
@@ -29,9 +31,14 @@ struct ehci_debug_info {
 
 int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
 int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
+int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
+       int value, int index, void *data, int size);
+int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port);
 void set_ehci_base(unsigned ehci_base);
 void set_ehci_debug(unsigned ehci_deug);
 unsigned get_ehci_debug(void);
 void set_debug_port(unsigned port);
+void usbdebug_ram_tx_byte(unsigned char data);
+void usbdebug_tx_byte(unsigned char data);
 
 #endif
index 801cfdbcaf1c996fca92646553e4dcccdf6e6f65..ec89bfe892334875a51252dc40e9664b0625cca5 100644 (file)
@@ -234,7 +234,7 @@ int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size)
        return dbgp_bulk_read(dbg_info->ehci_debug, dbg_info->devnum, dbg_info->endpoint_in, data, size);
 }
 
-static int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
+int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
        int value, int index, void *data, int size)
 {
        unsigned pids, addr, ctrl;
@@ -323,7 +323,7 @@ static int ehci_reset_port(struct ehci_regs *ehci_regs, int port)
        return -16;//-EBUSY;
 }
 
-static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port)
+int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port)
 {
        unsigned status;
        int ret, reps;
@@ -346,6 +346,8 @@ static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port)
 #else
 #define dbgp_printk(fmt_arg...)   do {} while(0)
 #endif
+
+#ifdef __PRE_RAM__
 static void usbdebug_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info)
 {
        struct ehci_caps *ehci_caps;
@@ -547,5 +549,6 @@ next_debug_port:
        }
 
 }
+#endif
 
 
index 5dd427dd00b71446a6c1cafd4ba0e7b062ad7142..f3e7d5f281fd56a3e8677b090b8fc17789389525 100644 (file)
@@ -34,7 +34,7 @@ void usbdebug_tx_byte(unsigned char data)
            (CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - sizeof(struct ehci_debug_info));
 
        if (dbg_info->ehci_debug) {
-               dbgp_bulk_write_x(dbg_info, &data, 1);
+               dbgp_bulk_write_x(dbg_info, (char*)&data, 1);
        }
 }
 
@@ -47,6 +47,6 @@ void usbdebug_ram_tx_byte(unsigned char data)
            ((CONFIG_RAMTOP) - sizeof(struct ehci_debug_info));
 
        if (dbg_info->ehci_debug) {
-               dbgp_bulk_write_x(dbg_info, &data, 1);
+               dbgp_bulk_write_x(dbg_info, (char*)&data, 1);
        }
 }
index a7e07999437b8cc8132c730fc24ab6f77225ed95..3539ef81e5b686b019d75c498e654eb9a65ffd30 100644 (file)
@@ -26,6 +26,8 @@
 #define EHCI_PORTSC            0x44
 #define EHCI_DEBUG_OFFSET      0xA0
 
+#include <usbdebug.h>
+
 void set_debug_port(unsigned port)
 {
        u32 dbgctl;
index b980c9e15c0968f4fbe9e3b8cf74dba4f58cf4a2..280e827cc9ad83c7f0b16c6e2a10c134ee492716 100644 (file)
@@ -31,7 +31,9 @@
 #define EHCI_BAR       0xFEF00000
 #define EHCI_DEBUG_OFFSET      0x98
 
-static void set_debug_port(unsigned port)
+#include <usbdebug.h>
+
+void set_debug_port(unsigned port)
 {
        uint32_t dword;
        dword = pci_read_config32(PCI_DEV(0, MCP55_DEVN_BASE+2, 1), 0x74);
index 520383ea0686dc4c47817dfdb71f3ec8278c3b04..c9d1c112e2221e4caeba6b93444698ab2d99c99e 100644 (file)
@@ -31,7 +31,9 @@
 #define EHCI_BAR       0xFEF00000
 #define EHCI_DEBUG_OFFSET      0x98
 
-static void set_debug_port(unsigned port)
+#include <usbdebug.h>
+
+void set_debug_port(unsigned port)
 {
        uint32_t dword;
        dword = pci_read_config32(PCI_DEV(0, SIS966_DEVN_BASE+2, 1), 0x74);